/* =========================================================
   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;
    text-decoration: none;
    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: #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;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    text-decoration: none;
    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;
}

.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: #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-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


/* ===========================
   BUTTONS
=========================== */

.S-H-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    text-decoration: none;
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 28px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    white-space: nowrap;
    transition: all .3s ease;
}

.primary-btn {
    background: #a97a2f;
    color: #fff;
}

.primary-btn:hover {
    background: transparent;
    color: #a97a2f;
}

.secondary-btn {
    background: transparent;
    color: #000;
}

.secondary-btn:hover {
    background-color: #a97a2f;
    color: #fff;
    border-color: #a97a2f;
}




/* =========================================================
   IMAGE SAFETY
========================================================= */

.hero-image,
.hero-image-wrapper img {
    max-width: none;
}














/*  SECTION 2 */

/* =========================================================
   SECTION 2 — TOP LEFT DECORATIVE ICON
========================================================= */

.areas-decoration-icon {
    position: absolute;
    top: -270px;
    left: -130px;
    width: 360px;
    z-index: 1;
    pointer-events: none;
}

.areas-decoration-icon img {
    display: block;
    opacity: 10%;
    width: 100%;
    height: auto;
    object-fit: contain;
}



.areas-care {
    position: relative;
    width: 100%;
    background: #f6f1ea;
    padding: 25px 0 45px;
    overflow: visible;
    border-radius: 10px 10px 0 0;
}

.areas-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}


/* =========================================================
   SECTION 2 HEADING
========================================================= */

.areas-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.areas-heading h1 {
    margin: 0;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.25;
    color: #000;
}


/* =========================================================
   HEADING DECORATION
========================================================= */

.S4-flower-icon-AC {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
}


/* =========================================================
   CARE CARDS
========================================================= */

.care-cards {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    width: 100%;

    margin-top: 15px;
}


/* =========================================================
   INDIVIDUAL CARD
========================================================= */

.care-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 20px;
    text-align: center;
    border-right: 1px solid #dfd5ca;
    transition: transform 0.3s ease;
}
.care-cards .care-card:hover {
    transform: translateY(-0.4rem);
}


.care-card:last-child {
    border-right: none;
}


/* =========================================================
   CARD ICON
========================================================= */

