 /* =========================================================
   UNIVERSAL CSS
========================================================= */

:root {
    --bg: #f6f1ea;
    --gold: #a97a2f;
    --text-dark: #000;
    --card-border: #e8ded0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f3ed;
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background: transparent;
    margin-bottom: 0;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    min-height: 95px;
    margin: 0 auto;
    padding: 22px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 101;
}


/* ---------- Logo ---------- */

.brand-logo {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 102;
}



/* ---------- Navigation ---------- */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    flex-wrap: nowrap;
    padding-top: 12px;
    position: relative;
    z-index: 102;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    color: #000;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 4px;
    background: #a97a2f;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #8a5d22;
}

.nav-link:hover::after {
    width: 100%;
}


/* ---------- Header Button ---------- */

.journey-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: #a97a2f;
    color: #fffdf8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .3s ease;
}

.journey-button:hover {
    background: transparent;
    color: #a97a2f;
    border-color: #a97a2f;
}


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.section-label {
    display: inline-block;
    color: #a97a2f;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 1.5px;
}
/* 
.section-title {
    color: #35322e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
} */

.gold-line,
.small-line,
.tiny-line {
    background: #a97a2f;
}

.gold-line-C {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 10px 0;
    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;
}



/* ===========================
   BUTTONS
=========================== */

.S-H-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: transparent;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .3s ease;
}


.primary-btn:hover {
    background: #a97a2f;
    color: #fff;
}





/* =========================================================
   IMAGE SAFETY
========================================================= */

.hero-image,
.hero-image-wrapper img {
    max-width: none;
}











/* =========================================================
   CONTACT PAGE
   SECTION 2 — WAYS TO CONNECT
========================================================= */

.contact-connect {
    width: 100%;
    background: #f6f1ea;
    padding: 32px 0 28px;
}


.contact-connect-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
    
.nodes-row .node:hover {
    transform: translateY(-0.4rem);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.contact-section-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.small-flower {
    width: 50px;
    height: 50px;
    margin-bottom: 3px;
}

.small-flower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.contact-section-heading h1 {
    margin: 0;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.S4-flower-icon {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
}
.S4-flower-icon-360{
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
}
/* .heading-line {
    width: 25px;
    height: 1px;

    margin-top: 8px;

    background: #a97a2f;
} */


/* =========================================================
   CONNECT CARDS
========================================================= */

.connect-cards {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 14px;
}


/* =========================================================
   CONNECT CARD
========================================================= */

.connect-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 0 28px;

    border-right: 1px solid #dfd5ca;
    transition: transform 0.3s ease;
}
.connect-cards .connect-card:hover {
    transform: translateY(-0.4rem);
}


.connect-card:last-child {
    border-right: none;
}


/* =========================================================
   CONNECT ICON
========================================================= */

.connect-icon {
    width: clamp(5.75rem, 5vw, 4.5rem);
    height: clamp(5.75rem, 5vw, 4.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}


.connect-icon img {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    object-fit: contain;
}


/* Individual icon borders */

.phone-icon {
    border-color: #719486;
}

.email-icon {
    border-color: #a97a2f;
}

.chat-icon {
    border-color: #9270d0;
}

.location-icon {
    border-color: #3d91ce;
}


/* =========================================================
   CONNECT CARD HEADING
========================================================= */

.connect-card 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;
}


/* =========================================================
   CARD LINE
========================================================= */

.connect-line {
    width: 22px;
    height: 1px;
    margin: 9px 0 12px;
    background: #b08a4e;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.connect-highlight {
    display: block;
    margin-bottom: 16px;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #a97a2f;
    text-decoration: none;
}


.chat-icon ~ h3 + .connect-line {
    margin-bottom: 12px;
}


/* =========================================================
   CARD PARAGRAPH
========================================================= */

.connect-card p {
    margin: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}


/* =========================================================
   SECTION 3 — CONTACT FORM
========================================================= */

.contact-form-section {
    width: 100%;

    padding: 0 24px;

    background: #f6f1ea;
}


.contact-form-wrapper {
    width: 100%;
    max-width: 1200px;

    min-height: 420px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;
}


/* =========================================================
   LEFT STORY
========================================================= */

.contact-story {
    position: relative;

    min-height: 420px;

    overflow: hidden;

    background: #302f25;
}


.contact-story-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}


.contact-story:hover .contact-story-image {
    transform: scale(1.02);
}


/* =========================================================
   STORY OVERLAY
========================================================= */

