/* =========================================================
   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;
    font-weight: 600;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-decoration: none;
}


.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 4px;
    background: #a97a2f;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #a97a2f;
}

.nav-link:hover::after {
    width: 100%;
}


/* ---------- Header Button ---------- */

.journey-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    text-decoration: none;
    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: #000;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
}

.S4-flower-icon {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
}
.S4-flower-icon-HM {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.S4-flower-icon-PPS {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
}
.S4-flower-icon-PCC {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
}
.gold-divider,
.small-divider,
.tiny-divider {
    background: #a97a2f;
}

.gold-divider {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;
}

.small-divider {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;
}

.tiny-divider {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;
}


/* =========================================================
   PHILOSOPHY HERO
   FULL BACKGROUND IMAGE
========================================================= */

.philosophy-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #af731a;
}


/* =========================================================
   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: #000d;
    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-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


/* =========================================================
   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%);
    }
}





/* =========================================================
   SECOND SECTION - CORE BELIEFS
   REDUCED FROM 350px TO 280px
========================================================= */

.core-beliefs-section {
    height: 400px;
    min-height: 400px;
    display: grid;
    grid-template-columns: 40% 60%;
    background: #f8f5ef;
}

.belief-image-wrapper {
    height: 400px;
    min-height: 400px;
    overflow: hidden;
}

