 /* =========================================================
   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: #a97a2f;
}

.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-H {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
}
.S4-flower-icon{
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
}
.S4-flower-icon-MP {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
}
.S4-flower-icon-MPW {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
    filter: brightness(0)invert(1);
}
.gold-line,
.small-line,
.tiny-line {
    background: #a97a2f;
}

.gold-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;
}

.small-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;;
}

.tiny-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 17px;
}


/* =========================================================
   about hero section
   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;
}


/* =========================================================
   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%
            );
    }
}








/* =========================================================
   SECTION 02 — OUR STORY
   HEIGHT REDUCED BY 20%
   620px → 496px
========================================================= */

.story-section {
    width: 100%;
    height: 496px;
    display: flex;
    align-items: stretch;
}


/* ---------------------------------------------------------
   LEFT IMAGE — 40%
--------------------------------------------------------- */

.story-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ---------------------------------------------------------
   RIGHT CONTENT — 60%
--------------------------------------------------------- */

.story-content {
    position: relative;
    width: 60%;
    height: 100%;
    background: #f7f3ed;
    overflow: hidden;

    display: flex;
    align-items: center;
}

.content-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 780px;

    padding: 45px 70px 45px 60px;
}


/* ---------------------------------------------------------
   OUR STORY HEADING
   Heading remains normal/full width
--------------------------------------------------------- */

.story-content h1 {
    padding-bottom: 10px;
    width: 100%;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-family: 'Times New Roman';
    font-weight: 500;
    color: #000;
}


/* ---------------------------------------------------------
   STORY TEXT
   Right side reserved for floral icon
--------------------------------------------------------- */

.story-text {
    position: relative;
    z-index: 3;
    font-family: "poppins";
    width: calc(100% - 180px);
    max-width: 560px;
    padding-right: 18px;
}


/* Paragraph spacing */

.story-text p {
    margin-bottom: 14px;
    font-family: "poppins";
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}

.story-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}


/* ---------------------------------------------------------
   STORY FLORAL PNG
--------------------------------------------------------- */

.story-floral {
    position: absolute;

    z-index: 1;

    width: 400px;
    height: auto;

    right: -100px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(-12deg);

    opacity: 0.075;

    pointer-events: none;
    user-select: none;
}









/* =========================================================
   SECTION 03 — OUR MISSION / OUR VISION
   HEIGHT REDUCED BY 20%
   470px → 376px
========================================================= */

.mission-vision-section {
    width: 100%;
    height: 376px;

    display: flex;
    align-items: stretch;
}


/* ---------------------------------------------------------
   LEFT — OUR MISSION
   50%
--------------------------------------------------------- */

.mission-panel {
    position: relative;

    width: 50%;
    height: 100%;

    background: #f7f3ed;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 600px;

    padding: 90px 75px 35px;

    text-align: center;
}


/* Mission heading */

.mission-inner h1 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    color: #000;
    font-weight: 500;
    line-height: 1.2;
}


/* Center gold line */

.mission-inner .gold-line {
    margin-left: auto;
    margin-right: auto;
}


/* Mission paragraph */

.mission-inner p {
    max-width: 440px;
    margin: 0 auto;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}


/* ---------------------------------------------------------
   MISSION FLORAL ICON
--------------------------------------------------------- */
.mission-inner,
.mission-panel{
    position: relative;

}
.panel-floral {
    position: absolute;
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    margin: 0;
    opacity: 0.78;
    z-index: 5;
    pointer-events: none;
}


/* =========================================================
   RIGHT — OUR VISION
   50%
========================================================= */

.vision-panel {
    position: relative;

    width: 50%;
    height: 100%;

    overflow: hidden;

    background-image:
        url(./about\ third\ section.webp);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* Dark image overlay */

.vision-overlay {
    position: absolute;

    inset: 0;

    background: #413f30;

    z-index: 1;
}


/* Vision content */

.vision-inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 620px;

    padding: 90px 70px 30px;

    text-align: center;

    color: #ffffff;
}


/* Vision heading */

.vision-inner h1 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    color: #fff;
    font-family: "poppins";
    font-weight: 500;
    line-height: 1.2;
}


/* Center gold line */