.contact-story-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(20, 22, 15, .78),
            rgba(20, 22, 15, .30),
            rgba(20, 22, 15, .08)
        );

    z-index: 1;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.contact-story-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 45px;
}


.contact-story-content 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;
}

.story-line {
    width: 25px;
    height: 1px;
    margin: 14px 0;
    background: #b08a4e;
}


.contact-story-content p {
    margin: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

.contact-story-content .story-highlight {
    margin-top: 12px;
    font-family: "Times New Roman";
    font-size: clamp(1rem, 1vw, 1rem);
    font-style: italic;
    line-height: 1.5;
    color: #a97a2f;
}


/* =========================================================
   RIGHT FORM BOX
========================================================= */

.contact-form-box {
    min-height: 420px;

    background: #f4eee7;

    display: flex;
    align-items: center;
}


.contact-form-inner {
    width: 100%;

    padding: 30px 40px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-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: #000;
}


.form-line {
    width: 25px;
    height: 1px;
    margin: 9px 0 10px;
    background: #a97a2f;
}


.form-intro {
    max-width: 500px;
    margin: 0 0 14px;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
}


.form-row {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7px;
}


.form-group {
    width: 100%;

    margin-bottom: 7px;
}


.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e1d6ca;
    background: #f0e8de;
    border-radius: 3px;
    outline: none;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    color: #000;
    transition:
        border-color .3s ease,
        background-color .3s ease;
}


.form-group input {
    height: 32px;

    padding: 0 10px;
}


.form-group textarea {
    height: 68px;

    padding: 9px 10px;

    resize: none;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #000;
    opacity: 1;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #a97a2f;
    background: #f6f1ea;
}


/* =========================================================
   SEND BUTTON
========================================================= */

.send-message-btn {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #a97a2f;
    border-radius: 3px;
    background: #a97a2f;
    color: #fff;
    font-family: "Poppins";
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition:
        background-color .3s ease,
        transform .3s ease;
}


.send-message-btn span {
    font-size: 14px;
    transition: transform .3s ease;
}


.send-message-btn:hover {
    background: transparent;
    color: #a97a2f;
}




/* =========================================================
   SECURITY
========================================================= */

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 11px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    color: #000;
}


.lock-icon {
    font-size: 11px;
}


/* =========================================================
   SECTION 4 — FULL BACKGROUND IMAGE
========================================================= */

.alone-section {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 2px;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND
========================================================= */

.alone-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.alone-background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}


.alone-section:hover .alone-background img {
    transform: scale(1.02);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.alone-content {
    position: relative;
    z-index: 2;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8%;
}


.alone-inner {
    width: 100%;
    max-width: 500px;
    text-align: left;
}


/* =========================================================
   FLOWER
========================================================= */

.alone-flower {
    width: 50px;
    height: 50px;
}


.alone-flower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   HEADING
========================================================= */

.alone-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: #000;
}


.alone-line {
    width: 24px;
    height: 1px;

    margin: 10px 0;

    background: #a97a2f;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.alone-inner p {
    margin: 0;
    font-weight: 500;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    color: #000;
}


.alone-highlight {
    margin-top: 8px !important;
    font-family: "poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-style: italic;
    font-weight: 500;
    color: #a97a2f !important;
}







/* =========================================================
   SECTION 5 — VALUES
========================================================= */

.values-section {
    width: 100%;
    height: 200px;
    background: #f6f1ea;
    padding: 40px 0;
}


.values-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 30px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


/* =========================================================
   VALUE CARD
========================================================= */

.value-card {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0 28px;
    border-right: 1px solid #dfd5ca;
    transition: transform 0.3s ease;
}
    
.values-container .value-card:hover {
    transform: translateY(-0.4rem);
}


.value-card:first-child {
    padding-left: 0;
}


.value-card:last-child {
    border-right: none;

    padding-right: 0;
}


/* =========================================================
   VALUE ICON
========================================================= */

.value-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   VALUE CONTENT
========================================================= */

.value-content {
    min-width: 0;
}


.value-content h2 {
    margin: 0 0 9px;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}


.value-content p {
    margin: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}








/* =========================================================
   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: 2px;

    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);
} */



















/* =========================================================
   RESPONSIVE DESIGN
   1100px → 769px
========================================================= */

