: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: #f6f1ea;
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}

/* ===========================
   HERO
=========================== */

.hero {
    width: 100%;
    min-height: 130vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    z-index: 0;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
    width: 95%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.logo {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 102;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links {
    padding-bottom: 5px;
    display: flex;
    list-style: none;
    gap: 34px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #a97a2f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.nav-links a:hover {
    color: #a97a2f;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: #a97a2f;
    color: #fffdf8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .3s ease;
    
}

.nav-btn:hover {
    background: transparent;
    color: #a97a2f;
    border-color: #a97a2f;
}


/* ===========================
   HERO CONTENT
=========================== */

.hero-content {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.Hero-logo {
    margin: -60px auto 10px auto;
    width: 350px;
}

.Hero-logo img {
    width: 100%;
}

.hero-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 500px;
}

/* ===========================
   HEADINGS / PARAGRAPH — base (desktop, >1024px)
=========================== */

.hero-text h1 {
    font-family: "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
}

.hero-text h2 {
    font-family: "poppins";
    font-size: 14px;
    font-weight: 500;
    margin: -40px auto 5px auto;
    line-height: 1.3;
    color: #a97a2f;
    letter-spacing: 1px;
}

.black {
    color: #000;
}

.brown {
    color: #a97a2f;
}


.hero-text p {
    letter-spacing: 1px;
    width: 400px;
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
    color: #000;
    margin: 5px 0 20px 0;
}

.H-flower-icon {
    width: 100px;
}

/* ===========================
   BUTTONS
=========================== */

.buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    text-decoration: none;
    font-family: "Poppins";
    padding: 10px 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;
}

.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;
}











/* =========================================================
   RECOVERY SECTION
========================================================= */

.recovery {
    margin-top: -40px;
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #f6f1ea;
    overflow: hidden;
    padding: 0 0 clamp(3rem, 6vw, 6rem);
}


/* =========================================================
   CONTAINER
========================================================= */

.recovery .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
}


/* =========================================================
   SECTION TITLE
========================================================= */

.recovery .section-title {
    width: 100%;
    max-width: 55rem;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    text-align: center;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    color: #a97a2f;
}


/* =========================================================
   FLOWER ICON
========================================================= */

.recovery .S2-flower-icon {
    display: block;
    width: clamp(6.75rem, 6vw, 6rem);
    height: auto;
    margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}


/* =========================================================
   CARDS WRAPPER
   FLEXBOX
========================================================= */

.recovery .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    padding: 0;
}


/* =========================================================
   CARD - DESKTOP
========================================================= */

.recovery .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 25%;
    width: 25%;
    max-width: 25%;
    min-width: 0;
    padding: clamp(1.5rem, 2vw, 2rem) clamp(1rem, 2vw, 2rem) clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    background: transparent;
    border: 0;
    border-right: 1px solid #dfd5ca;
    transition: transform 0.3s ease;
}

.recovery .card:last-child {
    border-right: none;
}

.recovery .card:hover {
    transform: translateY(-0.4rem);
}

/* =========================================================
   ICON
========================================================= */

.recovery .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: clamp(5.75rem, 5vw, 4.5rem);
    height: clamp(5.75rem, 5vw, 4.5rem);
    margin: 0 auto 1.5rem;
}

.recovery .icon img {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    line-height: 1;
}



/* =========================================================
   CARD HEADING
========================================================= */

.recovery .card h2 {
    width: 100%;
    max-width: 100%;
    min-height: 4.7rem;
    margin: 0 0 1rem;
    padding: 0;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    overflow-wrap: break-word;
}


/* =========================================================
   LINE
========================================================= */

.recovery .line {
    flex: 0 0 auto;
    width: 3.125rem;
    height: 0.125rem;
    margin: 0 auto 1.25rem;
    background: #a97a2f;
    border-radius: 999px;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.recovery .card p {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem;
    padding: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    overflow-wrap: break-word;
}


/* =========================================================
   LEARN MORE
========================================================= */

.recovery .card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    max-width: 100%;
    font-family: "Poppins";
    font-size: clamp(0.7rem, 0.9vw, 0.8125rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.12rem;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.recovery .card a i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.recovery .card:hover a {
    color: #a97a2f;
}

.recovery .card:hover a i {
    transform: translateX(0.3rem);
}













/* =========================================================
   SECTION 3 — BANNER
========================================================= */

.banner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: min(100%, 120rem);
    min-height: 31.25rem;
    margin: clamp(2rem, 5vw, 5rem) auto;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 0 1 40%;
    min-width: 0;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
    background: #f6f1ea;
    box-sizing: border-box;
}


/* =========================================================
   GRADIENT BLEND
========================================================= */

.banner-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6.25rem;
    width: 6.25rem;
    height: 100%;
    background: linear-gradient(to right,
            #f6f3ec 0%,
            #f6f3ec 20%,
            rgba(246, 243, 236, 0.99) 35%,
            rgba(246, 243, 236, 0.97) 45%,
            rgba(246, 243, 236, 0.94) 55%,
            rgba(246, 243, 236, 0.88) 65%,
            rgba(246, 243, 236, 0.78) 75%,
            rgba(246, 243, 236, 0.62) 85%,
            rgba(246, 243, 236, 0.38) 92%,
            rgba(246, 243, 236, 0.18) 97%,
            rgba(246, 243, 236, 0) 100%);
    pointer-events: none;
    z-index: 3;
}


/* =========================================================
   HEADING
========================================================= */