.vision-inner .gold-line {
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}


/* Vision paragraphs */

.vision-inner p {
    color: #fff;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    margin-bottom: 13px;
}

.vision-inner p:last-child {
    margin-bottom: 0;
}


/* Vision floral */

.vision-floral {
    filter: brightness(0) invert(1);
    opacity: 0.75;
}


/* =========================================================
   SECTION 04 — WHAT MAKES US DIFFERENT
   HEIGHT REDUCED BY 40%
   500px → 300px
========================================================= */

.difference-section {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}


/* ---------------------------------------------------------
   LEFT TEXT — 50%
--------------------------------------------------------- */

.difference-content {
    position: relative;
    z-index: 5;
    width: 50%;
    height: 100%;
    background: #f7f3ed;
    display: flex;
    align-items: center;
}


.difference-inner {
    width: 100%;
    padding: 35px 65px 35px 80px;
}


/* Difference heading */

.difference-inner h1 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    color: #000;
    font-weight: 500;
    line-height: 1.2;
}


/* Gold line */

.difference-inner .gold-line {
    margin-top: 10px;
    margin-bottom: 10px;
}


/* Difference text */

.difference-text {
    max-width: 600px;
}

.difference-text p {
    color: #000;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    margin-bottom: 13px;
}

.difference-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION 04 — RIGHT IMAGE
========================================================= */

.difference-image {
    position: relative;

    width: 50%;
    height: 100%;

    overflow: hidden;

    background: #f7f3ed;
}


/* Image */

.difference-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   IMAGE → BACKGROUND GRADIENT
========================================================= */

.difference-gradient {
    position: absolute;

    z-index: 3;

    left: 0;
    top: 0;

    width: 48%;
    height: 100%;

    background: linear-gradient(
        to right,

        #f7f3ed 0%,

        rgba(247, 243, 237, 0.98) 12%,

        rgba(247, 243, 237, 0.82) 30%,

        rgba(247, 243, 237, 0.50) 52%,

        rgba(247, 243, 237, 0.18) 76%,

        rgba(247, 243, 237, 0) 100%
    );

    pointer-events: none;
}


/* =========================================================
   IMAGE QUALITY / SAFE REPLACEMENT
========================================================= */

.story-image img,
.difference-image img {
    image-rendering: auto;
}


/* =========================================================
   DECORATIVE ELEMENTS
========================================================= */

.story-floral,
.panel-floral,
.difference-gradient {
    pointer-events: none;
}

.story-image img,
.difference-image img {
    user-select: none;
}








/* =========================================================
   PHILOSOPHY CTA section 05
========================================================= */

.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-5 {
    width: 50px;
    height: 50px;
    min-height: 200px;
    min-height: 200px;
    margin-top: -70px;
    margin-bottom: -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;
}

.philosophy-cta-section p{
    color: #000;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
}



.cta-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: #a97a2f;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-top: 10px;
    transition: all .3s ease;
}

.cta-button:hover {
    background: #a97a2f;
    color: #fffdf8;
    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: #b18a52;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
}