@media (max-width: 1100px) and (min-width: 769px) {


    
    .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 — WAYS TO CONNECT
    ===================================================== */

    .contact-connect {
        padding: 30px 0 25px;
    }

    .contact-connect-container {
        padding: 0 25px;
    }

    .contact-section-heading h2 {
        font-size: 2.4rem;
    }

    .connect-cards {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .connect-card {
        padding: 0 35px;
    }

    .connect-card:nth-child(2) {
        border-right: none;
    }

    .connect-card:nth-child(3),
    .connect-card:nth-child(4) {
        padding-top: 10px;
    }

    .connect-card h3 {
        font-size: 1.35rem;
    }

    .connect-highlight {
        font-size: 0.85rem;
    }

    .connect-card p {
        font-size: 0.78rem;
    }


    /* =====================================================
       SECTION 3 — CONTACT FORM
    ===================================================== */

    .contact-form-section {
        padding: 0 20px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 430px;
    }

    .contact-story {
        min-height: 430px;
    }

    .contact-story-content {
        padding: 35px 35px;
    }

    .contact-story-content h2 {
        font-size: 1.7rem;
    }

    .contact-story-content p {
        font-size: 0.78rem;
        line-height: 1.8;
    }

    .contact-story-content .story-highlight {
        font-size: 1rem;
    }

    .contact-form-box {
        min-height: 430px;
    }

    .contact-form-inner {
        padding: 28px 30px;
    }

    .contact-form-inner h2 {
        font-size: 1.65rem;
    }

    .form-intro {
        font-size: 0.72rem;
    }


    /* =====================================================
       SECTION 4 — ALONE
    ===================================================== */

    .alone-section {
        height: 230px;
    }

    .alone-content {
        width: 55%;
        padding-left: 7%;
    }

    .alone-inner {
        max-width: 450px;
    }

    .alone-inner h2 {
        font-size: 1.7rem;
    }

    .alone-inner p {
        font-size: 0.72rem;
    }

    .alone-highlight {
        font-size: 0.9rem !important;
    }


    /* =====================================================
       SECTION 5 — VALUES
    ===================================================== */

    .values-section {
        padding: 28px 0;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
        padding: 0 30px;
    }

    .value-card {
        padding: 0 25px;
    }

    .value-card:nth-child(2) {
        border-right: none;
    }

    .value-card:nth-child(3),
    .value-card:nth-child(4) {
        padding-top: 5px;
    }

    .value-content h3 {
        font-size: 1.15rem;
    }

    .value-content p {
        font-size: 0.7rem;
    }



    /* ---------- FOOTER ---------- */

    .footer-container {
        min-height: 50px;
        padding: 9px 28px;
        gap: 18px;
        margin-top: 100px;
    }

    .footer-logo img {
        width: 95px;
    }

    .footer-message {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .footer-phone {
        font-size: 9px;
    }
}











/* =========================================================
   RESPONSIVE
   768px → 481px
========================================================= */

@media (max-width: 768px) and (min-width: 481px) {


     /* ---------- 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 — WAYS TO CONNECT
    ===================================================== */

    .contact-connect {
        padding: 28px 0 25px;
    }

    .contact-connect-container {
        padding: 0 20px;
    }

    .contact-section-heading h2 {
        font-size: 2.1rem;
    }

    .small-flower {
        width: 25px;
        height: 25px;
    }

    .connect-cards {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
        margin-top: 18px;
    }

    .connect-card {
        padding: 0 22px;
    }

    .connect-card:nth-child(2) {
        border-right: none;
    }

    .connect-card:nth-child(3),
    .connect-card:nth-child(4) {
        padding-top: 5px;
    }

    .connect-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 8px;
    }

    .connect-icon img {
        width: 65px;
        height: 65px;
    }

    .connect-card h3 {
        font-size: 1.25rem;
    }

    .connect-highlight {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .connect-card p {
        font-size: 0.72rem;
        line-height: 1.7;
    }


    /* =====================================================
       SECTION 3 — CONTACT FORM
    ===================================================== */

    .contact-form-section {
        padding: 0 15px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 410px;
    }

    .contact-story {
        min-height: 410px;
    }

    .contact-story-content {
        padding: 30px 28px;
    }

    .contact-story-content h2 {
        font-size: 1.55rem;
    }

    .contact-story-content p {
        font-size: 0.7rem;
        line-height: 1.75;
    }

    .contact-story-content .story-highlight {
        font-size: 0.92rem;
    }

    .contact-form-box {
        min-height: 410px;
    }

    .contact-form-inner {
        padding: 25px 25px;
    }

    .contact-form-inner h2 {
        font-size: 1.5rem;
    }

    .form-intro {
        font-size: 0.68rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.68rem;
    }


    /* =====================================================
       SECTION 4 — ALONE
    ===================================================== */

    .alone-section {
        height: 240px;
    }

    .alone-content {
        width: 58%;
        padding-left: 6%;
    }

    .alone-inner {
        max-width: 400px;
    }

    .alone-inner h2 {
        font-size: 1.55rem;
    }

    .alone-inner p {
        font-size: 0.7rem;
    }

    .alone-highlight {
        font-size: 0.85rem !important;
    }


    /* =====================================================
       SECTION 5 — VALUES
    ===================================================== */

    .values-section {
        padding: 25px 0;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
        padding: 0 20px;
    }

    .value-card {
        padding: 0 20px;
        gap: 12px;
    }

    .value-card:nth-child(2) {
        border-right: none;
    }

    .value-icon {
        width: 43px;
        height: 50px;
    }

    .value-content h3 {
        font-size: 1rem;
    }

    .value-content p {
        font-size: 0.65rem;
    }


    /* =====================================================
       FOOTER MOBILE
    ===================================================== */

    .site-footer {
        min-height: auto;
        margin-top: 70px;
    }

    .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 → 361px
========================================================= */

@media (max-width: 480px) {

     /* ---------- 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 — WAYS TO CONNECT
       1 CARD PER ROW
    ===================================================== */

    .contact-connect {
        padding: 28px 0 30px;
    }

    .contact-connect-container {
        padding: 0 18px;
    }

    .contact-section-heading h2 {
        font-size: 1.9rem;
    }

    .small-flower {
        width: 24px;
        height: 24px;
    }

    .connect-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .connect-card {
        padding: 0 15px 25px;
        border-right: none;
        border-bottom: 1px solid #dfd5ca;
    }

    .connect-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .connect-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 9px;
    }

    .connect-icon img {
        width: 68px;
        height: 68px;
    }

    .connect-card h3 {
        font-size: 1.3rem;
    }

    .connect-highlight {
        font-size: 0.8rem;
    }

    .connect-card p {
        max-width: 280px;
        font-size: 0.72rem;
    }


    /* =====================================================
       SECTION 3
       IMAGE + STORY
       THEN FORM
    ===================================================== */

    .contact-form-section {
        padding: 0 12px;
    }

    .contact-form-wrapper {
        display: flex;
        flex-direction: column;

        width: 100%;
        min-height: auto;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       STORY IMAGE
    ----------------------------------------------------- */

    .contact-story {
        width: 100%;
        min-height: 390px;
        height: 390px;
    }

    .contact-story-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    /* -----------------------------------------------------
       STORY OVERLAY
    ----------------------------------------------------- */

    .contact-story-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(20, 22, 15, .20),
                rgba(20, 22, 15, .55),
                rgba(20, 22, 15, .78)
            );
    }


    /* -----------------------------------------------------
       STORY TEXT — CENTER
    ----------------------------------------------------- */

    .contact-story-content {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        padding: 30px 30px;
    }

    .contact-story-content h2 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .story-line {
        margin: 14px auto;
    }

    .contact-story-content p {
        max-width: 300px;

        font-size: 0.76rem;
        line-height: 1.8;
    }

    .contact-story-content .story-highlight {
        max-width: 280px;

        margin-top: 14px;

        font-size: 0.95rem;
        line-height: 1.45;
    }


    /* =====================================================
       FORM
    ===================================================== */

    .contact-form-box {
        width: 100%;
        min-height: auto;
    }

    .contact-form-inner {
        padding: 30px 22px 28px;
    }

    .contact-form-inner h2 {
        font-size: 1.6rem;
    }

    .form-intro {
        font-size: 0.7rem;
        line-height: 1.7;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 8px;
    }

    .form-group input {
        height: 38px;
    }

    .form-group textarea {
        height: 95px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.72rem;
    }

    .send-message-btn {
        height: 40px;
        font-size: 0.7rem;
    }

    .form-security {
        font-size: 0.65rem;
    }


    /* =====================================================
       SECTION 4
       FULL IMAGE + CENTER TEXT
    ===================================================== */

    .alone-section {
        width: 100%;
        height: 330px;
        min-height: 330px;

        margin-top: 2px;
    }

    .alone-background {
        width: 100%;
        height: 100%;
    }

    .alone-background img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    /* -----------------------------------------------------
       CENTER TEXT OVER IMAGE
    ----------------------------------------------------- */

    .alone-content {
        position: relative;

        width: 100%;
        height: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 25px;
    }

    .alone-inner {
        width: 100%;
        max-width: 330px;

        text-align: center;

        padding: 20px;
    }

    .alone-flower {
        margin: 0 auto 6px;
    }

    .alone-inner h2 {
        font-size: 1.65rem;

        line-height: 1.25;
    }

    .alone-line {
        margin: 10px auto;
    }

    .alone-inner p {
        font-size: 0.72rem;
        line-height: 1.7;
    }

    .alone-highlight {
        font-size: 0.9rem !important;
        margin-top: 9px !important;
    }


    /* =====================================================
       SECTION 5 — VALUES
       1 CARD PER ROW
    ===================================================== */

    .values-section {
        padding: 30px 0;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 25px;

        padding: 0 22px;
    }

    .value-card,
    .value-card:first-child,
    .value-card:last-child {
        width: 100%;

        padding: 0 0 22px;

        border-right: none;
        border-bottom: 1px solid #dfd5ca;
    }

    .value-card:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .value-icon {
        width: 45px;
        height: 52px;
    }

    .value-content h3 {
        font-size: 1.05rem;
    }

    .value-content p {
        font-size: 0.68rem;
    }

    /* =====================================================
       FOOTER MOBILE
    ===================================================== */

    .site-footer {
        margin-top: 400px;
        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
   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
    ===================================================== */

    .contact-connect {
        padding: 25px 0 28px;
    }

    .contact-connect-container {
        padding: 0 14px;
    }

    .contact-section-heading h2 {
        font-size: 1.7rem;
    }

    .small-flower {
        width: 22px;
        height: 22px;
    }

    .heading-line {
        margin-top: 7px;
    }

    .connect-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 18px;
    }

    .connect-card {
        padding: 0 10px 22px;
    }

    .connect-icon {
        width: 50px;
        height: 50px;
    }

    .connect-icon img {
        width: 62px;
        height: 62px;
    }

    .connect-card h3 {
        font-size: 1.2rem;
    }

    .connect-highlight {
        font-size: 0.74rem;
    }

    .connect-card p {
        max-width: 260px;
        font-size: 0.68rem;
        line-height: 1.7;
    }


    /* =====================================================
       SECTION 3
    ===================================================== */

    .contact-form-section {
        padding: 0 8px;
    }

    .contact-form-wrapper {
        display: flex;
        flex-direction: column;
    }


    /* IMAGE + TEXT */

    .contact-story {
        min-height: 360px;
        height: 360px;
    }

    .contact-story-content {
        padding: 22px;
    }

    .contact-story-content h2 {
        font-size: 1.55rem;
    }

    .contact-story-content p {
        max-width: 270px;
        font-size: 0.68rem;
        line-height: 1.75;
    }

    .contact-story-content .story-highlight {
        max-width: 250px;
        font-size: 0.85rem;
    }


    /* FORM */

    .contact-form-inner {
        padding: 26px 17px 25px;
    }

    .contact-form-inner h2 {
        font-size: 1.45rem;
    }

    .form-intro {
        font-size: 0.66rem;
    }

    .form-group input {
        height: 36px;
    }

    .form-group textarea {
        height: 90px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.68rem;
    }

    .send-message-btn {
        height: 38px;
        font-size: 0.66rem;
        letter-spacing: 1.2px;
    }

    .form-security {
        font-size: 0.6rem;
    }


    /* =====================================================
       SECTION 4
    ===================================================== */

    .alone-section {
        height: 310px;
        min-height: 310px;
    }

    .alone-content {
        padding: 20px;
    }

    .alone-inner {
        max-width: 290px;
        padding: 15px;
    }

    .alone-inner h2 {
        font-size: 1.45rem;
    }

    .gold-line{
        margin: 10px auto;
    }
    .S4-flower-icon{
        display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
    }
    .S4-flower-icon-360{
        display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
    }
    .alone-inner p {
        font-size: 0.67rem;
        line-height: 1.65;
    }

    .alone-highlight {
        font-size: 0.82rem !important;
    }


    /* =====================================================
       SECTION 5
    ===================================================== */

    .values-section {
        padding: 25px 0;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 16px;
    }

    .value-card,
    .value-card:first-child,
    .value-card:last-child {
        padding: 0 0 20px;
    }

    .value-icon {
        width: 42px;
        height: 48px;
    }

    .value-content h3 {
        font-size: 0.98rem;
    }

    .value-content p {
        font-size: 0.64rem;
        line-height: 1.65;
    }


    .site-footer{
        margin-top: 400px;
    }
}

/* @media (max-width: 350px) {
    .S4-flower-icon{
        display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
    }
} */