.belief-image {
    width: 100%;
    height: 400px;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.belief-image-wrapper:hover .belief-image {
    transform: scale(1.035);
}

.belief-content {
    height: 400px;
    padding: 18px 5.5vw 18px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.belief-heading {
    margin-bottom: 3px;
}

.section-intro {
    max-width: 570px;
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}

.belief-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 8px;
}

.belief-card {
    min-height: 145px;
    padding: 3px 17px 0;
    text-align: center;
    transition: transform 0.3s ease;
}
.belief-cards .belief-card:hover {
    transform: translateY(-0.4rem);
}

.belief-card:first-child {
    padding-left: 5px;
}

.belief-card:last-child {
    border-right: 0;
}

.belief-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.belief-icon img {
    display: block;
    width: 70px;
    height: 70px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.belief-title {
    color: #000;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
}

.belief-description {
    margin: 6px auto 0;
    max-width: 130px;
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


/* =========================================================
   THIRD SECTION - HEALING MESSAGE
   REDUCED FROM 285px TO 171px
========================================================= */

.healing-message-section {
    height: 250px;
    min-height: 250px;
    display: grid;
    grid-template-columns: 49.2% 50.8%;
}

.healing-message-content {
    height: 250px;
    min-height: 0;
    padding: 18px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #413f30;
    position: relative;
}

.healing-message-content::after {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    left: -50px;
    bottom: -50px;

    background-image: url("./pattren.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    opacity: 0.08;

    pointer-events: none;
    z-index: 0;
}

.healing-title {
    position: relative;
    z-index: 1;
    color: #f7f1e7;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.5;
}

.healing-message-content .small-divider {
    position: relative;
    z-index: 1;
    margin: 12px 0 18px;
    background: #a97a2f;
}

.healing-description {
    position: relative;
    z-index: 1;
    color: #f2eee5;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}

.healing-image-wrapper {
    height: 250px;
    min-height: 0;
    overflow: hidden;
}

.healing-image {
    width: 100%;
    height: 250px;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.healing-image-wrapper:hover .healing-image {
    transform: scale(1.035);
}


/* =========================================================
   PHILOSOPHY IN PRACTICE
========================================================= */

.philosophy-practice-section {
    width: 100%;
    min-height: 700px;

    padding: 70px 4.8vw 80px;

    background: #f8f5ef;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   INTRO
========================================================= */

.practice-intro {
    width: 100%;
    max-width: 700px;

    text-align: center;

    padding: 0;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.practice-text {
    max-width: 700px;
    margin: 0 auto 15px;
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


.P-small-divider{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px auto;
    background-color: #a97a2f;
}
/* =========================================================
   CARDS CONTAINER
========================================================= */

.practice-cards {
    width: 100%;
    margin-top: 45px;
    display: grid;
    /*
       3 equal flexible columns
       No fixed card width
    */
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 1vw, 45px);
    align-items: start;
}


/* =========================================================
   CARD
========================================================= */

.practice-card {
    width: 100%;
    min-width: 0;
    text-align: center;
    overflow: hidden;
}



/* =========================================================
   VERTICAL IMAGE BOX
========================================================= */

.practice-image-wrapper {
    width: 100%;
    height: min(500px, 40vw);
    min-height: 350px;
    overflow: hidden;
    background: #e8dfd2;
}


/* =========================================================
   IMAGE
========================================================= */

.practice-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.practice-card:hover .practice-image {
    transform: scale(1.045);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.practice-card-content {
    width: 100%;
    padding: 12px 5px 0;
    text-align: center;
}


/* =========================================================
   CARD TITLE
========================================================= */

.practice-title {
    width: 100%;
    margin: 0;
    color: #38342f;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
}


/* =========================================================
   TINY DIVIDER
========================================================= */

.tiny-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 10px auto;
    background-color: #a97a2f;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.practice-description {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   PHILOSOPHY CTA
========================================================= */

.philosophy-cta-section {
    min-height: 135px;
    padding: 15px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    background-color: #efe6df;
}

.philosophy-cta-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: 9px;
    bottom: -70px;
    background-image: url("./pattren.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.30;
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 0;
}

.cta-icon {
    width: 80px;
    height: 80px;
}

.cta-title {
    position: relative;
    z-index: 1;
    color: #000;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: #a97a2f;
    color: #fffdf8;
    font-size: 10px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

.cta-button:hover {
    background: transparent;
    color: #a97a2f;
    border-color: #a97a2f;
}


/* =========================================================
   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;
    white-space: nowrap;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
/* 
.footer-phone:hover {
    color: #c29a5e;
    transform: translateY(-1px);
} */





/* =========================================================
   MOBILE MENU BASE
========================================================= */

.menu-toggle {
    display: none;
}


/* =========================================================
   RESPONSIVE DESIGN
   ALL RESPONSIVE CSS IS KEPT AT THE END
========================================================= */


/* =========================================================
   TABLET
   769px - 1100px
   Same laptop structure, only smaller sizing
========================================================= */

@media (max-width: 1100px) and (min-width: 769px) {

    /* ---------- Header ---------- */

    .header-container {
        min-height: 82px;
        padding: 18px 26px;
        gap: 24px;
    }

    .brand-logo {
        width: 150px;
    }

    .main-navigation {
        gap: 18px;
        padding-top: 9px;
    }

    .nav-link {
        font-size: 9px;
        letter-spacing: 0.6px;
    }

    .journey-button {
        min-height: 36px;
        padding: 0 13px;
        font-size: 8px;
    }


    /* ---------- HERO ---------- */

    .philosophy-hero {
        min-height: 500px;
        height: 620px;
    }

    .hero-content {
        width: 52%;
        max-width: 570px;

        padding:
            105px 30px 60px max(4.5vw, 38px);
    }

    .hero-title {
        max-width: 430px;
        font-size: clamp(36px, 4.5vw, 50px);
    }

    .hero-description {
        max-width: 370px;
        font-size: 11px;
        line-height: 1.75;
    }

    .hero-image {
        height: 100%;
        min-height: 500px;
    }


    /* ---------- CORE BELIEFS ---------- */

    .core-beliefs-section {
        height: 350px;
        min-height: 350px;

        grid-template-columns: 38% 62%;
    }

    .belief-image-wrapper {
        height: 350px;
        min-height: 350px;
    }

    .belief-image {
        height: 350px;
        min-height: 350px;
    }

    .belief-content {
        height: 350px;
        min-height: 350px;

        padding: 16px 25px 16px 28px;
    }

    .section-label {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .section-title {
        font-size: 22px;
    }

    .gold-divider {
        width: 27px;
        height: 2px;
        margin: 13px 0 12px;
    }

    .section-intro {
        max-width: 450px;
        font-size: 10px;
        line-height: 1.7;
    }

    .belief-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 7px;
    }

    .belief-card {
        min-height: 115px;
        padding: 2px 7px 0;
    }

    .belief-card:first-child {
        padding-left: 3px;
    }

    .belief-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 4px;
    }

    .belief-icon img {
        width: 57px;
        height: 57px;
    }

    .belief-title {
        font-size: 14px;
        line-height: 1.5;
    }

    .belief-description {
        max-width: 100px;
        margin-top: 3px;
        font-size: 8px;
        line-height: 1.6;
    }


    /* ---------- HEALING ---------- */

    .healing-message-section {
        height: 220px;
        min-height: 220px;

        grid-template-columns: 49.2% 50.8%;
    }

    .healing-message-content {
        height: 220px;
        padding: 18px 22px;
    }

    .healing-message-content::after {
        width: 145px;
        height: 145px;
        left: -30px;
        bottom: -30px;
        opacity: 0.07;
    }

    .healing-title {
        font-size: 17px;
        line-height: 1.5;
    }

    .healing-message-content .small-divider {
        margin: 8px 0 11px;
    }

    .healing-description {
        max-width: 390px;
        font-size: 9px;
        line-height: 1.55;
    }

    .healing-image-wrapper,
    .healing-image {
        height: 220px;
    }


    /* ---------- PRACTICE ---------- */

.philosophy-practice-section {
        padding:
            60px
            4vw
            70px;
    }


    /* INTRO */

    .practice-intro {
        max-width: 650px;
    }


    .practice-text {
        max-width: 560px;

        font-size: 11px;
        line-height: 1.9;
    }


    /* CARDS */

    .practice-cards {
        width: 100%;

        margin-top: 40px;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: clamp(18px, 2.5vw, 30px);
    }


    .practice-image-wrapper {
        width: 100%;

        height: min(500px, 45vw);

        min-height: 360px;
    }


    .practice-title {
        font-size: 17px;
    }


    .practice-description {
        max-width: 180px;

        font-size: 11px;
        line-height: 1.9;
    }




    /* ---------- CTA ---------- */

    .philosophy-cta-section {
        min-height: 120px;
        padding: 12px 22px 16px;
    }

    .philosophy-cta-section::after {
        width: 160px;
        height: 160px;
        right: 4px;
        bottom: -45px;
        opacity: 0.22;
    }

    .cta-icon {
        width: 145px;
        height: 145px;
        margin-top: -52px;
        margin-bottom: -62px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-button {
        min-width: 200px;
        min-height: 25px;
        margin-top: 12px;
        margin-bottom: 12px;
        font-size: 8px;
    }


    /* ---------- FOOTER ---------- */

    .footer-container {
        min-height: 50px;
        padding: 9px 28px;
        gap: 18px;
    }

    .footer-logo img {
        width: 95px;
    }

    .footer-message {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .footer-phone {
        font-size: 9px;
    }
}


/* =========================================================
   MOBILE
   768px AND BELOW

   IMPORTANT:
   Hero keeps its original background-image structure.
   Other sections put IMAGE FIRST, then CONTENT.
========================================================= */

@media (max-width: 768px) {

    /* ---------- Header ---------- */

    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
    }

    .header-container {
        min-height: 72px;
        padding: 15px 20px;
        align-items: center;
        gap: 15px;
    }

    .brand-logo {
        width: 145px;
    }
    .nav-link::after {
        display: none;
    }

    
    /* ---------- Mobile Navigation ---------- */

    .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);
    }

    .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 {
        width: 0;
        margin-top: 3px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 35px;
    }

    .journey-button {
        width: 100%;
        min-height: 36px;
        margin-top: 9px;
    }

    @keyframes mobileMenuOpen {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* =====================================================
       HERO MOBILE
       SAME HERO STYLE - IMAGE REMAINS BACKGROUND
    ===================================================== */

    .philosophy-hero {
        width: 100%;
        min-height: 620px;
        height: 100vh;

        display: flex;
        align-items: center;

        position: relative;
        overflow: hidden;

        background: #f7f3ed;
    }

    .hero-image-wrapper {
        display: block;

        position: absolute;

        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 100%;

        z-index: 1;
    }

    .hero-image-wrapper::before {
        background:
            linear-gradient(90deg,
                rgba(247, 243, 237, 0.98) 0%,
                rgba(247, 243, 237, 0.94) 18%,
                rgba(247, 243, 237, 0.78) 35%,
                rgba(247, 243, 237, 0.52) 50%,
                rgba(247, 243, 237, 0.22) 68%,
                rgba(247, 243, 237, 0.04) 82%,
                rgba(247, 243, 237, 0) 100%);
    }

    .hero-image {
        display: block;

        width: 100%;
        height: 100%;

        min-height: 620px;
        max-width: none;

        object-fit: cover;
        object-position: 72% center;
    }

    .hero-content {
        position: relative;
        z-index: 5;

        width: 100%;
        max-width: 650px;

        min-height: 620px;

        padding:
            125px 25px 55px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        background: transparent;
    }

    .hero-title {
        max-width: 560px;

        font-size: clamp(38px, 11vw, 50px);

        line-height: 1.05;
        letter-spacing: -1.2px;
    }

    .hero-description {
        max-width: 500px;

        font-size: 12px;
        line-height: 1.8;
    }


    /* =====================================================
       CORE BELIEFS MOBILE
       IMAGE FIRST
    ===================================================== */

    .core-beliefs-section {
        width: 100%;

        height: auto;
        min-height: auto;

        display: flex;
        flex-direction: column;

        background: #f8f5ef;
    }

    .belief-image-wrapper {
        order: 1;

        width: 100%;
        height: 300px;
        min-height: 300px;

        overflow: hidden;
    }

    .belief-image {
        width: 100%;
        height: 300px;
        min-height: 300px;

        object-fit: cover;
        object-position: center;
    }

    .belief-content {
        order: 2;

        width: 100%;
        height: auto;
        min-height: auto;

        padding: 40px 22px 45px;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;

        overflow: visible;
    }

    .belief-heading {
        width: 100%;

        margin-bottom: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .belief-heading .section-label,
    .belief-heading .section-title {
        display: block;
        width: 100%;
        text-align: center;
    }

    .belief-heading .gold-divider {
        display: block;
        width: 31px;
        height: 2px;
        margin: 12px auto 15px;
        position: static;
        transform: none;
        align-self: center;
    }

    .section-intro {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        font-size: 12px;
        line-height: 1.8;
    }

    .belief-cards {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 25px;
        row-gap: 0;
    }

    .belief-card,
    .belief-card:nth-child(2),
    .belief-card:nth-child(3),
    .belief-card:nth-child(4) {
        width: 100%;
        min-height: auto;
        padding: 22px 15px;
        border-right: 0;
        border-top: 1px solid #ddd3c4;
        text-align: center;
    }

    .belief-card:first-child {
        padding-left: 15px;
        border-top: 0;
    }

    .belief-icon {
        width: 50px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .belief-icon img {
        width: 68px;
        height: 68px;
    }

    .belief-title {
        text-align: center;
    }

    .belief-description {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
        font-size: clamp(0.75rem, 1.3vw, 0.875rem);
        line-height: 1.5;
        text-align: center;
    }

    .belief-card:hover {
        transform: translateY(-3px) scale(1.01);
    }


    /* =====================================================
       HEALING MOBILE
       IMAGE FIRST, GREEN CONTENT SECOND
    ===================================================== */

    .healing-message-section {
        width: 100%;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .healing-image-wrapper {
        order: 1;
        width: 100%;
        height: 280px;
        min-height: 280px;
        overflow: hidden;
    }

    .healing-image {
        width: 100%;
        height: 280px;
        min-height: 280px;
        object-fit: cover;
        object-position: center;
    }

    .healing-message-content {
        order: 2;

        width: 100%;

        height: auto;
        min-height: 235px;

        padding: 40px 25px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;

        background-color: #413f30;

        position: relative;

        overflow: hidden;
    }

    .healing-message-content::after {
        width: 135px;
        height: 135px;

        left: -25px;
        bottom: -25px;

        opacity: 0.055;
    }

    .healing-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .healing-message-content .small-divider {
        margin: 10px 0 13px;
    }

    .healing-description {
        max-width: 550px;

        font-size: 11px;
        line-height: 1.7;
    }


    /* =====================================================
       PHILOSOPHY IN PRACTICE MOBILE
       INTRO FIRST, THEN IMAGE CARDS
    ===================================================== */

    
    .philosophy-practice-section {
        width: 100%;

        min-height: auto;

        padding:
            55px
            5vw
            65px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* INTRO */

    .practice-intro {
        width: 100%;
        max-width: 600px;

        text-align: center;
    }


    .practice-text {
        width: 100%;
        max-width: 520px;

        margin-left: auto;
        margin-right: auto;

        font-size: 11px;
        line-height: 1.9;
    }


    /* CARDS */

    .practice-cards {
        width: 100%;

        margin-top: 38px;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: clamp(12px, 2.5vw, 22px);
    }


    .practice-card {
        width: 100%;
    }


    /* IMAGE */

    .practice-image-wrapper {
        width: 100%;

        height: min(500px, 48vw);

        min-height: 300px;
    }


    /* CARD CONTENT */

    .practice-card-content {
        padding:
            10px
            3px
            0;
    }


    .practice-title {
        font-size: 16px;

        line-height: 1.4;
    }


    .tiny-divider {
        width: 30px;

        margin:
            7px
            auto;
    }


    .practice-description {
        max-width: 170px;

        font-size: 10px;

        line-height: 1.8;
    }


    /* =====================================================
       CTA MOBILE
       SMALL PATTERN
    ===================================================== */

    .philosophy-cta-section {
        min-height: 160px;

        padding: 30px 20px 35px;
    }

    .philosophy-cta-section::after {
        width: 125px;
        height: 125px;

        right: 0;
        bottom: -28px;

        opacity: 0.20;

        transform: rotate(-12deg);
    }

    .cta-icon {
        width: 145px;
        height: 145px;

        margin-top: -52px;
        margin-bottom: -62px;
    }

    .cta-title {
        font-size: 21px;
        line-height: 1.4;
    }

    .cta-button {
        width: auto;

        min-width: 210px;
        min-height: 32px;

        margin-top: 14px;

        padding: 6px 18px;

        font-size: 9px;
    }


    /* =====================================================
       FOOTER MOBILE
    ===================================================== */

    .site-footer {
        min-height: auto;
    }

    .footer-container {
        min-height: auto;

        padding: 22px 20px;

        display: flex;
        flex-direction: column;

        justify-content: center;

        gap: 10px;

        text-align: center;
    }

    .footer-logo img {
        width: 105px;
    }

    .footer-message {
        font-size: 9px;
        line-height: 1.5;
    }

    .footer-phone {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   480px AND BELOW
========================================================= */

@media (max-width: 480px) {

    /* ---------- Header ---------- */

    .header-container {
        padding: 14px 16px;
    }

    .brand-logo {
        width: 130px;
    }

    .menu-toggle {
        width: 34px;
        height: 30px;
    }


    /* ---------- Hero ---------- */

    .philosophy-hero {
        min-height: 590px;
        height: 100vh;
    }

    .hero-image {
        min-height: 590px;
        object-position: 70% center;
    }

    .hero-content {
        min-height: 590px;

        padding:
            115px 20px 45px;
    }

    .hero-title {
        font-size: clamp(23px, 10vw, 35px);
    }

    .hero-description {
        font-size: 10px;
        line-height: 2;
    }


    /* ---------- Core Beliefs ---------- */

    .belief-image-wrapper,
    .belief-image {
        height: 260px;
        min-height: 260px;
        padding-top: 10px;
    }

    .belief-content {
        padding: 35px 18px 40px;
    }

    .section-title {
        font-size: 23px;
    }

    .section-intro {
        font-size: 11px;
    }

    .belief-card {
        padding-left: 8px;
        padding-right: 8px;
    }

    .belief-title {
        font-size: 17px;
    }

    .belief-icon {
        width: 48px;
        height: 48px;
    }

    .belief-icon img {
        width: 65px;
        height: 65px;
    }


    /* ---------- Healing ---------- */

    .healing-image-wrapper,
    .healing-image {
        height: 245px;
        min-height: 245px;
    }

    .healing-message-content {
        min-height: 245px;

        padding: 35px 20px;
    }

    .healing-message-content::after {
        width: 110px;
        height: 110px;

        left: -20px;
        bottom: -20px;

        opacity: 0.05;
    }

    .healing-title {
        font-size: 19px;
    }

    .healing-description {
        font-size: 10.5px;
    }


    /* ---------- Practice ---------- */

    .philosophy-practice-section {
        width: 100%;

        min-height: auto;

        padding:
            45px
            18px
            55px;
    }


    /* INTRO */

    .practice-intro {
        width: 100%;
        max-width: 400px;
    }


    .practice-text {
        width: 100%;
        max-width: 370px;

        font-size: 10px;

        line-height: 1.8;

        margin-bottom: 13px;
    }


    /* CARDS */

    .practice-cards {
        width: 100%;

        margin-top: 30px;

        display: grid;

        /*
           ONE CARD PER ROW
        */
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .practice-card {
        width: min(100%, 280px);

        margin-left: auto;
        margin-right: auto;
    }


    /* IMAGE */

    .practice-image-wrapper {
        width: 100%;

        height: 400px;

        max-height: 400px;

        min-height: 0;
    }


    /* CONTENT */

    .practice-card-content {
        padding:
            10px
            5px
            0;
    }


    .practice-title {
        font-size: 17px;

        line-height: 1.4;
    }


    .tiny-divider {
        width: 30px;

        height: 1px;

        margin:
            7px
            auto;
    }


    .practice-description {
        width: 100%;

        max-width: 240px;

        font-size: 10px;

        line-height: 1.8;
    }



    /* ---------- CTA ---------- */

    .philosophy-cta-section {
        min-height: 150px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .cta-icon {
        width: 50px;
    }

    .philosophy-cta-section::after {
        width: 100px;
        height: 100px;
        right: -2px;
        bottom: -22px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        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;
        text-decoration: none;
        white-space: nowrap;
        transition: all .3s ease;
    }

    .cta-button:hover {
        background: transparent;
        color: #a97a2f;
        border-color: #a97a2f;
    }


    /* ---------- Footer ---------- */

    .footer-container {
        padding: 20px 16px;
    }

    .footer-message {
        max-width: 280px;
        font-size: clamp(8px, 5vw, 8px);
    }
}


/* =========================================================
   VERY SMALL DEVICES
   360px AND BELOW
========================================================= */

@media (max-width: 360px) {

    .brand-logo {
        width: 120px;
    }

    .hero-content {
        padding-left: 17px;
        padding-right: 17px;
    }

    .hero-title {
        font-size: 33px;
    }

    .belief-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .healing-message-content {
        padding-left: 17px;
        padding-right: 17px;
    }

    .philosophy-cta-section::after {
        width: 85px;
        height: 85px;
        right: 0;
        bottom: -18px;
    }

    .cta-button {
        min-width: 180px;
    }
}