.care-icon {
    width: clamp(5.75rem, 5vw, 4.5rem);
    height: clamp(5.75rem, 5vw, 4.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.care-icon img {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    object-fit: contain;
}


/* =========================================================
   CARD HEADING
========================================================= */

.care-card h2 {
    width: 100%;
    margin: 0 0 10px;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.25;
    color: #000;
}


/* =========================================================
   CARD LINE
========================================================= */

.care-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 10px auto;
    background: #a97a2f;
}


/* =========================================================
   CARD PARAGRAPH
========================================================= */

.care-card p {
    width: 100%;
    margin: 0 0 20px;
    font-family: "Poppins";
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


/* =========================================================
   CARD LINK
========================================================= */

.care-link {
    display: inline-flex;
    align-items: center;

    margin-top: auto;

    font-family: "Poppins", sans-serif;

    font-size: 0.8vw;
    font-weight: 600;

    letter-spacing: 1.5px;

    color: #222;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.care-link span {
    margin-left: 6px;

    transition: transform 0.3s ease;
}

.care-link:hover {
    color: #8e5d15;
}

.care-link:hover span {
    transform: translateX(4px);
}
















/* =========================================================
   SECTION 3 — LEVELS OF CARE
========================================================= */

.levels-care {
    position: relative;

    display: flex;
    align-items: stretch;

    width: 100%;
    min-height: 540px;

    overflow: hidden;

    background: #f6f1ea;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.levels-image {
    position: relative;
    width: 42%;
    flex: 0 0 42%;
    min-height: 540px;
    overflow: hidden;
}

.levels-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
.levels-care:hover .levels-image img {
    transform: scale(1.02);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.levels-content {
    position: relative;

    display: flex;
    align-items: center;

    width: 58%;
    flex: 0 0 58%;

    background: #f6f1ea;

    overflow: hidden;
}


/* =========================================================
   DECORATIVE FLOWER
========================================================= */

.levels-decoration {
    position: absolute;

    right: -5%;
    bottom: -12%;

    width: 42%;

    opacity: 0.35;

    pointer-events: none;
}

.levels-decoration img {
    width: 100%;
    height: auto;
}


/* =========================================================
   LEVELS INNER
========================================================= */

.levels-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 700px;

    padding: 60px 7%;
}


/* =========================================================
   LEVELS HEADING
========================================================= */

.levels-inner h1 {
    margin: 0 0 14px;
    color: #000;
    font-family: "Times New Roman";
    font-size: clamp(43px, 4vw, 59px);
    font-weight: 500;
    line-height: 1.2;
}


/* =========================================================
   GOLD LINE
========================================================= */

.gold-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;
    background: #a97a2f;
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.levels-intro {
    width: 100%;
    max-width: 650px;
    font-family: "poppins";
    margin: 0 0 25px;
    color: #000;
    font-weight: 500;
    font-size: clamp(1rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


/* =========================================================
   CARE LEVEL LIST
========================================================= */

.care-level-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* =========================================================
   CARE LEVEL ITEM
========================================================= */

.care-level-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}


/* =========================================================
   CHECK ICON
========================================================= */

.check-icon {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 4px;

    border: 1px solid #a97a2f;
    border-radius: 50%;

    color: #a97a2f;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   CARE LEVEL HEADING
========================================================= */

.care-level-item h2 {
    margin: 0 0 3px;
    font-family: "Poppins";
    color: #000;
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
}


/* =========================================================
   CARE LEVEL PARAGRAPH
========================================================= */

.care-level-item p {
    margin: 0;
    font-family: "Poppins";
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}

.levels-decoration-icon{
    position: absolute;
    right: -200px;
    bottom: 0;
    width: 500px;
    z-index: 3;
    pointer-events: none;
}
.levels-decoration-icon img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 10%;
    transform: rotate(-10deg);
}
















/* =========================================================
   SECTION 4 — HEALING IS PERSONAL
   FULL IMAGE + TEXT OVERLAY
========================================================= */

.personal-care {
    margin-top: 10px;
    position: relative;
    width: 100%;
    min-height: 235px;
}


/* =========================================================
   FULL WIDTH IMAGE
========================================================= */

.personal-image {
    background-color: #292825;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 235px;
    z-index: 1;
    overflow: hidden;
}

.personal-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
.personal-care:hover .personal-image img {
    transform: scale(1.02);
}


/* =========================================================
   SECTION 4 CONTENT
========================================================= */

.personal-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 235px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5%;
}


/* =========================================================
   SECTION 4 INNER
========================================================= */

.personal-inner {
    width: 100%;
    text-align: center;
}


/* =========================================================
   SECTION 4 HEADING
========================================================= */

.personal-inner h2 {
    margin: 0;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}


/* =========================================================
   SECTION 4 LINE
========================================================= */

/* .personal-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 10px auto;
    background: #a97a2f;
} */

.S4-flower-icon-PC {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* =========================================================
   SECTION 4 PARAGRAPH
========================================================= */

.personal-inner p {
    margin: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}















/* =========================================================
   CTA STRIP
========================================================= */

.journey-cta {
    width: 100%;
    background: #f6f1ea;
    padding: 28px 0;
}


/* =========================================================
   CTA INNER
========================================================= */

.journey-cta-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* =========================================================
   CTA FLOWER
========================================================= */

.cta-flower {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-flower img {
    width: 60px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   CTA TEXT
========================================================= */

.cta-text {
    flex: 1 1 auto;
}

.cta-text h2 {
    margin: 0;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.cta-text p {
    margin: 2px 0 0;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.cta-button-wrap {
    flex: 0 0 auto;
}

.journey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: transparent;
    color: #a97a2f;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

.journey-btn span {
    margin-left: 6px;
}

.journey-btn:hover {
    background: #a97a2f;
    color: #fff;
}

















/* =========================================================
   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;
    text-decoration: none;
    letter-spacing: 1px;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
/* 
.footer-phone:hover {
    color: #c29a5e;
    transform: translateY(-1px);
}

 */




















/* =========================================================
   RESPONSIVE — 1100px TO 769px
========================================================= */

@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-image {
        height: 100%;
        min-height: 500px;
    }



    /* ================= SECTION 2 ================= */

    .areas-container {
        padding: 0 25px;
    }

    .areas-heading h2 {
        font-size: 42px;
    }

    .heading-decoration {
        margin: -55px 0 -40px;
    }

    .care-cards {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .care-card {
        padding: 0 18px;
    }

    .care-card:nth-child(3) {
        border-right: none;
    }

    .care-card h3 {
        font-size: 22px;
    }

    .care-card p {
        font-size: 15px;
    }

    .care-link {
        font-size: 12px;
    }


    /* ================= SECTION 3 ================= */

    .levels-care {
        min-height: 500px;
    }

    .levels-image {
        width: 42%;
        flex-basis: 42%;
        min-height: 500px;
    }

    .levels-content {
        width: 58%;
        flex-basis: 58%;
    }

    .levels-inner {
        padding: 50px 6%;
    }

    .levels-inner h2 {
        font-size: 42px;
    }

    .levels-intro {
        font-size: 16px;
    }

    .care-level-item h3 {
        font-size: 15px;
    }

    .care-level-item p {
        font-size: 14px;
    }
    
.personal-care {
    width: 100%;
    min-height: 200px;
}

.personal-image {
    width: 100%;
    height: 200px;
}

.personal-content {
    height: 200px;
    
}
/* ---------- 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;
    }
}




/* =========================================================
   RESPONSIVE — 768px AND BELOW
========================================================= */
@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;
    }
    .hero-content {
        width: 80%;
        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;
    }


    /* ---------- 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 {
        display: none;
    }


    .journey-button {
        width: 100%;
        min-height: 36px;
        margin-top: 9px;
    }

    @keyframes mobileMenuOpen {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }






    /* ================= SECTION 2 ================= */

    .areas-care {
        padding: 35px 0 50px;
    }

    .areas-container {
        padding: 0 20px;
    }

    .areas-heading {
        margin-bottom: 15px;
    }

    .areas-heading h2 {
        font-size: clamp(32px, 7vw, 42px);
    }

    .heading-decoration {
        margin: -45px 0 -30px;
    }

    .heading-decoration img {
        width: 160px;
    }

    .care-cards {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 20px;
    }

    .care-card {
        width: 100%;
        padding: 0 20px 30px;
        border-right: none;
        border-bottom: 1px solid #dfd5ca;
    }

    .care-card:last-child {
        border-bottom: none;
    }

    .care-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 1rem;
    }

    .care-card h3 {
        font-size: 25px;
    }

    .care-card p {
        max-width: 550px;
        font-size: 15px;
        line-height: 1.7;
    }

    .care-link {
        font-size: 12px;
    }


    /* ================= SECTION 3 ================= */

    .levels-care {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .levels-image {
        width: 100%;
        flex: 0 0 auto;
        min-height: 380px;
        height: 380px;
    }

    .levels-content {
        width: 100%;
        flex: 0 0 auto;
        min-height: auto;
    }

    .levels-inner {
        max-width: none;
        padding: 55px 30px 60px;
    }

    .levels-inner h2 {
        font-size: clamp(34px, 7vw, 44px);
    }

    .levels-intro {
        max-width: none;
        font-size: 16px;
        line-height: 1.7;
    }

    .care-level-item h3 {
        font-size: 16px;
    }

    .care-level-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .levels-decoration {
        width: 45%;
        right: -8%;
        bottom: -5%;
    }

    .levels-decoration-icon {
        right: -120px;
        width: 350px;
    }

    .personal-care {
    width: 100%;
    min-height: 140px;
}

.personal-image {
    width: 100%;
    height: 140px;
}

.personal-content {
    height: 140px;
}

/* =====================================================
       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;
    }

}




/* =========================================================
   RESPONSIVE — 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 {
        width: 80%;
        min-height: 590px;
        padding:
            115px
            20px
            45px;
    }

    .hero-title {
        font-size: clamp(23px, 10vw, 35px);
    }

    .hero-description {
        font-size: 10px;
        line-height: 2;
    }
    .primary-btn,
    .secondary-btn {
        margin-top: -10px;
        font-size: clamp(7px, 1vw, 9px);
        padding: 9px clamp(15px, 1.5vw, 25px);
    }



    /* ================= SECTION 2 ================= */

    .areas-care {
        padding: 30px 0 40px;
    }

    .areas-container {
        padding: 0 15px;
    }

    .areas-heading h2 {
        font-size: 34px;
    }

    .heading-decoration {
        margin: -35px 0 -25px;
    }

    .heading-decoration img {
        width: 135px;
    }

    .care-cards {
        gap: 25px;
        margin-top: 15px;
    }

    .care-card {
        padding: 0 15px 25px;
    }

    .care-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 12px;
    }

    .care-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .care-line {
        width: 45px;
        margin-bottom: 10px;
    }

    .care-card p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 15px;
    }

    .care-link {
        font-size: 11px;
        letter-spacing: 1.2px;
    }


    /* ================= SECTION 3 ================= */

    .levels-image {
        height: 300px;
        min-height: 300px;
    }

    .levels-inner {
        padding: 45px 22px 50px;
    }

    .levels-inner h2 {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .gold-line {
        margin-bottom: 18px;
    }

    .levels-intro {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .care-level-list {
        gap: 16px;
    }

    .care-level-item {
        gap: 10px;
    }

    .check-icon {
        width: 17px;
        height: 17px;
        font-size: 10px;
    }

    .care-level-item h3 {
        font-size: 14px;
    }

    .care-level-item p {
        font-size: 13px;
        line-height: 1.55;
    }

    .levels-decoration {
        width: 55%;
        right: -15%;
        bottom: -4%;
    }

    .levels-decoration-icon {
        right: -100px;
        width: 280px;
    }

    .personal-care {
    width: 100%;
    min-height: 200px;
}

.personal-image {
    width: 100%;
    height: 100%;
}
.personal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-content {
    height: 200px;
    
}
 /* ---------- Footer ---------- */

    .footer-container {
        padding: 20px 16px;
    }

    .footer-message {
        max-width: 280px;
        font-size: clamp(8px, 5vw, 8px);
    }

}


/* =========================================================
   RESPONSIVE — 360px AND BELOW
========================================================= */

@media (max-width: 360px) {

    .brand-logo {
        width: 120px;
    }

    .hero-content {
        width: 90%;
        padding-left: 17px;
        padding-right: 17px;
    }

    .hero-title {
        font-size: 33px;
    }
    .primary-btn,
    .secondary-btn {
        margin-top: -10px;
        font-size: clamp(7px, 1vw, 9px);
        padding: 9px clamp(15px, 1.5vw, 25px);
    }

    /* ================= SECTION 2 ================= */

    .areas-care {
        padding: 25px 0 35px;
    }

    .areas-container {
        padding: 0 12px;
    }

    .areas-heading h2 {
        font-size: 30px;
    }

    .heading-decoration {
        margin: -30px 0 -20px;
    }

    .heading-decoration img {
        width: 115px;
    }

    .care-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 10px;
    }

    .care-card {
        width: 100%;
        padding: 0 10px 22px;
    }

    .care-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 10px;
    }

    .care-card h3 {
        font-size: 20px;
    }

    .care-line {
        width: 40px;
        height: 2px;
        margin-bottom: 9px;
    }

    .care-card p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 13px;
    }

    .care-link {
        font-size: 10px;
        letter-spacing: 1px;
    }


    /* ================= SECTION 3 ================= */

    .levels-image {
        width: 100%;
        height: 260px;
        min-height: 260px;
    }

    .levels-inner {
        padding: 38px 18px 42px;
    }

    .levels-inner h2 {
        font-size: 30px;
        line-height: 1.15;
    }

    .levels-intro {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .care-level-list {
        gap: 14px;
    }

    .care-level-item {
        gap: 9px;
    }

    .check-icon {
        width: 16px;
        height: 16px;
        font-size: 9px;
        margin-top: 3px;
    }

    .care-level-item h3 {
        font-size: 13px;
        line-height: 1.35;
    }

    .care-level-item p {
        font-size: 12px;
        line-height: 1.5;
    }

    .levels-decoration {
        width: 60%;
        right: -20%;
        bottom: -3%;
    }

    .levels-decoration-icon {
        right: -90px;
        width: 230px;
    }

    .personal-care {
    width: 100%;
    min-height: 200px;
}

.personal-image {
    width: 100%;
    height: 100%;
}
.personal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-content {
    height: 200px;
    
}

.personal-inner h2 {
    font-size: 4vw;
    line-height: 1.15;
}

.personal-line {
    width: 35px;
    height: 2px;
    margin: 20px auto;
}

.personal-inner p {
    font-size: 2vw;
    line-height: 1.7;
}





 .journey-cta {
        padding: 35px 0;
    }

    .journey-cta-inner {
        width: 100%;
        padding: 0 20px;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 18px;

        text-align: center;
    }

    .cta-flower {
        width: 100%;
        order: 1;
    }

    .cta-flower img {
        width: 55px;
        height: auto;
    }

    .cta-text {
        width: 100%;
        order: 2;
    }

    .cta-text h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-text p {
        font-size: 17px;
        line-height: 1.4;
        margin-top: 5px;
    }

    .cta-button-wrap {
        width: 100%;
        order: 3;

        display: flex;
        justify-content: center;
    }

    .journey-btn {
        padding: 12px 25px;
        font-size: 12px;
        letter-spacing: 1px;
    }

}