.footer-phone {
    color: #f1e9dc;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

/* .footer-phone:hover {
    color: #c29a5e;
    transform: translateY(-1px);
} */


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .brand-logo {
        width: 155px;
    }

    .main-navigation {
        gap: 22px;
    }

    .hero-content {
        width: 55%;

        padding-left: 45px;
        padding-right: 25px;
    }

    .story-section {
        height: 496px;
    }

    .content-inner {
        padding-left: 45px;
        padding-right: 45px;
    }

    .story-floral {
        width: 350px;
        right: -100px;
    }

    .mission-inner {
        padding-left: 45px;
        padding-right: 45px;
    }

    .vision-inner {
        padding-left: 45px;
        padding-right: 45px;
    }

    .difference-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .difference-inner h2 {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }


    /* =====================================================
       HEADER MOBILE
    ===================================================== */

    .site-header {
        position: absolute;

        top: 0;
        left: 0;

        z-index: 100;
    }
        .nav-link::after {
        display: none;
    }


    .header-container {
        min-height: 70px;

        padding: 15px 18px;

        align-items: center;

        gap: 0;
    }

    .brand-logo {
        width: 120px;
    }

        .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
       IMAGE + TEXT CLOSE TOGETHER
    ===================================================== */

    .philosophy-hero {
        height: 570px;

        min-height: 570px;

        margin-bottom: 10px;

        align-items: flex-start;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 100%;

        top: 0;
        right: 0;
    }

    .hero-image {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: 62% center;
    }

    .hero-image-wrapper::before {
        background:
            linear-gradient(
                90deg,
                rgba(247, 243, 237, 1) 0%,
                rgba(247, 243, 237, 0.95) 24%,
                rgba(247, 243, 237, 0.75) 42%,
                rgba(247, 243, 237, 0.40) 60%,
                rgba(247, 243, 237, 0.12) 78%,
                rgba(247, 243, 237, 0) 100%
            );
    }

    .hero-content {
        width: 100%;

        max-width: 100%;

        padding:
            170px
            25px
            40px;

        justify-content: flex-start;
    }

    .section-label {
        font-size: 9px;

        letter-spacing: 1.3px;
    }

    .hero-title {
        max-width: 330px;

        font-size: 38px;

        line-height: 1.04;

        letter-spacing: -1px;
    }

    .gold-divider {
        margin-top: 16px;
        margin-bottom: 13px;
    }

    .hero-description {
        max-width: 310px;

        font-size: 11px;

        line-height: 1.65;
    }


    /* =====================================================
       STORY MOBILE
       IMAGE FIRST / TEXT SECOND
    ===================================================== */

    .story-section {
        width: 100%;

        height: auto;

        min-height: 0;

        display: flex;

        flex-direction: column;

        overflow: hidden;
    }

    .story-image {
        width: 100%;

        height: 260px;

        flex-shrink: 0;
    }

    .story-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .story-content {
        width: 100%;

        height: auto;

        min-height: 430px;

        padding: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .content-inner {
        width: 100%;
        max-width: 100%;
        padding:
            45px
            25px
            45px;
    }

    .story-content h2 {
        width: 100%;
        font-size: 34px;
        text-align: center;
    }

    .story-content .gold-line {
        margin-left: auto;
        margin-right: auto;
    }

    .story-text {
        width: 100%;
        max-width: 500px;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }

    .story-text p {
        width: 100%;

        max-width: auto;

        margin-left: auto;
        margin-right: auto;

        margin-bottom: 15px;

        font-size: 12.5px;

        line-height: 1.7;

        text-align: center;
    }

    .story-floral {
        width: 300px;

        right: -125px;

        top: 50%;

        opacity: 0.065;
    }


    /* =====================================================
       MISSION / VISION MOBILE
       IMAGE FIRST THEN TEXT
    ===================================================== */

    .mission-vision-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }


    /* -----------------------------------------------------
       MISSION
    ----------------------------------------------------- */

    .mission-panel {
        order: 2;
        width: 100%;
        min-height: 390px;
        height: auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mission-inner {
        width: 100%;
        max-width: 340px;
        padding:
            105px
            10px
            45px;
        text-align: center;
    }

    .mission-inner h2 {
        font-size: 31px;

        text-align: center;
    }

    .mission-inner p {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        font-size: 12.5px;
        line-height: 1.5;
        text-align: center;
    }


    /* -----------------------------------------------------
       MISSION FLORAL
    ----------------------------------------------------- */

    .panel-floral {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }


    /* -----------------------------------------------------
       VISION
    ----------------------------------------------------- */

    .vision-panel {
        order: 1;
        width: 100%;
        min-height: 470px;
        height: auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vision-inner {
        width: 100%;
        max-width: 340px;
        padding:
            105px
            10px
            40px;
        text-align: center;
    }

    .vision-inner h2 {
        font-size: 31px;
        text-align: center;
    }

    .vision-inner p {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
        line-height: 1.7;
        text-align: center;
    }

    .vision-floral {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }


    /* =====================================================
       DIFFERENCE MOBILE
       IMAGE FIRST / TEXT SECOND
    ===================================================== */

    .difference-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }


    /* Image first */

    .difference-image {
        order: 1;
        width: 100%;
        height: 260px;
        flex-shrink: 0;
    }

    .difference-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .difference-gradient {
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 45%;
        background:
            linear-gradient(
                to bottom,
                rgba(247, 243, 237, 0) 0%,
                rgba(247, 243, 237, 0.35) 30%,
                rgba(247, 243, 237, 0.80) 70%,
                #f7f3ed 100%
            );
    }


    /* Text second */

    .difference-content {
        order: 2;
        width: 100%;
        height: auto;
        min-height: 440px;
        padding: 0 auto;
        text-align: center;
    }

    .difference-inner {
        width: 100%;
        max-width: auto;
        padding: 20px auto;
        text-align: center;
    }

    .difference-inner h2 {
        width: 100%;
        max-width: auto;
        font-size: 31px;
        line-height: 1.12;
        text-align: center;
    }

    .difference-inner .gold-line {
        margin: 10px auto;
    }

    .difference-text {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .difference-text p {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        font-size: clamp(0.75rem, 1.3vw, 0.75rem);
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
    }


    /* =====================================================
       CTA MOBILE
       ICON MUST STAY 200px
    ===================================================== */

    .philosophy-cta-section {
        min-height: 220px;
        padding:
            15px
            20px
            25px;
        overflow: hidden;
    }

    .philosophy-cta-section::after {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: -20px;
        opacity: 0.20;
    }

    .cta-icon {
        width: 200px !important;
        height: 200px !important;

        min-width: 200px !important;
        min-height: 200px !important;

        max-width: 200px !important;
        max-height: 200px !important;

        flex-shrink: 0;

        object-fit: contain;

        margin-top: -70px;
        margin-bottom: -75px;
    }

    .cta-title {
        width: 100%;
        max-width: 500px;
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }

    .philosophy-cta-section p {
        width: 100%;

        max-width: 300px;

        font-size: 11px;

        line-height: 1.6;

        text-align: center;
    }

    .cta-button {
        min-width: 220px;

        margin-top: 15px;
        margin-bottom: 10px;
    }


    /* =====================================================
       FOOTER MOBILE
    ===================================================== */

    .site-footer {
        min-height: 160px;
    }

    .footer-container {
        min-height: 160px;

        padding:
            25px
            20px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 14px;

        text-align: center;
    }

    .footer-logo img {
        width: 105px;
    }

    .footer-message {
        max-width: 330px;

        font-size: 10px;

        line-height: 1.8;

        letter-spacing: 1.2px;

        text-align: center;
    }

    .footer-phone {
        font-size: 11px;
    }


        .philosophy-hero {
        height: 100vh;

        min-height: 100vh;

        margin-bottom: 10px;

        align-items: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-logo {
        width: 110px;
    }

    .philosophy-hero {
        height: 550px;
        min-height: 550px;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 34px;

        max-width: 290px;
    }

    .hero-description {
        max-width: 280px;

        font-size: 10.5px;
    }

    .story-image {
        height: 230px;
    }

    .story-content {
        min-height: 420px;
    }

    .story-text {
        max-width: 285px;
    }
    .S4-flower-icon-H{
        display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
    }
    .S4-flower-icon{
        display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
    }

    .story-text p {
        max-width: 285px;

        font-size: 11.5px;
    }

    .mission-panel {
        min-height: 370px;
    }

    .vision-panel {
        min-height: 450px;
    }

    .mission-inner,
    .vision-inner {
        max-width: 300px;
    }

    .mission-inner p,
    .vision-inner p {
        max-width: 270px;

        font-size: 11.5px;
    }

    .difference-image {
        height: 230px;
    }

    .difference-content {
        min-height: 430px;
    }

    .difference-inner {
        max-width: 500px;
    }

    .difference-text,
    .difference-text p {
        max-width: 270px;
    }

    .cta-title {
        max-width: 500px;
        font-size: 20px;
    }

    .cta-icon {
        width: 200px !important;
        height: 200px !important;

        min-width: 200px !important;
        min-height: 200px !important;

        max-width: 200px !important;
        max-height: 200px !important;
    }

    .philosophy-hero {
        height: 100vh;

        min-height: 100vh;

        margin-bottom: 10px;

        align-items: flex-start;
    }

}                        