.banner-content h1 {
    width: 100%;
    max-width: 35rem;
    margin: 0 0 1.25rem;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.banner-content h1 span {
    color: #a97a2f;
}


/* =========================================================
   FLOWER ICON
========================================================= */

.S3-flower-icon {
    width: clamp(6.25rem, 7vw, 6.25rem);
    margin: 0 0 1.25rem;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.banner-content p {
    width: 100%;
    max-width: 30rem;
    margin: 0 0 1.125rem;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 11.3vw, 00.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}

.banner-content p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   LEARN MORE
========================================================= */

.learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.8125rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.0625rem;
    text-decoration: none;
    color: #000;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.learn-more:hover {
    color: #a97a2f;
    transform: translateX(0.25rem);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.banner-image {
    position: relative;
    flex: 1 1 60%;
    width: 60%;
    min-width: 0;
    min-height: 31.25rem;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}


/* Optional subtle image movement */
.banner:hover .banner-image img {
    transform: scale(1.02);
}












/* =========================================================
   SECTION 4 — BANNER
========================================================= */
.banner-sec-4 {
    top: 20px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: min(100%, 120rem);
    height: clamp(31.25rem, 42vw, 40rem);
    min-height: 0;
    margin: -4.375rem auto 5rem;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   LEFT IMAGE
========================================================= */
.banner-image-4 {
    position: relative;
    flex: 0 1 60%;
    width: 60%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-image-4 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}


/* Subtle image effect */
.banner-sec-4:hover .banner-image-4 img {
    transform: scale(1.02);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.banner-content-sec-4 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 0 1 40%;
    width: 40%;
    min-width: 0;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
    background: #f6f1ea;
    box-sizing: border-box;
}


/* =========================================================
   REVERSE GRADIENT
========================================================= */

.banner-content-sec-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6.25rem;
    width: 6.25rem;
    height: 100%;
    background: linear-gradient(to left,
            #f6f3ec 0%,
            #f6f3ec 18%,
            rgba(246, 243, 236, 0.99) 30%,
            rgba(246, 243, 236, 0.97) 42%,
            rgba(246, 243, 236, 0.94) 54%,
            rgba(246, 243, 236, 0.88) 66%,
            rgba(246, 243, 236, 0.76) 78%,
            rgba(246, 243, 236, 0.55) 88%,
            rgba(246, 243, 236, 0.28) 95%,
            rgba(246, 243, 236, 0) 100%);
    pointer-events: none;
    z-index: 3;
}


/* =========================================================
   HEADING
========================================================= */

.banner-content-sec-4 h1 {
    width: 100%;
    max-width: 35rem;
    margin: 0 0 1.25rem;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.banner-content-sec-4 h1 span {
    color: #a97a2f;
}


/* =========================================================
   FLOWER ICON
========================================================= */

.S4-flower-icon {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0 0 1.25rem;
    object-fit: contain;
}


/* =========================================================
   MAIN PARAGRAPH
========================================================= */

.banner-content-sec-4 p {
    width: 100%;
    max-width: 34rem;
    margin: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}


/* =========================================================
   HIGHLIGHTED PARAGRAPH
========================================================= */

.banner-content-sec-4 p span {
    display: inline;
    font-family: "Times New Roman";
    font-size: clamp(1.1rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.3;
    color: #a97a2f;
}


/* =========================================================
   OPTIONAL LEARN MORE
========================================================= */

.learn-more-sec-4 {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.8125rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.0625rem;
    text-decoration: none;
    color: #000;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.learn-more-sec-4:hover {
    color: #a97a2f;
    transform: translateX(0.25rem);
}















/* =========================================================
   SECTION 5
========================================================= */

.section-5 {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-height: 31.25rem;
    margin-top: -5rem;
    background: var(--bg);
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTENT
========================================================= */
.section-5 .content {
    position: relative;
    z-index: 2;
    flex: 1 1 85%;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 4rem);
    box-sizing: border-box;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-5 .content h1 {
    width: 100%;
    margin: 0 0 0.75rem;
    padding: 0;
    text-align: center;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}


/* =========================================================
   FLOWER ICON
========================================================= */

.S5-flower-icon {
    display: block;
    width: clamp(3.75rem, 7vw, 6.25rem);
    height: auto;
    margin: 0 auto 1rem;
    object-fit: contain;
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.section-5 .content p {
    width: min(100%, 47.5rem);
    margin: 0 auto 1.25rem;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}


/* =========================================================
   TIMELINE
========================================================= */


.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.wave-svg {
    position: absolute;
    top: 0;
    left: -15%;
    width: 130%;
    height: 34px;
    z-index: 1;
}


/* 
  .timeline {
    position: relative;
    width: 100%;
    max-width: 56.25rem;
    margin: 0 auto;
    box-sizing: border-box;
} */


/* =========================================================
   WAVE
========================================================= */
/* 
.wave-svg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2.125rem;

    z-index: 1;

    overflow: visible;

    pointer-events: none;
} */


/* =========================================================
   NODES
========================================================= */

.nodes-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}


/* =========================================================
   INDIVIDUAL NODE
========================================================= */

.node {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}
.nodes-row .node:hover {
    transform: translateY(-0.4rem);
}


/* =========================================================
   TOP ICON
========================================================= */

.node-icon-top {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    position: relative;
    z-index: 3;
    box-shadow: 0 0.25rem 0.875rem rgba(60, 45, 20, 0.08);
}

.node-icon-top img {
    width: 2.2rem;
    height: 2.2rem;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

/* =========================================================
   CARD
========================================================= */

.sec-5-card {
    width: 100%;
    min-height: 13.75rem;
    padding: 1.25rem 1rem 1.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg);
    border: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 0.25rem 0.875rem rgba(60, 45, 20, 0.08);
    box-sizing: border-box;
}


/* =========================================================
   CARD ICON
========================================================= */

.card-icon {
    width: 4.125rem;
    height: 4.125rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: -0.5rem auto 0.5rem;

    flex-shrink: 0;
}

.card-icon img {
    width: 3.75rem;
    height: 3.75rem;

    max-width: 100%;
    max-height: 100%;
}


/* =========================================================
   CARD HEADING
========================================================= */

.sec-5-card h2 {
    width: 100%;
    margin: 0 0 0.625rem;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}


/* =========================================================
   CARD LINE
========================================================= */

.sec-5-card .line {
    width: 3.125rem;
    height: 0.125rem;
    flex-shrink: 0;
    margin: 0 auto 0.75rem;
    background: var(--gold);
    border-radius: 999px;
}


/* =========================================================
   CARD PARAGRAPH
========================================================= */

.sec-5-card p {
    width: 100%;
    margin: 0;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.65;
    color: #000;
}


/* =========================================================
   CTA
========================================================= */

.cta-wrap {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 1rem;
}


.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.625rem 1.75rem;

    background: #a97a2f;

    border: 0.125rem solid #a97a2f;
    border-radius: 0.3125rem;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 0.75rem;

    font-weight: 500;

    line-height: 1.2;

    letter-spacing: 0.0625rem;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.cta:hover {
    background: transparent;
    color: #a97a2f;
}


/* =========================================================
   RIGHT SIDE IMAGE
========================================================= */

.side-image {
    position: relative;
    flex: 0 0 15%;
    width: 15%;
    min-width: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    box-sizing: border-box;
}


.side-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to right,
            var(--bg),
            transparent 55%);

    pointer-events: none;
}












/* =========================================================
   SECTION 6
========================================================= */

.banner-SEC-6 {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 31.25rem;
    margin: 0 auto;
    margin-top: 0;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.banner-content6 {
    position: relative;
    z-index: 2;

    flex: 0 1 40%;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);

    background: #f6f3ec;

    box-sizing: border-box;
}


/* =========================================================
   GRADIENT BLEND
========================================================= */

.banner-content6::after {
    content: "";
    position: absolute;
    right: -6.25rem;
    width: 6.25rem;
    height: 100%;

    background: linear-gradient(to right,
            #f6f3ec 0%,
            #f6f3ec 20%,
            rgba(246, 243, 236, 0.99) 35%,
            rgba(246, 243, 236, 0.97) 45%,
            rgba(246, 243, 236, 0.94) 55%,
            rgba(246, 243, 236, 0.88) 65%,
            rgba(246, 243, 236, 0.78) 75%,
            rgba(246, 243, 236, 0.62) 85%,
            rgba(246, 243, 236, 0.38) 92%,
            rgba(246, 243, 236, 0.18) 97%,
            rgba(246, 243, 236, 0) 100%);

    pointer-events: none;

    z-index: 3;
}


/* =========================================================
   HEADING
========================================================= */

.banner-content6 h1 {
    width: 100%;
    max-width: 35rem;
    margin: 0 0 1.25rem;
    font-family: "Times New Roman";
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: #222;
    box-sizing: border-box;
}


.banner-content6 h1 span {
    color: #b08a4e;
    font-style: italic;
}


/* =========================================================
   FLOWER ICON
========================================================= */

.S6-flower-icon {
    display: block;
    width: clamp(4rem, 7vw, 6.25rem);
    height: auto;
    margin: 0 0 1.25rem;
    object-fit: contain;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.banner-content6 p {
    width: 100%;
    max-width: 32rem;
    margin: 0 0 1rem;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    box-sizing: border-box;
}


.banner-content6 p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   BUTTON WRAPPER
========================================================= */

.sec6-btn {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}


/* =========================================================
   BUTTON
========================================================= */

.btn6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.75rem;
    background: #a97a2f;
    border: 0.125rem solid #a97a2f;
    border-radius: 0.3125rem;
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.0625rem;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    box-sizing: border-box;
}


.btn6:hover {
    background: transparent;

    color: #a97a2f;

    transform: translateY(-0.125rem);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.banner-SEC-6 .banner-image {
    position: relative;
    flex: 1 1 60%;
    width: 60%;
    min-width: 0;
    min-height: 31.25rem;
    overflow: hidden;
    box-sizing: border-box;
}


.banner-SEC-6 .banner-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}


/* Optional image hover */

.banner-SEC-6:hover .banner-image img {
    transform: scale(1.02);
}














/* =========================================================
   SECTION 7 — FOOTER / HEADER BAR
========================================================= */

.header-bar {
    width: 100%;
    min-height: 55px;
    background: #25261f;
    margin: 0 auto;
    padding: 10px 5.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.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;
}


/* =========================================================
   TAGLINE
========================================================= */

.tagline {
    color: #a97a2f;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 4px;

    text-align: center;
}

.tagline .dot {
    color: #a97a2f;

    flex-shrink: 0;
}


/* =========================================================
   PHONE
========================================================= */

.phone {
    color: #f1e9dc;

    font-size: 12px;

    letter-spacing: 1px;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
















/* =========================================================
   COMPLETE RESPONSIVE CSS
   ADD THIS AT THE VERY END OF YOUR ORIGINAL CSS
========================================================= */


/* =========================================================
   DEFAULT HAMBURGER STATE
   Hamburger is hidden everywhere by default.
   It will ONLY appear at 480px and below.
========================================================= */

.hamburger {
    display: none;
}


/* =========================================================
   GENERAL RESPONSIVE SAFETY
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* =========================================================
   LARGE LAPTOP
   1200px
========================================================= */

@media (max-width: 1200px) {

    /* =========================
       NAVBAR
    ========================= */

    .navbar {
        width: 92%;
    }

    .logo {
        width: 175px;
    }

    .nav-right {
        gap: 22px;
    }

    .nav-links {
        gap: 25px;
    }


    /* =========================
       HERO
    ========================= */

    .hero-content {
        width: 78%;
    }

    .Hero-logo {
        width: clamp(280px, 28vw, 350px);
    }

    .hero-text {
        width: min(500px, 90%);
    }


    /* =========================
       SECTION 3
    ========================= */

    .banner-content,
    .banner-content-sec-4,
    .banner-content6 {
        padding-left: clamp(1.5rem, 4vw, 3rem);
        padding-right: clamp(1.5rem, 4vw, 3rem);
    }


    /* =========================
       SECTION 5
    ========================= */

    .section-5 .content {
        width: 88%;
        flex-basis: 88%;
    }

    .side-image {
        width: 12%;
        flex-basis: 12%;
    }
}


/* =========================================================
   TABLET
   992px
========================================================= */

@media (max-width: 992px) {

    /* =====================================================
       NAVBAR
       IMPORTANT:
       Desktop navbar STILL visible on tablet.
    ===================================================== */

    .hero-bg {
    object-fit: cover;
}
    .navbar {
        width: 90%;
        padding: 14px 0;
    }

    .logo {
        width: 155px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 18px;

        position: static;

        width: auto;
        padding: 0;

        background: transparent;
        border: none;
        border-radius: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(15px, 2.5vw, 25px);
    }

    .nav-links a {
        font-size: clamp(10px, 1.2vw, 12px);
    }

    .nav-btn {
        display: inline-block;
        font-size: clamp(10px, 1.2vw, 12px);
        padding: 9px clamp(16px, 2vw, 22px);
    }

    /* Hamburger MUST remain hidden on tablet */
    .hamburger {
        display: none;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        margin-top: -70px;
        width: 88%;
        min-height: calc(100vh - 90px);
    }

    .Hero-logo {
        width: clamp(250px, 30vw, 300px);
        margin-top: -30px;
    }

    .hero-text {
        width: min(470px, 90%);
    }

    .hero-text h1 {
        font-size: clamp(23px, 3vw, 28px);
    }

    .hero-text h2 {
        font-size: clamp(11px, 1.4vw, 14px);
        margin-top: -28px;
    }

    .hero-text p {
        width: min(380px, 90%);
        font-size: clamp(10px, 1.2vw, 12px);
    }

    .H-flower-icon {
        width: clamp(70px, 9vw, 100px);
    }

    .primary-btn,
    .secondary-btn {
        font-size: clamp(10px, 1.2vw, 12px);
        padding: 9px clamp(18px, 2.5vw, 28px);
    }


    /* =====================================================
       RECOVERY
    ===================================================== */

    .recovery {
        margin-top: -25px;
    }

    .recovery .container {
        width: 94%;
    }

    .recovery .section-title {
        font-size: clamp(1.8rem, 3vw, 2.75rem);
    }

    .recovery .card {
        flex: 1 1 50%;
        width: 50%;
        max-width: 50%;
    }

    .recovery .card:nth-child(2) {
        border-right: none;
    }

    .recovery .card:nth-child(1),
    .recovery .card:nth-child(2) {
        border-bottom: 1px solid #dfd5ca;
    }


    /* =====================================================
       SECTION 3
       KEEP LEFT/RIGHT ON TABLET
    ===================================================== */

    .banner {
        min-height: 28rem;
    }

    .banner-content {
        flex: 0 1 45%;
        padding: clamp(2rem, 4vw, 3rem);
    }

    .banner-image {
        flex: 1 1 55%;
        width: 55%;
        min-height: 28rem;
    }

    .banner-content::after {
        right: -4rem;
        width: 4rem;
    }

    .banner-content h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .banner-content p {
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }


    /* =====================================================
       SECTION 4
       KEEP IMAGE LEFT + TEXT RIGHT
    ===================================================== */

    .banner-sec-4 {
        height: clamp(30rem, 50vw, 36rem);
        margin-top: -2rem;
    }

    .banner-image-4 {
        flex: 0 1 55%;
        width: 55%;
    }

    .banner-content-sec-4 {
        flex: 0 1 45%;
        width: 45%;
        padding: clamp(2rem, 4vw, 3rem);
    }

    .banner-content-sec-4::before {
        left: -4rem;
        width: 4rem;
    }

    .banner-content-sec-4 h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .banner-content-sec-4 p {
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }


    /* =====================================================
       SECTION 5
    ===================================================== */

    .section-5 {
        min-height: auto;
    }

    .section-5 .content {
        width: 100%;
        flex-basis: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .side-image{
        display: none;
    }
    

    .section-5 .content h1 {
        font-size: clamp(1.9rem, 4vw, 2.6rem);
    }

    .section-5 .content > p {
        font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    }

    .timeline {
        max-width: 700px;
    }

    .nodes-row {
        gap: 0.6rem;
    }

    .sec-5-card {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .sec-5-card h3 {
        font-size: clamp(0.9rem, 1.4vw, 1.2rem);
    }

    .sec-5-card p {
        font-size: clamp(0.6rem, 0.9vw, 0.8rem);
    }


    /* =====================================================
       SECTION 6
       KEEP LEFT/RIGHT ON TABLET
    ===================================================== */

    .banner-SEC-6 {
        min-height: 28rem;
    }

    .banner-content6 {
        flex: 0 1 45%;
        padding: clamp(2rem, 4vw, 3rem);
    }

    .banner-SEC-6 .banner-image {
        flex: 1 1 55%;
        width: 55%;
        min-height: 28rem;
    }

    .banner-content6::after {
        right: -4rem;
        width: 4rem;
    }

    .banner-content6 h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .banner-content6 p {
        font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .header-bar {
        padding-left: 4vw;
        padding-right: 4vw;
        gap: 20px;
    }

    .footer-logo img {
        width: clamp(90px, 10vw, 120px);
    }

    .tagline {
        font-size: clamp(10px, 1.4vw, 14px);
    }

    .phone {
        font-size: clamp(9px, 1.2vw, 12px);
    }
}


/* =========================================================
   SMALL TABLET
   768px
   STILL DESKTOP NAVBAR
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       NAVBAR
       STILL DESKTOP STYLE
    ===================================================== */

    .navbar {
        display: flex;
        justify-content: space-between;
        width: 92%;
        padding: 10px 0;
    }

    .logo {
        width: clamp(100px, 30vw, 125px);
    }

    /* HAMBURGER NOW APPEARS */
    .hamburger {
        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;
    }


    .hamburger span {
        width: 17px;
        height: 1.5px;

        background: #76501f;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    /* DESKTOP NAV HIDDEN */
    .nav-right {
        position: absolute;
        top: 100%;
        width: 100%;
        left: 15px;
        right: 15px;
        margin-left: -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;
    }

    /* OPEN MENU */
    .nav-right.active {
        display: flex;
        animation: mobileMenuOpen 0.25s ease forwards;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        
        border-bottom: 1px solid #e5dccf;
        width: 100%;

        padding: 11px 10px;

        font-size: clamp(11px, 3vw, 13px);

        color: #2e2a25;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(169, 122, 47, 0.08);
    }

    .nav-btn {
        display: block;

        width: 100%;

        margin-top: 7px;

        padding: 10px 15px;

        text-align: center;

        font-size: clamp(10px, 2.8vw, 12px);
    }


    /* HAMBURGER -> X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }



    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        margin-top: -40px;
        width: 90%;
        min-height: calc(100svh - 80px);
    }

    .Hero-logo {
        width: clamp(220px, 22vw, 280px);
    }

    .hero-text {
        width: min(450px, 90%);
    }

    .hero-text h1 {
        font-size: clamp(21px, 3vw, 26px);
    }

    .hero-text h2 {
        font-size: clamp(10px, 1.2vw, 13px);
        margin-top: -20px;
    }

    .hero-text p {
        width: min(360px, 95%);
        font-size: clamp(9px, 1.2vw, 11px);
    }

    .H-flower-icon {
        width: clamp(65px, 8vw, 85px);
    }
    .primary-btn,
    .secondary-btn {
        margin-top: -10px;
        font-size: clamp(7px, 1vw, 9px);
        padding: 9px clamp(15px, 1.5vw, 25px);
    }


    /* =====================================================
       RECOVERY
    ===================================================== */

    .recovery {
        margin-top: -15px;
    }

    .recovery .container {
        width: 96%;
        padding-inline: 12px;
    }

    .recovery .section-title {
        font-size: clamp(1.7rem, 5vw, 2.2rem);
    }

    .recovery .S2-flower-icon {
        width: clamp(55px, 9vw, 72px);
    }

    .recovery .card {
        padding: clamp(1.2rem, 3vw, 1.8rem)
                 clamp(0.7rem, 2vw, 1.2rem)
                 clamp(1.5rem, 3vw, 2rem);
    }

    .recovery .card h1 {
        min-height: auto;
        font-size: clamp(1.25rem, 3vw, 1.65rem);
    }

    .recovery .card p {
        font-size: clamp(0.68rem, 1.4vw, 0.8rem);
    }

    .recovery .card a {
        font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    }


    /* =====================================================
       SECTION 3
       STILL LEFT / RIGHT
    ===================================================== */

    .banner {
        min-height: 25rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .banner-content {
        flex-basis: 45%;
        padding: clamp(1.8rem, 4vw, 2.5rem);
    }

    .banner-image {
        flex-basis: 55%;
        width: 55%;
        min-height: 25rem;
    }

    .banner-content h2 {
        font-size: clamp(1.65rem, 4.5vw, 2.3rem);
    }

    .banner-content p {
        font-size: clamp(0.72rem, 1.5vw, 0.88rem);
    }

    .S3-flower-icon {
        width: clamp(4rem, 8vw, 5rem);
    }


    /* =====================================================
       SECTION 4
       STILL IMAGE LEFT / TEXT RIGHT
    ===================================================== */

    .banner-sec-4 {
        height: clamp(27rem, 55vw, 32rem);
        margin-bottom: 3rem;
    }

    .banner-image-4 {
        flex-basis: 55%;
        width: 55%;
    }

    .banner-content-sec-4 {
        flex-basis: 45%;
        width: 45%;
        padding: clamp(1.8rem, 4vw, 2.5rem);
    }

    .banner-content-sec-4 h2 {
        font-size: clamp(1.65rem, 4.5vw, 2.3rem);
    }

    .banner-content-sec-4 p {
        font-size: clamp(0.72rem, 1.5vw, 0.88rem);
    }

    .S4-flower-icon {
        width: clamp(4rem, 8vw, 5rem);
    }


    /* =====================================================
       SECTION 5
    ===================================================== */

    .section-5 {
        margin-top: 0;
    }

    .section-5 .content {
        width: 92%;
        flex-basis: 92%;
        padding: 2.5rem 1.2rem;
    }

    .side-image {
        width: 8%;
        flex-basis: 8%;
    }

    .section-5 .content h1 {
        font-size: clamp(1.7rem, 5vw, 2.3rem);
    }

    .section-5 .content > p {
        font-size: clamp(0.68rem, 1.5vw, 0.82rem);
    }

    .timeline {
        max-width: 620px;
    }

    .nodes-row {
        gap: 0.45rem;
    }

    .node-icon-top {
        width: clamp(2rem, 4vw, 2.5rem);
        height: clamp(2rem, 4vw, 2.5rem);
    }


    .sec-5-card {
        min-height: 11rem;
        padding: 0.8rem 0.45rem;
    }

    .card-icon {
        width: clamp(2.8rem, 6vw, 3.75rem);
        height: clamp(2.8rem, 6vw, 3.75rem);
    }

    .card-icon img {
        width: 90%;
        height: 90%;
    }

    .sec-5-card h3 {
        font-size: clamp(0.78rem, 1.7vw, 1rem);
    }

    .sec-5-card p {
        font-size: clamp(0.55rem, 1.1vw, 0.7rem);
    }

    .node-icon-top img {
    width: 1.5rem;
    height: 1.5rem;
    max-width: none;
    max-height: none;
    object-fit: contain;
}


    /* =====================================================
       SECTION 6
       STILL LEFT / RIGHT
    ===================================================== */

    .banner-SEC-6 {
        min-height: 25rem;
    }

    .banner-content6 {
        flex-basis: 45%;
        padding: clamp(1.8rem, 4vw, 2.5rem);
    }

    .banner-SEC-6 .banner-image {
        flex-basis: 55%;
        width: 55%;
        min-height: 25rem;
    }

    .banner-content6 h2 {
        font-size: clamp(1.65rem, 4.5vw, 2.3rem);
    }

    .banner-content6 p {
        font-size: clamp(0.7rem, 1.4vw, 0.85rem);
    }

    .S6-flower-icon {
        width: clamp(4rem, 8vw, 5rem);
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .header-bar {
        padding: 12px 4vw;
        gap: 15px;
    }

    .footer-logo img {
        width: clamp(85px, 12vw, 105px);
    }

    .tagline {
        font-size: clamp(9px, 1.6vw, 12px);
    }

    .phone {
        font-size: clamp(8px, 1.4vw, 10px);
    }
}


/* =========================================================
   MOBILE ONLY
   480px
========================================================= */

@media (max-width: 480px) {

    /* =====================================================
       NAVBAR
       DESKTOP NAVIGATION HIDDEN
       HAMBURGER VISIBLE
    ===================================================== */

    .navbar {
        display: flex;
        justify-content: space-between;
        width: 92%;
        padding: 10px 0;
    }

    .logo {
        width: clamp(100px, 30vw, 125px);
    }

    /* HAMBURGER NOW APPEARS */
    .hamburger {
        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;
    }


    .hamburger span {
        width: 17px;
        height: 1.5px;

        background: #76501f;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    /* DESKTOP NAV HIDDEN */
    .nav-right {
        position: absolute;
        top: 100%;
        width: 100%;
        left: 15px;
        right: 15px;
        margin-left: -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;
    }

    /* OPEN MENU */
    .nav-right.active {
        display: flex;
        animation: mobileMenuOpen 0.25s ease forwards;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        
        border-bottom: 1px solid #e5dccf;
        width: 100%;

        padding: 11px 10px;

        font-size: clamp(11px, 3vw, 13px);

        color: #2e2a25;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(169, 122, 47, 0.08);
    }

    .nav-btn {
        display: block;

        width: 100%;

        margin-top: 7px;

        padding: 10px 15px;

        text-align: center;

        font-size: clamp(10px, 2.8vw, 12px);
    }


    /* HAMBURGER -> X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: 92%;

        min-height: calc(100svh - 70px);

        padding-top: 15px;
        padding-bottom: 30px;
    }

    .Hero-logo {
        width: clamp(175px, 42vw, 220px);
        margin: -5px auto 8px;
    }

    .hero-text {
        margin-top: -20px;
        width: 100%;
        max-width: 400px;
    }

    /* .tag {
        padding: 7px 13px;
        font-size: clamp(8px, 2.4vw, 10px);
        letter-spacing: 1px;
        margin-bottom: 12px;
    } */

    .hero-text h1 {
        font-size: clamp(19px, 3vw, 24px);
        line-height: 1.25;
    }

    .hero-text h2 {
        font-size: clamp(9px, 1.5vw, 11px);
        margin-top: -12px;
    }

    .hero-text p {
        width: 94%;
        font-size: clamp(9px, 1.5vw, 11px);
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .H-flower-icon {
        width: clamp(55px, 17vw, 70px);
    }

    .primary-btn,
    .secondary-btn {
        margin-top: -10px;
        font-size: clamp(7px, 1vw, 9px);
        padding: 9px clamp(15px, 1.5vw, 25px);
    }


    /* =====================================================
       RECOVERY
    ===================================================== */

    .recovery {
        margin-top: -10px;
        padding-bottom: 2.5rem;
    }

    .recovery .container {
        width: 100%;
        padding-inline: 12px;
    }

    .recovery .section-title {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
        line-height: 1.25;
    }

    .recovery .S2-flower-icon {
        width: clamp(50px, 15vw, 65px);
        margin-bottom: 1rem;
    }

    /* One card per row on mobile */
    .recovery .cards {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .recovery .card {
        flex: none;

        width: 100%;
        max-width: 100%;

        padding:
            clamp(1.2rem, 5vw, 1.6rem)
            15px
            clamp(1.4rem, 5vw, 1.8rem);

        border-right: none !important;
        border-bottom: 1px solid #dfd5ca;
    }

    .recovery .card:last-child {
        border-bottom: none;
    }

    .recovery .card h1 {
        min-height: auto;

        font-size: clamp(1.25rem, 6vw, 1.5rem);

        margin-bottom: 0.8rem;
    }

    .recovery .card p {
        width: min(100%, 320px);

        font-size: clamp(0.68rem, 2.6vw, 0.76rem);

        line-height: 1.7;
    }

    .recovery .card a {
        font-size: clamp(0.58rem, 2.3vw, 0.7rem);
    }

    .recovery .icon {
        width: clamp(3.8rem, 18vw, 4.5rem);
        height: clamp(3.8rem, 18vw, 4.5rem);

        margin-bottom: 1rem;
    }


    /* =====================================================
       SECTION 3
       MOBILE:
       IMAGE FIRST
       TEXT SECOND
    ===================================================== */

    .banner {
        display: flex;

        flex-direction: column;

        width: 100%;

        min-height: auto;

        margin:
            clamp(1.5rem, 5vw, 2rem)
            auto
            clamp(2rem, 7vw, 3rem);
    }

    .banner-image {
        order: 1;

        width: 100%;
        flex: none;

        height: clamp(220px, 65vw, 340px);

        min-height: 0;
        max-height: none;
    }

    .banner-content {
        order: 2;

        width: 100%;
        flex: none;

        align-items: center;

        text-align: center;

        padding:
            clamp(2rem, 8vw, 3rem)
            clamp(18px, 7vw, 35px);
    }

    .banner-content::after {
        display: none;
    }

    .banner-content h2 {
        width: 100%;

        font-size: clamp(1.65rem, 8vw, 2.2rem);

        line-height: 1.2;

        margin-bottom: 1rem;
    }

    .S3-flower-icon {
        width: clamp(55px, 16vw, 75px);

        margin-left: auto;
        margin-right: auto;
    }

    .banner-content p {
        width: 100%;

        font-size: clamp(0.7rem, 2.8vw, 0.82rem);

        line-height: 1.65;
    }

    .learn-more {
        margin-left: auto;
        margin-right: auto;

        font-size: clamp(0.58rem, 2.4vw, 0.7rem);
    }


    /* =====================================================
       SECTION 4
       MOBILE:
       IMAGE FIRST
       TEXT SECOND
    ===================================================== */

    .banner-sec-4 {
        display: flex;

        flex-direction: column;

        width: 100%;

        height: auto;

        margin:
            0
            auto
            clamp(2rem, 7vw, 3rem);

        top: 0;
    }

    .banner-image-4 {
        order: 1;

        width: 100%;
        flex: none;

        height: clamp(220px, 65vw, 340px);

        min-height: 0;
    }

    .banner-content-sec-4 {
        order: 2;

        width: 100%;
        flex: none;

        align-items: center;

        text-align: center;

        padding:
            clamp(2rem, 8vw, 3rem)
            clamp(18px, 7vw, 35px);
    }

    .banner-content-sec-4::before {
        display: none;
    }

    .banner-content-sec-4 h2 {
        width: 100%;

        font-size: clamp(1.65rem, 8vw, 2.2rem);

        line-height: 1.2;

        margin-bottom: 1rem;
    }

    .S4-flower-icon {
        width: clamp(55px, 16vw, 75px);

        margin-left: auto;
        margin-right: auto;
    }

    .banner-content-sec-4 p {
        width: 100%;

        font-size: clamp(0.7rem, 2.8vw, 0.82rem);

        line-height: 1.65;
    }

    .banner-content-sec-4 p span {
        font-size: clamp(0.78rem, 3vw, 0.95rem);
    }

    .learn-more-sec-4 {
        margin-left: auto;
        margin-right: auto;

        font-size: clamp(0.58rem, 2.4vw, 0.7rem);
    }


    /* =====================================================
       SECTION 5
    ===================================================== */

    .section-5 {
        display: block;
        width: 100%;
        min-height: auto;
        margin-top: 0;
    }

    .section-5 .content {
        width: 100%;
        padding:
            clamp(2rem, 8vw, 2.7rem)
            clamp(12px, 5vw, 22px);
    }

    .side-image {
        display: none;
    }

    .section-5 .content h1 {
        font-size: clamp(1.55rem, 8vw, 2rem);
        line-height: 1.2;
    }

    .section-5 .content > p {
        width: 100%;
        font-size: clamp(0.65rem, 2.5vw, 0.75rem);
        line-height: 1.7;
    }

    .timeline {
        width: 100%;
        max-width: 100%;
    }

    .wave-svg {
        display: none;
    }

    /* 2 columns on mobile */
    .nodes-row {
        display: grid;

        grid-template-columns:
            repeat(1, minmax(0, 1fr));

        gap: clamp(10px, 3vw, 16px);
    }

    .node {
        width: 100%;
        min-width: 0;
    }

    .node-icon-top {
        width: clamp(32px, 9vw, 40px);
        height: clamp(32px, 9vw, 40px);
    }


    .sec-5-card {
        width: 100%;
        min-height: clamp(165px, 45vw, 190px);
        padding:
            clamp(10px, 3vw, 15px)
            clamp(5px, 2vw, 10px);
    }

    .card-icon {
        width: clamp(40px, 11vw, 50px);
        height: clamp(40px, 11vw, 50px);

        margin-top: -4px;
    }

    .card-icon img {
        width: 90%;
        height: 90%;
    }

    .sec-5-card h3 {
        font-size: clamp(0.75rem, 3.2vw, 0.9rem);

        line-height: 1.3;
    }

    .sec-5-card p {
        font-size: clamp(0.55rem, 2.3vw, 0.65rem);

        line-height: 1.55;
    }

    .cta-wrap {
        margin-top: 1rem;
    }

    .cta {
        font-size: clamp(0.58rem, 2.4vw, 0.68rem);

        padding:
            0.5rem
            clamp(0.9rem, 4vw, 1.3rem);
    }
        .node-icon-top img {
    width: 1.5rem;
    height: 1.5rem;
    max-width: none;
    max-height: none;
    object-fit: contain;
}


    /* =====================================================
       SECTION 6
       MOBILE:
       IMAGE FIRST
       TEXT SECOND
    ===================================================== */

    .banner-SEC-6 {
        display: flex;

        flex-direction: column;

        width: 100%;

        min-height: auto;
    }

    .banner-SEC-6 .banner-image {
        order: 1;

        width: 100%;
        flex: none;

        height: clamp(220px, 65vw, 340px);

        min-height: 0;
    }

    .banner-content6 {
        order: 2;

        width: 100%;
        flex: none;

        align-items: center;

        text-align: center;

        padding:
            clamp(2rem, 8vw, 3rem)
            clamp(18px, 7vw, 35px);
    }

    .banner-content6::after {
        display: none;
    }

    .banner-content6 h2 {
        width: 100%;

        font-size: clamp(1.65rem, 8vw, 2.2rem);

        line-height: 1.2;

        margin-bottom: 1rem;
    }

    .S6-flower-icon {
        width: clamp(55px, 16vw, 75px);

        margin-left: auto;
        margin-right: auto;
    }

    .banner-content6 p {
        width: 100%;

        font-size: clamp(0.68rem, 2.7vw, 0.8rem);

        line-height: 1.65;
    }

    .sec6-btn {
        justify-content: center;

        margin-top: 1.3rem;
    }

    .btn6 {
        font-size: clamp(0.58rem, 2.4vw, 0.68rem);

        padding:
            0.5rem
            clamp(0.9rem, 4vw, 1.3rem);
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .header-bar {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding:
            16px
            15px;

        gap: 9px;
    }

    .footer-logo {
        width: auto;
    }

    .footer-logo img {
        width: clamp(75px, 23vw, 90px);
    }

    .tagline {
        font-size: clamp(8px, 2.6vw, 10px);

        letter-spacing: 1px;
    }

    .phone {
        font-size: clamp(8px, 2.4vw, 9px);
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   360px
========================================================= */

@media (max-width: 360px) {

    /* =========================
       NAVBAR
    ========================= */

    .navbar {
        display: flex;
        justify-content: space-between;
        width: 92%;
        padding: 10px 0;
    }

    .logo {
        width: clamp(100px, 30vw, 125px);
    }

    /* HAMBURGER NOW APPEARS */
    .hamburger {
        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;
    }


    .hamburger span {
        width: 17px;
        height: 1.5px;

        background: #76501f;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    /* DESKTOP NAV HIDDEN */
    .nav-right {
        position: absolute;
        top: 100%;
        width: 100%;
        left: 15px;
        right: 15px;
        margin-left: -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;
    }

    /* OPEN MENU */
    .nav-right.active {
        display: flex;
        animation: mobileMenuOpen 0.25s ease forwards;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        
        border-bottom: 1px solid #e5dccf;
        width: 100%;

        padding: 11px 10px;

        font-size: clamp(11px, 3vw, 13px);

        color: #2e2a25;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(169, 122, 47, 0.08);
    }

    .nav-btn {
        display: block;

        width: 100%;

        margin-top: 7px;

        padding: 10px 15px;

        text-align: center;

        font-size: clamp(10px, 2.8vw, 12px);
    }


    /* HAMBURGER -> X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }



    /* =========================
       HERO
    ========================= */

    .hero-content {
        width: 94%;
    }

    .Hero-logo {
        width: clamp(165px, 52vw, 190px);
    }

    .hero-text h1 {
        font-size: clamp(17px, 3vw, 21px);
    }

    .hero-text h2 {
        font-size: clamp(8px, 2.5vw, 9px);
    }

    .hero-text p {
        font-size: clamp(8px, 2.5vw, 9px);
    }

    .primary-btn,
    .secondary-btn {
        margin-top: -10px;
        font-size: clamp(7px, 1vw, 9px);
        padding: 9px clamp(15px, 1.5vw, 25px);
    }


    /* =========================
       RECOVERY
    ========================= */

    .recovery .section-title {
        font-size: clamp(1.35rem, 7vw, 1.5rem);
    }

    .recovery .card h1 {
        font-size: clamp(1.2rem, 6vw, 1.35rem);
    }

    .recovery .card p {
        font-size: 0.67rem;
    }


    /* =========================
       BANNERS
    ========================= */

    .banner-content,
    .banner-content-sec-4,
    .banner-content6 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-content h2,
    .banner-content-sec-4 h2,
    .banner-content6 h2 {
        font-size: clamp(1.5rem, 8vw, 1.7rem);
    }

    .banner-content p,
    .banner-content-sec-4 p,
    .banner-content6 p {
        font-size: 0.68rem;
    }

    .banner-image,
    .banner-image-4,
    .banner-SEC-6 .banner-image {
        height: 220px;
    }


    /* =========================
       SECTION 5
    ========================= */

    .section-5 .content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-5 .content h1 {
        font-size: 1.5rem;
    }

    .section-5 .content > p {
        font-size: 0.63rem;
    }

    .nodes-row {
        gap: 8px;
    }

    .sec-5-card {
        min-height: 155px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .sec-5-card h3 {
        font-size: 0.72rem;
    }

    .sec-5-card p {
        font-size: 0.53rem;
    }

    .node-icon-top {
        width: 30px;
        height: 30px;
    }

}

