/*=========================================================
                GOOGLE FONT
=========================================================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');


/*=========================================================
                ROOT VARIABLES
=========================================================*/

:root {
    /* Brand */
    --primary: #4C5D4B;
    --primary-dark: #3F4E3E;

    /* Background */
    --bg-main: #E3DEC8;
    --bg-light: #F7F4EA;

    /* Text */
    --heading: #3D3935;
    --text: #7A7168;
    --text-dark: #3D3935;

    /* White */
    --white: #ffffff;

    /* Border */
    --border: rgba(255, 255, 255, .18);

    /* Radius */
    --radius: 50px;
    --card-radius: 16px;

    /* Shadow */
    --shadow: 0 15px 40px rgba(0, 0, 0, .15);

    /* Font */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}


/*=========================================================
                RESET & BASE
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text);
    overflow-x: hidden;
    /* Prevents screen breaking horizontal scrollbars */
}


/*=========================================================
                NAVBAR (CLEAN TRANSPARENT)
=========================================================*/

.navbar {
    z-index: 1000 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 500;
}

.navbar-brand span {
    font-family: var(--font-heading);
}

@media (max-width: 767px) {
    .navbar-brand img {
        width: clamp(110px, 32vw, 150px) !important;
        height: auto;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    position: relative;
    font-weight: 400;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Static Underline on Hover and Active States */
.nav-link:hover,
.nav-link.active,
.mega-dropdown-wrapper:hover>.nav-link {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}


/*=========================================================
                BUTTON STYLES
=========================================================*/

.btn-skin {
    background: #4C5D4BE5;
    color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15);
    width: 137px;
    opacity: 0.9;
    font-weight: 500;
    height: 46px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn-skin:hover {
    transform: scale(1.03);
    transition: 0.3s ease-in-out;
}

.btn-skin-mobile {
    background: #4C5D4BE5;
    color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15);
    opacity: 0.9;
    font-weight: 500;
    height: 38px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 12px;
    line-height: 24px;
}

.btn-skin-mobile:hover {
    background: #4C5D4BE5;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}


.btn-skin:hover {
    background: #334a32;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}


/*=========================================================
                HERO SECTION & SLIDER
=========================================================*/

.hero-section {
    position: relative;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#hero-dynamic-text {
    font-style: italic;
    font-weight: 500;
    display: inline-block;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

#hero-dynamic-text.text-fade-out {
    opacity: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.3s ease, transform 6s linear;
}

/* desktop / laptop */
.hero-slide:nth-child(1) {
    background-image: url(../images/hero-1.png);
}

.hero-slide:nth-child(2) {
    background-image: url(../images/hero-2.png);
}

.hero-slide:nth-child(3) {
    background-image: url(../images/hero-3.png);
}

.hero-slide {
    background-position: center center;
}

/* mobile */
@media (max-width: 767.98px) {
    .hero-slide:nth-child(1) {
        background-image: url(../images/hero-mobile-1.png);
    }

    .hero-slide:nth-child(2) {
        background-image: url(../images/hero-mobile-2.png);
    }

    .hero-slide:nth-child(3) {
        background-image: url(../images/hero-mobile-3.png);
    }

    .hero-slide {
        background-position: center top;
    }
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.2rem, 7vw, 5rem);
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, .88);
    font-weight: 400;
    line-height: 29.25px;
    width: 590px;
}

.hero-section .btn {
    width: 325px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: relative;

    /* 1. Pill shape */
    border-radius: 50px !important;
    border: none !important;

    /* 2. Transparent background so pseudo-element border shows correctly */
    background: transparent !important;

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

/* Rounded Pill Gradient Border Layer */
.hero-section .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(100deg, rgb(255 255 255 / 93%) 0%, rgb(255 255 255 / 60%) 40%, rgb(255 255 255 / 0%) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* Button Fill Background Layer */
.hero-section .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(282deg, rgb(76 93 75 / 80%) 0%, rgb(76 93 75 / 25%) 100%);
    z-index: -1;
    transition: all 0.35s ease;
}

.hero-section .btn-skin:hover::after {
    background: linear-gradient(282deg,
            rgb(55 72 54 / 90%) 0%,
            rgba(55, 72, 54, 0.86) 100%);
}

.hero-stats {
    color: #fff;
    width: 80%;
}

.hero-stats h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 700;
}

.hero-stats p {
    margin: 0;
    color: #FFFFFFB2;
    font-size: 14px;
    font-weight: 400;
}

.btn:hover {
    color: white !important;
}

.hero-section hr {
    border-color: #ffffffcf;
    width: 75%;
}

.position-fixed a {
    transition: .35s;
    box-shadow: var(--shadow);
}

.position-fixed a:hover {
    transform: translateY(-5px);
}


/*=========================================================
        MOBILE & TABLET VIEWPORTS (< 991px)
=========================================================*/

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(32, 25, 15, 0.95);
        padding: 5rem 2rem 2rem 2rem;
        z-index: 9999;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        display: block !important;
    }

    .btn-mobile-shop {
        font-size: 0.85rem;
        padding: 6px 16px !important;
        white-space: nowrap;
        display: inline-flex !important;
    }

    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-toggler {
        position: relative;
        z-index: 10000;
    }

    .navbar-nav {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .custom-mega-menu {
        display: none;
        width: 100%;
        padding: 0.5rem 0 1rem 0.5rem;
    }

    .custom-mega-menu.open-menu {
        display: block;
    }

    /* Vertical layout reset for mobile */
    .mega-menu-inner,
    .menu-panels-middle,
    .menu-panels-right {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        position: relative !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        box-shadow: none !important;
    }

    .menu-column-left {
        width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .menu-column-middle,
    .menu-column-right {
        display: none;
        width: 100% !important;
        max-width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 0.75rem 1.25rem !important;
        border-radius: 8px !important;
        margin: 0.5rem 0 !important;
        float: none !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        border: none !important;
    }

    .menu-column-middle.show-panel,
    .menu-column-right.show-panel {
        display: block !important;
    }

    .category-link,
    .sub-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.1rem;
        padding: 0.5rem 0;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100% !important;
    }

    .sub-link {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .category-link i,
    .sub-link i {
        transition: transform 0.25s ease;
    }

    .category-link.active i,
    .sub-link.active i {
        transform: rotate(180deg);
    }

    .item-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        display: block;
        text-decoration: none;
    }

    /* .hero-title {
        font-size: 2.8rem;
    } */

    .hero-title {
        font-size: 3rem;
    }

    .hero-section .btn {
        width: 260px;
        height: 60px;
        font-size: 17px;
    }

    .hero-desc {
        width: 78% !important;
        font-size: 16px !important;
    }

    /* .hero-desc {
        width: 100% !important;
        font-size: 20px !important;
    } */

    .hero-stats h2 {
        font-size: 20px !important;
    }

    /* .hero-stats h2{
        font-size: 40px;
    } */

    .hero-stats p {
        font-size: 15px;
    }

    .hero-section hr {
        width: 100%;
    }

    .hero-stats {
        width: auto;
    }

}


/*=========================================================
  DESKTOP MULTI-LEVEL MEGA MENU (>= 992px)
=========================================================*/

@media (min-width: 992px) {
    .mega-dropdown-wrapper {
        position: relative;
    }

    .btn-mobile-shop {
        display: none !important;
    }

    .custom-mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        z-index: 1000;
        padding-top: 8px;
        max-width: calc(100vw - 40px);
    }

    .navbar-nav .nav-item:nth-last-child(-n+3) .custom-mega-menu {
        left: auto;
        right: 0;
    }

    .mega-dropdown-wrapper:hover .custom-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-menu-inner {
        display: flex !important;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .menu-column-left {
        width: 210px;
        flex-shrink: 0;
        padding: 1.1rem 1.25rem;
        background: #322e2bba !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--card-radius);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    .menu-column-middle {
        display: none;
        width: 240px;
        flex-shrink: 0;
        padding: 1.1rem 1.25rem;
        background: #322e2bba !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--card-radius);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    .menu-column-middle.show-panel {
        display: block !important;
    }

    .menu-column-right {
        display: none;
        width: 210px;
        flex-shrink: 0;
        padding: 1.1rem 1.25rem;
        background: #322e2bba !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--card-radius);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    .menu-column-right.show-panel {
        display: block !important;
    }

    .category-link,
    .sub-link {
        color: rgba(255, 255, 255, 0.88) !important;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.2rem 0;
        position: relative;
        transition: color 0.2s ease;
    }

    .category-link:hover,
    .category-link.active,
    .sub-link:hover,
    .sub-link.active {
        color: #ffffff !important;
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }

    .sub-link i {
        font-size: 0.8rem;
        opacity: 0.75;
        transition: transform 0.2s;
    }

    .sub-link.active i {
        transform: translateX(4px);
        opacity: 1;
    }

    .item-link {
        color: rgba(255, 255, 255, 0.88) !important;
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
        padding: 0.2rem 0;
        display: inline-block;
        position: relative;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .item-link:hover {
        color: #ffffff !important;
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }
}


/*=========================================================
  HERO - STANDARD DESKTOP
=========================================================*/

@media (min-width: 992px) {
    .column-main {
        margin-top: clamp(20px, 4vh, 60px);
    }

    .hero-title {
        font-size: clamp(3.2rem, 5vw, 5rem);
        line-height: 1.20;
        margin-bottom: 0.6rem !important;
    }

    .hero-desc {
        font-size: clamp(15px, 1.2vw, 18px);
        line-height: 1.6;
        width: min(470px, 100%);
        margin: 1.3rem 0px !important;
    }

    .hero-section .d-flex {
        margin: 2.75rem 0px !important;
        margin-top: 3rem !important;
    }

    .hero-stats {
        margin-top: clamp(1rem, 2vh, 1.5rem) !important;
    }


}


/*=========================================================
  SHORT LAPTOP SCREENS
  Example: HP ProBook / 1366x768
=========================================================*/

@media (min-width: 992px) and (max-height: 800px) {
    .column-main {
        margin-top: 10px;
    }

    .hero-title {
        font-size: clamp(3rem, 4.5vw, 4.2rem);
        line-height: 1.2;
        margin-bottom: 0.75rem !important;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 0.75rem !important;
    }

    .hero-section .btn {
        width: 280px;
        height: 52px;
    }

    .hero-stats {
        margin-top: 0.75rem !important;
    }

    .hero-stats h2 {
        font-size: 26px;
    }

    .hero-stats p {
        font-size: 13px;
    }
}

/*=========================================================
  VERY SHORT LAPTOP SCREENS
=========================================================*/

@media (min-width: 992px) and (max-height: 700px) {
    .column-main {
        margin-top: 2rem;
    }

    .hero-title {
        font-size: clamp(2.7rem, 4vw, 3.7rem);
        line-height: 1.40;
        margin-bottom: 0.6rem !important;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.35;
        margin: 1.3rem 0px !important;
    }

    .hero-section .d-flex {
        margin: 2.75rem 0px !important;
        margin-top: 3rem !important;
    }

    .hero-section .btn {
        width: 270px;
        height: 48px;
    }

    .hero-stats {
        margin-top: 0.5rem !important;
    }

    .hero-stats h2 {
        font-size: 24px;
    }

    .hero-stats p {
        font-size: 12px;
    }
}


/*=========================================================
  LARGE DESKTOP SCREENS
  1600px+ width AND 850px+ height
=========================================================*/

@media (min-width: 1600px) and (min-height: 850px) {
    .column-main {
        margin-top: clamp(30px, 5vh, 80px);
    }

    .hero-title {
        font-size: clamp(4rem, 5vw, 6rem);
        line-height: 1.05;
    }

    .hero-desc {
        max-width: 650px;
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-section .btn {
        width: 325px;
        height: 58px;
    }

    .hero-stats {
        width: 80%;
    }

    .hero-stats h2 {
        font-size: 30px;
    }

    .hero-stats p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .hero-section .container {
        height: 100%;
    }

    .hero-section .row {
        height: 100% !important;
        align-items: flex-end !important;
    }

    .row .hero-stats {
        align-items: start !important;
    }

    .column-main {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        padding-bottom: 12px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.5;
    }

    .hero-desc {
        width: 85% !important;
        font-size: 12px !important;
    }

    .hero-section .btn {
        width: 270px;
        height: 60px;
        font-size: 15px;
    }

    .hero-stats h2 {
        font-size: 15px !important;
    }

    .hero-stats p {
        font-size: 8px;
    }
}

/* @media(max-width:768px) and (max-height:1024px){
    .hero-section{
        height: 80dvh;
    }
}

@media(max-width:1024px) and (max-height:1366px){
    .hero-section{
        height: 60dvh;
    }
} */

/* Our Philosophy section */

/* Main Section */
.philosophy-section {
    background-color: #E3DEC8;
    overflow: hidden;
}

/* Custom Responsive Container for Philosophy Section */
.container-philosophy {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-philosophy {
        max-width: 100%;
    }
}

/* Tablet Screens */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container-philosophy {
        max-width: 100% !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .philosophy-card {
        height: 440px;
    }

    .philosophy-content {
        padding: 10px;
    }

    .philosophy-content p {
        font-size: 0.88rem;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container-philosophy {
        max-width: 960px;
    }

    .philosophy-content p {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-philosophy {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-philosophy {
        max-width: 1320px;
    }
}

/* Heading */
.philosophy-heading {
    color: #3D3935;
}

.philosophy-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.philosophy-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 26px, 26px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #7A7168;
}

.philosophy-line {
    width: 105px;
    height: 1.32px;
    display: block;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(139, 120, 98, 0.51) 50%, rgba(0, 0, 0, 0) 100%);
}

/* --- Base Card & Layout --- */
.philosophy-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 42px;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
    background-color: #ddd;
    transform: translateZ(0);
}

/* Black Overlay on Hover */
.philosophy-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 30%);
    opacity: 0;
    transition: opacity 1.9s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.philosophy-card:hover::after {
    opacity: 1;
}

.philosophy-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Bottom Black Shadow Layer --- */
.philosophy-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgb(0, 0, 0) 4%, rgba(0, 0, 0, 0.3) 20%, transparent 100%);
    opacity: 0;
    transition: opacity 1.9s ease;
    pointer-events: none;
    z-index: 2;
}

/* Reveal bottom shadow on hover */
.philosophy-card:hover::before {
    opacity: 1;
}

/* --- Content Box Position & Background --- */
.philosophy-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.7) 100%, rgb(0 0 0 / 30%) 12%);
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 1.9s ease;
    z-index: 3;
}

/* Reveal box on hover */
.philosophy-card:hover .philosophy-content {
    opacity: 1;
}

/* --- Content Typography --- */
.philosophy-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #ffffff;
}

.philosophy-content p {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 88%;
    margin-bottom: 0;
    color: #ffffff;
}

.philosophy-quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 27px, 27px);
    font-style: italic;
    line-height: 1.45;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/*=========================================================
        LAPTOP / SHORT DESKTOP SCREENS
        1280x720 / 1366x768 / 1440x900
=========================================================*/

@media (min-width: 992px) and (max-height: 900px) {
    .philosophy-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .philosophy-title {
        font-size: clamp(3.5rem, 5vw, 64px);
    }

    .philosophy-subtitle {
        font-size: 22px;
    }

    .philosophy-heading {
        margin-bottom: 20px !important;
    }

    .philosophy-row {
        margin-top: 0 !important;
    }

    .philosophy-card {
        height: min(430px, 48vh);
        min-height: 500px;
        border-radius: 32px;
    }

    .philosophy-content {
        padding: 20px;
    }

    .philosophy-content h3 {
        font-size: 30px;
    }

    .philosophy-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .philosophy-quote {
        margin-top: 20px !important;
    }

    .philosophy-quote-text {
        font-size: 22px;
        line-height: 1.3;
    }
}

/*=========================================================
        SHORT LAPTOP SCREENS
        1280x720 / 1366x768
=========================================================*/

@media (min-width: 992px) and (max-height: 800px) {

    .philosophy-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .philosophy-subtitle {
        font-size: 20px;
    }

    .philosophy-line {
        width: 85px;
    }

    .philosophy-heading {
        margin-bottom: 15px !important;
    }

    .philosophy-card {
        height: 500px;
        min-height: 0;
        border-radius: 28px;
    }

    .philosophy-content {
        padding: 25px;
        padding-bottom: 30px;
    }

    .philosophy-content h3 {
        font-size: 30px;
        margin-bottom: 7px;
    }

    .philosophy-content p {
        font-size: 14px;
        line-height: 1.35;
    }

    .philosophy-quote {
        margin-top: 15px !important;
    }

    .philosophy-quote-text {
        font-size: 24px;
        line-height: 1.25;
        max-width: 650px;
    }
}

/*=========================================================
        VERY SHORT LAPTOP SCREENS
        1280x700 / 1366x650
=========================================================*/

@media (min-width: 992px) and (max-height: 700px) {
    .philosophy-title {
        font-size: 48px;
    }

    .philosophy-subtitle {
        font-size: 18px;
    }

    .philosophy-line {
        width: 75px;
    }

    .philosophy-heading {
        margin-bottom: 10px !important;
    }

    .philosophy-card {
        height: 400px;
        border-radius: 24px;
    }

    .philosophy-content {
        padding: 15px;
    }

    .philosophy-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .philosophy-content p {
        font-size: 12px;
        line-height: 1.3;
    }

    .philosophy-quote {
        margin-top: 10px !important;
    }

    .philosophy-quote-text {
        font-size: 24px;
        line-height: 1.2;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .philosophy-title {
        font-size: 64px;
    }

    .philosophy-subtitle {
        font-size: 22px;
    }
}

/*=========================================================
        LARGE DESKTOP SCREENS
=========================================================*/

@media (min-width: 1600px) and (min-height: 900px) {
    .philosophy-card {
        height: 500px;
    }

    .philosophy-title {
        font-size: 80px;
    }

    .philosophy-subtitle {
        font-size: 26px;
    }

    .philosophy-content {
        padding: 24px;
    }

    .philosophy-content h3 {
        font-size: 2.2rem;
    }

    .philosophy-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .philosophy-quote-text {
        font-size: 27px;
    }
}

/*=========================================
        MOBILE PHILOSOPHY
=========================================*/

.philosophy-mobile-section {
    display: none;
    background: #E3DEC8;
    overflow: hidden;
    padding: 50px 0;
}

.philosophy-mobile-slider {
    position: relative;
    margin: 5px 0px;
    width: 100%;
    height: 350px;
}

.mobile-card {

    position: absolute;

    width: 227px;
    height: 324px;

    left: 50%;
    top: 50%;

    border-radius: 22px;
    overflow: hidden;

    transition:
        transform .8s cubic-bezier(.22, .61, .36, 1),
        opacity .8s,
        z-index .8s;

    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);

}

.mobile-card img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* FRONT */

.mobile-card.front {
    transform:
        translate(-50%, -50%) scale(1);

    z-index: 3;
}


/* LEFT */

.mobile-card.left {
    transform: translate(calc(-50% - 100px), -50%) scale(.82);
    /* was -90px */
    z-index: 1;

}


/* RIGHT */

.mobile-card.right {
    transform: translate(calc(-50% + 100px), -50%) scale(.82);
    /* was +90px */
    z-index: 2;

}


/*---------------------------------------------------------
  MOBILE CARD OVERLAY + TEXT
  Same layers as the desktop .philosophy-card hover state,
  but revealed on .front instead of :hover — touch devices
  have no hover, so the text follows the active card.
---------------------------------------------------------*/

/* dim wash */
.mobile-card::after {

    content: "";
    position: absolute;
    inset: 0;

    background-color: rgb(0 0 0 / 20%);

    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;

    z-index: 1;

}

/* bottom shadow so white text stays legible */
.mobile-card::before {

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 55%;

    background: linear-gradient(to top,
            rgb(0 0 0 / 92%) 4%,
            rgb(0 0 0 / .30) 40%,
            transparent 100%);

    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;

    z-index: 2;

}

.mobile-card.front::after,
.mobile-card.front::before {
    opacity: 1;
}

/* was: .mobile-card.front .philosophy-content */
.mobile-card.front .philosophy-content {
    opacity: 1;
}

/* content box — override the desktop scale for a 180px card */
.mobile-card .philosophy-content {

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    padding: 16px 18px 18px;

    opacity: 0;
    transition: opacity .6s ease;

    z-index: 3;

}

.mobile-card .philosophy-content h3 {

    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 8px;

}

.mobile-card .philosophy-content p {

    font-size: .6rem;
    line-height: 1.5;
    max-width: 100%;

}


@media(max-width:991.98px) {

    .philosophy-section {

        display: none;

    }

    .philosophy-mobile-section {

        display: block;

    }

}

@media (min-width: 768px) and (max-width: 991.98px) {
    .philosophy-mobile-slider {
        height: 480px;
    }

    .mobile-card {
        width: 320px;
        height: 456px;
    }

    .mobile-card.left {
        transform: translate(calc(-50% - 150px), -50%) scale(.82);
    }

    .mobile-card.right {
        transform: translate(calc(-50% + 150px), -50%) scale(.82);
    }

    .mobile-card .philosophy-content p {
        width: 90%;
        font-size: 0.8rem;
    }
}

/*=========================================================
                WHAT WE TREAT STYLES
=========================================================*/

.treat-section {
    position: relative;
    background: var(--bg-main);
    --grid-gap: 20px;
    --transition-smooth: 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/*=========================================================
                SECTION TITLE & SUBTITLE
=========================================================*/

.section-title {
    font-family: "Cormorant Garamond", serif;
    color: var(--heading);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-subtitle {
    margin: auto;
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 26px, 26px);
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: 100%;
}

/*=========================================================
                DECORATIVE LEAF SHAPE
=========================================================*/

.treat-leaf {
    position: absolute;
    left: -290px;
    top: -260px;
    pointer-events: none;
    z-index: 0;
}

img.leaf-img {
    height: 580px;
    width: 580px;
    opacity: 16%;
}

/*=========================================================
                CSS GRID SYSTEM
=========================================================*/

.treat-grid-container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.treat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    position: relative;
}

/*=========================================================
                CARDS ARCHITECTURE & STACKING FIX
=========================================================*/

.treat-card-wrapper {
    position: relative;
    width: 100%;
    height: 275px;
    z-index: 1;
    transition: opacity var(--transition-smooth), z-index 0s linear;
}

.treat-card-wrapper.is-active-wrapper {
    z-index: 1000 !important;
}

.treat-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-light);
    will-change: transform;
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    transform-origin: center center;
    z-index: 1;
}

.treat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transition: transform var(--transition-smooth);
    transform: scale(1);
}

/*=========================================================
                HOVER MAP TRANSFORM ORIGINS
=========================================================*/

.treat-card[data-card="1"] {
    transform-origin: 0% 0%;
}

.treat-card[data-card="2"] {
    transform-origin: 100% 0%;
}

.treat-card[data-card="3"] {
    transform-origin: 100% 0%;
}

.treat-card[data-card="4"] {
    transform-origin: 0% 100%;
}

.treat-card[data-card="5"] {
    transform-origin: 0% 100%;
}

.treat-card[data-card="6"] {
    transform-origin: 100% 100%;
}

/*=========================================================
                EXPANSION STATES
=========================================================*/

.treat-card.is-active {
    z-index: 1000 !important;
    transform: scale(var(--scale-x, 2.06), var(--scale-y, 2.06));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.treat-card.is-active .treat-card-img {
    transform: scale(1);
}

/* Non-active cards stay 100% normal with NO darkening */

.treat-grid.has-active .treat-card:not(.is-active) {
    transform: scale(1);
    filter: none;
}

/*=========================================================
                GLASSMORPHISM OVERLAY
=========================================================*/

.treat-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 12px;
    width: 100%;
    height: 80px;
    border-radius: 50px 1px 1px 1px;
    padding: 10px 24px;
    background: rgb(254 254 254 / 20%);
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform var(--transition-smooth), visibility 0s;
    pointer-events: none;
}

.treat-overlay:before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(to right,
            #000 0%,
            #000 35%,
            transparent 70%);
    -webkit-mask-image: linear-gradient(to right,
            #000 0%,
            #000 35%,
            transparent 70%);
    z-index: -1;
    border-radius: 50px 1px 1px 1px;
    background: #0000004F;
}

.treat-overlay:after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    mask-image: linear-gradient(to right,
            transparent 30%,
            #000 65%,
            #000 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 30%,
            #000 65%,
            #000 100%);
    z-index: -1;
    background: #0000004F;
}


.treat-card.is-active .treat-overlay {
    visibility: visible;
    /* was opacity: 1 */
    transform: translateY(0);
    pointer-events: auto;
}

.treat-overlay::before,
.treat-overlay::after {
    opacity: 0;
    transition: opacity 250ms ease;
}

.treat-card.is-active .treat-overlay::before,
.treat-card.is-active .treat-overlay::after {
    opacity: 1;
}

.treat-card.is-active .overlay-title,
.treat-card.is-active .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.treat-btn {
    width: 235px;
    height: 57px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    box-shadow: 0px 4.62px 6.93px -4.62px rgba(0, 0, 0, 0.10),
        0px 11.56px 17.33px -3.47px rgba(0, 0, 0, 0.10);
}

/* Hides only covered cards underneath */

.treat-card-wrapper.is-covered {
    opacity: 0 !important;
    pointer-events: none;
}

.overlay-text-second {
    margin: -22px 11px 0px 0px !important;
}

.overlay-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: clamp(24px, 2.2vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    flex: 0 0 45%;
    margin-right: 0px;
    margin-bottom: -45px;
    margin-top: 18px;
}

.overlay-text {
    font-family: var(--font-body);
    color: #ffffff;
    font-size: clamp(8px, 8px, 8px);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    flex: 1;
    text-transform: lowercase;
    margin: -3px -8px 0px 0px;
    position: relative;
    top: 0px;
}

.overlay-title-first {
    margin: 0px 35px 0px 0px !important;
}

.overlay-text-first {
    margin: -35px 0px 0px 0px !important;
}

.overlay-text-third {
    margin: -76px -7px 0px 0px !important;
}

.overlay-title-third {
    margin: 10px 60px 0px 0px !important;
}

.overlay-title-sixth {
    margin: 12px 50px 0px 0px !important;
}

.overlay-text-sixth {
    margin: -80px -10px 0px 0px !important;
}

.overlay-text-fifth {
    margin: -70px -12px 0px 0px !important;
}

.overlay-title-fifth {
    margin: 10px 30px 0px 0px !important;
}

.overlay-title-fourth {
    margin: 10px 46px 0px 0px !important;
}

.overlay-text-fourth {
    margin: -33px -15px 0px 0px !important;
}

/*=========================================================
                RESPONSIVE BREAKPOINTS
=========================================================*/

@media (min-width: 1600px) {
    .overlay-title {
        font-size: 20px;
    }

    .overlay-text {
        font-size: 7px;
    }

    .overlay-title-first {
        margin: 0px 45px 0px 0px !important;
    }

    .overlay-text-first {
        margin: -21px 0px 0px 0px !important;
    }

    .overlay-title-second {
        margin: 9px 26px -40px 0px !important;
    }

    .overlay-text-second {
        margin: -15px 12px 0px 0px !important;
    }

    .overlay-text-third {
        margin: -57px -7px 0px 0px !important;
    }

    .overlay-title-third {
        margin: 10px 60px 0px 0px !important;
    }

    .overlay-title-sixth {
        margin: 12px 50px 0px 0px !important;
    }

    .overlay-text-sixth {
        margin: -54px -2px 0px 0px !important;
    }

    .overlay-text-fifth {
        margin: -52px 0px 0px 0px !important;
    }

    .overlay-title-fifth {
        margin: 10px 45px 0px 0px !important;
    }

    .overlay-title-fourth {
        margin: 0px 60px 0px 0px !important;
    }

    .overlay-text-fourth {
        margin: -18px -8px 0px 0px !important;
    }


}

@media (min-width: 1400px) {
    .treat-card-wrapper {
        height: 260px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-title {
        font-size: 64px;
        line-height: 0.95;
    }

    .section-subtitle {
        font-size: 22px;
        line-height: 1.3;
    }
}

/*=========================================================
        LAPTOP / SHORT DESKTOP SCREENS
        1280x720 / 1366x768 / 1440x900
=========================================================*/



@media (min-width: 992px) and (max-height: 900px) {

    .overlay-title {
        font-size: 25px;
    }

    .overlay-text {
        font-size: 7px;
    }

    .treat-card-wrapper {
        height: 250px;
    }

    .section-title {
        font-size: clamp(3.5rem, 5vw, 64px);
        line-height: 0.95;
    }

    .section-subtitle {
        font-size: 22px;
        line-height: 1.3;
    }

    .treat-section {
        --grid-gap: 16px;
    }

    .overlay-title-first {
        margin: 0px 45px 0px 0px !important;
    }

    .overlay-text-first {
        margin: -26px 4px 0px 0px !important;
    }

    .overlay-title-second {
        margin: 6px 30px -40px 0px !important;
    }

    .overlay-text-second {
        margin: -13px 34px 0px 0px !important;
    }

    .overlay-title-third {
        margin: 8px 66px 0px 0px !important;
    }

    .overlay-text-third {
        margin: -63px 6px 0px 0px !important;
    }

    .overlay-title-fourth {
        margin: 0px 65px 0px 0px !important;
    }

    .overlay-text-fourth {
        margin: -30px 10px 0px 0px !important;
    }

    .overlay-text-fifth {
        margin: -60px 20px 0px 0px !important;
    }

    .overlay-title-fifth {
        margin: 6px 50px 0px 0px !important;
    }

    .overlay-title-sixth {
        margin: 8px 60px 0px 0px !important;
    }

    .overlay-text-sixth {
        margin: -64px 4px 0px 0px !important;
    }

}

/*=========================================================
        SHORT LAPTOP SCREENS
        1280x720 / 1366x768
=========================================================*/

@media (min-width: 992px) and (max-height: 800px) {
    .section-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .section-subtitle {
        font-size: 20px;
        line-height: 1.3;
    }

    .treat-card-wrapper {
        height: 274px;
    }
}



/*=========================================================
        VERY SHORT LAPTOP SCREENS
        1280x700 / 1366x650
=========================================================*/

@media (min-width: 992px) and (max-height: 700px) {
    .section-title {
        font-size: 48px;
        line-height: 0.95;
    }

    .section-subtitle {
        font-size: 18px;
        line-height: 1.3;
    }

    .treat-card-wrapper {
        height: 235px;
    }

    .treat-overlay {
        height: 60px;
    }

    .overlay-title {
        font-size: 20px;
    }

    .overlay-text {
        font-size: 5px;
    }

    .overlay-title-first {
        margin: -5px 42px 0px 0px !important;
    }

    .overlay-text-first {
        margin: -20px 16px 0px 0px !important;
    }

    .overlay-title-second {
        margin: 0px 30px -40px 0px !important;
    }

    .overlay-text-second {
        margin: -2px 35px 0px 0px !important;
    }

    .overlay-title-third {
        margin: -1px 49px 0px 0px !important;
    }

    .overlay-text-third {
        margin: -48px 6px 0px 0px !important;
    }

    .overlay-title-fourth {
        margin: -4px 50px 0px 0px !important;
    }

    .overlay-text-fourth {
        margin: -22px 10px 0px 0px !important;
    }

    .overlay-title-fifth {
        margin: 0px 32px 0px 0px !important;
    }

    .overlay-text-fifth {
        margin: -45px 12px 0px 0px !important;
    }

    .overlay-title-sixth {
        margin: 3px 50px 0px 0px !important;
    }

    .overlay-text-sixth {
        margin: -48px 10px 0px 0px !important;
    }

}

/*=========================================================
        LARGE DESKTOP SCREENS
=========================================================*/

@media (min-width: 1600px) and (min-height: 900px) {
    .treat-card-wrapper {
        height: 333px;
        width: 437px;
    }

    .section-title {
        font-size: 80px;
        line-height: 0.95;
    }

    .section-subtitle {
        font-size: 26px;
        line-height: 1.3;
    }
}

/*=========================================================
                TABLET / MOBILE
=========================================================*/

@media (max-width: 991px) {
    .treat-grid-container {
        max-width: 100%;
    }

    .treat-card-wrapper {
        height: 210px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.3;
    }

    .treat-overlay {
        height: 60px;
    }

    .treat-section {
        --grid-gap: 12px;
    }

    .overlay-text {
        font-size: 6px !important;
    }

    .overlay-title {
        font-size: 15px !important;
    }

    .overlay-text-first {
        margin: -15px 10px 0 0 !important;
    }

    .overlay-title-first {
        margin: -5px 55px 0 0 !important;
    }

    .overlay-text-second {
        margin: -47px 4px 0 0 !important;
    }

    .overlay-title-second {
        margin: 10px 22px 0 0 !important;
    }

    .overlay-text-third {
        margin: -35px -3px 0 0 !important;
    }

    .overlay-title-third {
        margin: 0 60px 0 0 !important;
    }

    .overlay-text-fourth {
        margin: -15px 1px 0 0 !important;
    }

    .overlay-title-fourth {
        margin: -4px 65px 0 0 !important;
    }

    .overlay-text-fifth {
        margin: -46px 0px 0 0 !important;
    }

    .overlay-title-fifth {
        margin: 10px 40px 0 0 !important;
    }

    .overlay-text-sixth {
        margin: -45px 0px 0 0 !important;
    }

    .overlay-title-sixth {
        margin: 8px 50px 0 0 !important;
    }
}

@media (max-width:1024px) {
    .treat-overlay {
        height: 75px;
    }

    .overlay-title-first {
        margin: -3px 50px 0px 0px !important;
    }

    .overlay-text-first {
        margin: -27px 0px 0px 0px !important;
    }

    .overlay-title-second {
        margin: 4px 12px 0px 0px !important;
    }

    .overlay-text-second {
        margin: -60px 0px 0px 0px !important;
    }

    .overlay-title-third {
        margin: 5px 70px 0px 0px !important;
    }

    .overlay-text-third {
        margin: -60px -12px 0px 0px !important;
    }

    .overlay-title-fourth {
        margin: -6px 75px 0px 0px !important;
    }

    .overlay-text-fourth {
        margin: -26px -4px 0px 0px !important;
    }

    .overlay-title-fifth {
        margin: 7px 50px 0px 0px !important;
    }

    .overlay-text-fifth {
        margin: -63px -2px 0px 0px !important;
    }

    .overlay-title-sixth {
        margin: 10px 65px 0px 0px !important;
    }

    .overlay-text-sixth {
        margin: -65px 0px 0px 0px !important;
    }

}

/*=========================================================
                MOBILE
=========================================================*/

@media (max-width: 767px) {

    .treat-section {
        padding: 60px 0;
        --grid-gap: 8px;
    }

    .treat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .treat-card-wrapper {
        height: 120px;
    }

    .treat-card {
        border-radius: 16px;
    }

    .treat-card[data-card="3"] {
        transform-origin: 0% 100%;
    }

    .treat-card[data-card="4"] {
        transform-origin: 100% 0%;
    }

    .treat-overlay {
        height: 25%;
        padding: 0 8px;
        flex-direction: column;
        justify-content: center;
        align-items: end;
        gap: 2px;
        border-radius: 25px 0 0 0;
    }

    .overlay-title {
        line-height: 1.1;
        padding: 0;
        flex: none;
    }

    .overlay-text {
        font-size: 8px;
        line-height: 1.2;
        flex: none;
    }

    .section-title {
        font-size: 36px;
        line-height: 0.95;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.3;
        padding: 0 20px;
    }

    .treat-btn {
        width: 170px;
        height: 50px;
        font-size: 14px;
    }

    .treat-leaf {
        width: 90px;
    }

    .overlay-text {
        font-size: 5px !important;
    }

    .overlay-title {
        font-size: 13px !important;
    }

    .overlay-text-first {
        margin: -15px -4px 0 0 !important;
    }

    .overlay-title-first {
        margin: 0 30px 0 0 !important;
    }

    .overlay-text-second {
        margin: -33px -4px 0 0 !important;
    }

    .overlay-title-second {
        margin: -9px 5px 0 0 !important;
    }

    .overlay-text-third {
        margin: -39px -3px 0 0 !important;
    }

    .overlay-title-third {
        margin: -5px 44px 0 0 !important;
    }

    .overlay-text-fourth {
        margin: -16px 1px 0 0 !important;
    }

    .overlay-title-fourth {
        margin: 0 51px 0 0 !important;
    }

    .overlay-text-fifth {
        margin: -35px -1px 0 0 !important;
    }

    .overlay-title-fifth {
        margin: -10px 25px 0 0 !important;
    }

    .overlay-text-sixth {
        margin: -35px -1px 0 0 !important;
    }

    .overlay-title-sixth {
        margin: -8px 37px 0 0 !important;
    }
}

@media (max-width: 768px) {

    .treat-overlay {
        height: 50px;
    }

    .overlay-text {
        font-size: 5px !important;
    }

    .overlay-title {
        font-size: 13px !important;
    }

    .overlay-text-first {
        margin: -13px -4px 0 0 !important;
    }

    .overlay-title-first {
        margin: -4px 30px 0 0 !important;
    }

    .overlay-text-second {
        margin: -37px -1px 0 0 !important;
    }

    .overlay-title-second {
        margin: 3px 10px 0 0 !important;
    }

    .overlay-text-third {
        margin: -39px -3px 0 0 !important;
    }

    .overlay-title-third {
        margin: 5px 44px 0 0 !important;
    }

    .overlay-text-fourth {
        margin: -13px 1px 0 0 !important;
    }

    .overlay-title-fourth {
        margin: -4px 51px 0 0 !important;
    }

    .overlay-text-fifth {
        margin: -35px -1px 0 0 !important;
    }

    .overlay-title-fifth {
        margin: 2px 30px 0 0 !important;
    }

    .overlay-text-sixth {
        margin: -35px -1px 0 0 !important;
    }

    .overlay-title-sixth {
        margin: 3px 37px 0 0 !important;
    }
}

@media (max-width: 820px) {

    .treat-overlay {
        height: 55px;
    }

    .overlay-text {
        font-size: 5px !important;
    }

    .overlay-title {
        font-size: 13px !important;
    }

    .overlay-text-first {
        margin: -13px -4px 0 0 !important;
    }

    .overlay-title-first {
        margin: -4px 30px 0 0 !important;
    }

    .overlay-text-second {
        margin: -37px -1px 0 0 !important;
    }

    .overlay-title-second {
        margin: 3px 10px 0 0 !important;
    }

    .overlay-text-third {
        margin: -39px -3px 0 0 !important;
    }

    .overlay-title-third {
        margin: 5px 44px 0 0 !important;
    }

    .overlay-text-fourth {
        margin: -13px 1px 0 0 !important;
    }

    .overlay-title-fourth {
        margin: -4px 51px 0 0 !important;
    }

    .overlay-text-fifth {
        margin: -35px -1px 0 0 !important;
    }

    .overlay-title-fifth {
        margin: 2px 30px 0 0 !important;
    }

    .overlay-text-sixth {
        margin: -35px -1px 0 0 !important;
    }

    .overlay-title-sixth {
        margin: 3px 37px 0 0 !important;
    }
}


@media (min-width: 420px) and (max-width: 575.98px) {
    .section-title {
        font-size: 40px !important;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/*=========================================================
                SMALL MOBILE
=========================================================*/

@media (max-width: 480px) {
    .treat-card-wrapper {
        height: 160px;
    }

    .section-title {
        font-size: 56px !important;
        line-height: 0.95;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.3;
    }

    .overlay-title-first {
        margin: 0px 45px 0px 0px !important;
    }

    .overlay-text-first {
        margin: -16px 10px 0px 0px !important;
    }

    .overlay-title-second {
        margin: -10px 20px 0px 0px !important;
    }

    .overlay-text-second {
        margin: -33px 10px 0px 0px !important;
    }

    .overlay-title-third {
        margin: -4px 55px 0 0 !important;
    }

    .overlay-text-third {
        margin: -36px 7px 0 0 !important;
        font-size: 5px !important;
    }

    .overlay-text-fourth {
        margin: -17px 12px 0 0 !important;
    }

    .overlay-title-fourth {
        margin: 0 60px 0 0 !important;
    }

    .overlay-title-fifth {
        margin: -8px 50px 0 0 !important;
    }

    .overlay-text-fifth {
        margin: -33px 15px 0 0 !important;
    }

    .overlay-title-sixth {
        margin: -4px 50px 0 0 !important;
    }

    .overlay-text-sixth {
        margin: -35px 10px 0 0 !important;
    }

}

/* Align title and description as one text block in every expanded card. */
.treat-card.is-active .treat-overlay {
    align-items: flex-start;
    justify-content: center;
    padding-top: 0px;
}

.treat-card.is-active .treat-overlay .overlay-title,
.treat-card.is-active .treat-overlay .overlay-text {
    flex: 0 0 auto;
    width: 60%;
    margin: 0px 0 0 7% !important;
    align-self: flex-start;
    text-align: left;
}

@media (max-width: 767px) {
    .treat-card.is-active .treat-overlay .overlay-title,
    .treat-card.is-active .treat-overlay .overlay-text {
        width: 85%;
    }

    .treat-overlay::before,
    .treat-overlay::after {
        border-radius: 25px 0 0 0;
    }
}



/* Why Choose Us  */

.wcu-why-choose-us {
    position: relative;
    background: var(--bg-main, #E5DFC8);
    overflow: hidden;
    padding: 60px 0;

    /* Responsive custom properties scale layout cleanly without overlapping */
    --wcu-card-w: 333px;
    --wcu-card-h: 550px;
    --wcu-card-gap: 24px;
    --wcu-overlay-glass-bg: rgba(72, 86, 67, 0.82);
    --wcu-overlay-glass-hover: rgba(82, 98, 77, 0.88);
    --wcu-anim-speed: 30s;
}

/* Headings */
.wcu-why-choose-us .wcu-section-title {
    font-family: var(--font-heading);
    color: var(--heading);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.wcu-why-choose-us .wcu-section-subtitle {
    max-width: 600px;
    margin: auto;
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 26px, 26px);
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* =========================================================
   MARQUEE VIEWPORT & TRACK
========================================================= */

.wcu-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.wcu-marquee-viewport:active {
    cursor: grabbing;
}

.wcu-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: wcuMarqueeLoop var(--wcu-anim-speed) linear infinite;
}

.wcu-marquee-viewport:hover .wcu-marquee-track,
.wcu-marquee-track.is-paused {
    animation-play-state: paused;
}

@keyframes wcuMarqueeLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(var(--track-shift-distance, -50%), 0, 0);
    }
}

/* =========================================================
   CARD STRUCTURE & OVERLAY
========================================================= */

.wcu-card-item {
    flex: 0 0 auto;
    padding-right: var(--wcu-card-gap);
    box-sizing: content-box;
}

.wcu-card {
    width: 296px;
    height: 496px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--white, #ffffff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    will-change: transform, box-shadow;
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
    mask-image: -webkit-radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.wcu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wcu-card-overlay {
    position: absolute;
    bottom: 0;
    height: 224px;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, rgba(71, 87, 71, 0.65) 0%, rgba(76, 93, 75, 1) 100%);
    padding: 20px 15px;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    transition: background-color 500ms ease;
}

.wcu-card-title {
    font-family: var(--font-heading);
    color: var(--white, #ffffff);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
}

.wcu-card-text {
    font-family: inter;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wcu-card:hover .wcu-card-img {
    transform: scale(1.08);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */


/*=========================================================
        SMALL MOBILE - 375px to 419px
=========================================================*/

@media (max-width: 480px) {
    .wcu-why-choose-us {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        --wcu-card-w: 245px;
        --wcu-card-gap: 15px;
        --wcu-anim-speed: 35s;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: 56px;
        line-height: 0.95;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 16px;
        max-width: 310px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 28px !important;
    }

    .wcu-card {
        width: 245px;
        height: 360px;
        border-radius: 24px;
    }

    .wcu-card-overlay {
        height: 48%;
        padding: 16px 12px;
    }

    .wcu-card-title {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .wcu-card-text {
        font-size: 12px;
        line-height: 20px;
        width: 207px;
    }
}


/*=========================================================
        LARGE MOBILE - 420px to 575px
=========================================================*/

@media (min-width: 420px) and (max-width: 575px) {
    .wcu-why-choose-us {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
        --wcu-card-w: 260px;
        --wcu-card-gap: 16px;
        --wcu-anim-speed: 35s;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: 56px !important;
        line-height: 0.95;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 16px;
        max-width: 350px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 30px !important;
    }

    .wcu-card {
        width: 260px;
        height: 380px;
        border-radius: 24px;
    }

    .wcu-card-overlay {
        height: 48%;
        padding: 17px;
    }

    .wcu-card-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .wcu-card-text {
        font-size: 12px;
        line-height: 20px;
        width: 228px;
    }
}


/*=========================================================
        SMALL TABLET - 576px to 767px
=========================================================*/

@media (min-width: 576px) and (max-width: 767px) {
    .wcu-why-choose-us {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        --wcu-card-w: 270px;
        --wcu-card-gap: 18px;
        --wcu-anim-speed: 32s;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: 64px;
        line-height: 0.95;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 22px;
        max-width: 450px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 35px !important;
    }

    .wcu-card {
        width: 270px;
        height: 420px;
        border-radius: 26px;
    }

    .wcu-card-overlay {
        height: 48%;
        padding: 18px;
    }

    .wcu-card-title {
        font-size: 24px;
        margin-bottom: 9px;
    }

    .wcu-card-text {
        font-size: 13px;
        line-height: 20px;
        width: 228px;
    }
}


/*=========================================================
        TABLET - 768px to 991px
=========================================================*/

@media (min-width: 768px) and (max-width: 991px) {
    .wcu-why-choose-us {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
        --wcu-card-w: 280px;
        --wcu-card-gap: 20px;
        --wcu-anim-speed: 32s;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: 64px;
        line-height: 0.95;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 22px;
        max-width: 500px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 35px !important;
    }

    .wcu-card {
        width: 280px;
        height: 440px;
        border-radius: 28px;
    }

    .wcu-card-overlay {
        height: 48%;
        padding: 19px;
    }

    .wcu-card-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .wcu-card-text {
        font-size: 15px;
        line-height: 20px;
        width: 228px;
    }
}


/*=========================================================
        LAPTOP / SHORT DESKTOP
        992px and height up to 900px
        1280x720 / 1366x768 / 1440x900
=========================================================*/

@media (min-width: 992px) and (max-height: 900px) {
    .wcu-why-choose-us {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: clamp(3.5rem, 5vw, 64px);
        line-height: 0.95;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 22px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 20px !important;
    }

    .wcu-marquee-viewport {
        padding: 5px 0;
    }

    .wcu-card {
        height: min(430px, 48vh);
        min-height: 350px;
        border-radius: 32px;
    }

    .wcu-card-overlay {
        height: 224px;
        padding: 20px 12px;
    }

    .wcu-card-title {
        font-size: 27px;
    }

    .wcu-card-text {
        font-size: 14px;
        line-height: 1.4;
    }
}


/*=========================================================
        SHORT LAPTOP
        992px and height up to 800px
        1280x720 / 1366x768
=========================================================*/

@media (min-width: 992px) and (max-height: 800px) {

    .wcu-why-choose-us .wcu-section-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 20px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 15px !important;
    }

    .wcu-marquee-viewport {
        padding: 3px 0;
    }

    .wcu-card {
        width: 296px;
        height: 496px;
        border-radius: 28px;
    }

    .wcu-card-overlay {
        height: 224px;
        padding: 18px 12px;
    }

    .wcu-card-title {
        font-size: 27px;
        margin-bottom: 7px;
    }

    .wcu-card-text {
        font-size: 15px;
        line-height: 20px;
        width: 228px;
    }
}


/*=========================================================
        VERY SHORT LAPTOP
        992px and height up to 700px
        1280x700 / 1366x650
=========================================================*/

@media (min-width: 992px) and (max-height: 700px) {
    .wcu-why-choose-us {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: 48px;
        line-height: 0.9;
        margin-bottom: 20px;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 18px;
    }

    .wcu-why-choose-us .container.mb-5 {
        margin-bottom: 15px !important;
    }

    .wcu-marquee-viewport {
        padding: 2px 0;
    }

    .wcu-card {
        width: 296px;
        height: 496px;
        border-radius: 24px;
    }

    .wcu-card-overlay {
        height: 224px;
        padding: 15px 12px;
    }

    .wcu-card-title {
        font-size: 27px;
        margin-bottom: 15px;
    }

    .wcu-card-text {
        font-size: 15px;
        line-height: 20px;
        width: 228px;
    }
}


/*=========================================================
        LARGE DESKTOP
        1600px+
=========================================================*/

@media (min-width: 1600px) and (min-height: 900px) {
    .wcu-why-choose-us {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .wcu-why-choose-us .wcu-section-title {
        font-size: 80px;
        line-height: 0.95;
    }

    .wcu-why-choose-us .wcu-section-subtitle {
        font-size: 26px;
        line-height: 1.3;
    }

    .wcu-card {
        width: 296px;
        height: 496px;
    }

    .wcu-card-overlay {
        height: 224px;
        padding: 24px 12px;
    }

    .wcu-card-title {
        font-size: 27px;
    }

    .wcu-card-text {
        font-size: 15px;
        line-height: 20px;
    }
}

/*=========================================================
            OUR SIGNATURE TREATMENTS STYLES
=========================================================*/

.sig-treatments-section {
    position: relative;
    background: var(--bg-main, #E3DEC8);

    /* Card sizing variables - matching your desired dimensions */
    --sig-card-w: 442px;
    --sig-card-h: 562px;
    --sig-card-gap: 24px;
    overflow: hidden;
}

/* Typography & Section Titles */
/* Typography & Section Titles */
.sig-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0.82px;
    color: #4C5D4B;
    font-weight: 400;
    margin-bottom: 0;
}

.sig-title {
    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    color: var(--heading);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.sig-desc {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 26px, 26px);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1.3;
    max-width: 790px;
    margin: 0 auto;
}

/* =========================================================
   MARQUEE VIEWPORT & TRACK (JS CONTROLLED)
========================================================= */

.sig-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.sig-marquee-viewport:active {
    cursor: grabbing;
}

.sig-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

/* Helper state class for dragging */
.sig-marquee-track.is-paused {
    transition: none !important;
}

/* =========================================================
   CARD STRUCTURE & OVERLAY
========================================================= */

.sig-card-item {
    flex: 0 0 auto;
    margin-right: var(--sig-card-gap);
    box-sizing: border-box;
}

.sig-card {
    height: 474px;
    width: 391px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.sig-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sig-card:hover .sig-card-img {
    transform: scale(1.06);
}

/* Overlay Box with Dark Muted-Green Gradient */
.sig-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 191px;
    background: #4C5D4BB0;
    padding: 12px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.sig-card-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    color: #ffffff;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sig-card-text {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 300;
    width: 100%;
    line-height: 27px;
    margin-bottom: 2px;
    display: -webkit-box;
}

.sig-card-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: opacity 0.3s ease;
}

.sig-explore-btn-wrap {
    height: 70px;
}

/* Explore More Button */
.sig-explore-btn {
    background: #4C5D4B !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    width: 206px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease-in-out;
}

a.sig-explore-btn:hover {
    background: #394638 !important;
    transform: scale(1.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

i.bi.bi-arrow-right-short {
    font-size: 25px;
}



/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

@media (max-width: 991px) {
    .sig-treatments-section {
        --sig-card-w: 340px;
        --sig-card-h: 460px;
        --sig-card-gap: 18px;
    }

    .sig-title {
        font-size: 56px;
    }

    .sig-desc {
        font-size: 22px;
    }

    .sig-card-overlay {
        height: 300px;
    }

    .sig-card {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .sig-treatments-section {
        --sig-card-w: 280px;
        --sig-card-h: 390px;
        --sig-card-gap: 14px;
        padding: 50px 0;
    }

    .sig-title {
        font-size: 50px;
    }

    .sig-card-overlay {
        height: 180px;
        padding: 16px;
    }

    .sig-card-title {
        font-size: 22px;
    }

    .sig-card-text {
        font-size: 12px;
        line-height: 18px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}


@media (max-width: 480px) {
    .sig-treatments-section {
        --sig-card-w: 275px;
        --sig-card-gap: 13px;
        padding: 45px 0 !important;
    }

    .sig-subtitle {
        font-size: 16px;
    }

    .sig-title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .sig-desc {
        font-size: 16px;
    }

    .sig-card {
        height: 370px;
        width: 285px;
        border-radius: 16px;
    }

    .sig-card-overlay {
        height: 180px;
        padding: 13px 16px;
    }

    .sig-card-title {
        font-size: 21px;
    }

    .sig-card-text {
        font-size: 11.5px;
        line-height: 17px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sig-card-link {
        font-size: 12px;
    }

    .sig-explore-btn {
        width: 175px;
        height: 48px;
        font-size: 13.5px;
    }

    .sig-card-text-1 {
        width: 100%;
    }
}

/* RUNG 3  — 420 to 575px */
@media (min-width: 420px) and (max-width: 575.98px) {
    .sig-treatments-section {
        --sig-card-w: 310px;
        --sig-card-gap: 15px;
        padding: 50px 0 !important;
    }

    .sig-subtitle {
        font-size: 13px;
    }

    .sig-title {
        font-size: 56px;
    }

    .sig-desc {
        font-size: 16px;
    }

    .sig-card {
        height: 410px;
        width: 285px;
        border-radius: 18px;
    }

    .sig-card-overlay {
        height: 146px;
        padding: 12px 15px;
    }

    .sig-card-title {
        font-size: 22px;
    }

    .sig-card-text {
        font-size: 11px;
        line-height: 19px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sig-card-link {
        font-size: 13px;
    }

    .sig-explore-btn {
        width: 190px;
        height: 50px;
        font-size: 14px;
    }

    .sig-card-text-1 {
        width: 100%;
    }
}

/* RUNG 4  — 576 to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .sig-treatments-section {
        --sig-card-w: 330px;
        --sig-card-gap: 16px;
        padding: 55px 0 !important;
    }

    .sig-title {
        font-size: 58px;
    }

    .sig-desc {
        font-size: 21px;
    }

    .sig-card {
        height: 440px;
        border-radius: 20px;
    }

    .sig-card-overlay {
        height: 205px;
        padding: 15px 20px;
    }

    .sig-card-title {
        font-size: 27px;
    }

    .sig-card-text {
        font-size: 14px;
        line-height: 22px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sig-explore-btn {
        width: 198px;
        height: 52px;
    }

    .sig-card-text-1 {
        width: 90%;
    }
}

/* RUNG 5  — 768 to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sig-treatments-section {
        --sig-card-w: 350px;
        --sig-card-gap: 20px;
        padding: 60px 0 !important;
    }

    .sig-title {
        font-size: 64px;
    }

    .sig-desc {
        font-size: 22px;
    }

    .sig-card {
        height: 470px;
    }

    .sig-card-overlay {
        height: 215px;
        padding: 16px 22px;
    }

    .sig-card-title {
        font-size: 29px;
    }

    .sig-card-text {
        font-size: 15px;
        line-height: 24px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sig-card-text-1 {
        width: 90%;
    }
}

/* short laptop — height <= 900 */
@media (min-width: 992px) and (max-height: 900px) {
    .sig-treatments-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .sig-title {
        font-size: clamp(3.5rem, 5vw, 64px);
        line-height: 0.95;
    }

    .sig-desc {
        font-size: 22px;
        line-height: 1.3;
    }

    .sig-card {
        height: 474px;
        width: 391px;
    }

    .sig-card-overlay {
        height: 191px;
    }

    .sig-card-text-1 {
        width: 90%;
    }
}

/* short laptop — height <= 800 */
@media (min-width: 992px) and (max-height: 800px) {


    .sig-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .sig-desc {
        font-size: 20px;
        line-height: 1.3;
    }

    .sig-card {
        height: 474px;
        width: 391px;
    }

    .sig-card-overlay {
        height: 191px;
    }

    .sig-card-title {
        font-size: 29px;
    }

    .sig-card-text {
        font-size: 15px;
        line-height: 23px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

/* short laptop — height <= 700 */
@media (min-width: 992px) and (max-height: 700px) {
    .sig-treatments-section {
        padding-top: 40px !important;
        padding-bottom: 26px !important;
    }

    .sig-title {
        font-size: 48px;
        line-height: 0.95;
    }

    .sig-desc {
        font-size: 18px;
        line-height: 1.3;
    }

    .sig-card {
        height: 406px;
        width: 391px;
    }

    .sig-card-overlay {
        height: 191px;
    }

    .sig-card-title {
        font-size: 29px;
    }

    .sig-card-text-1 {
        width: 90%;
    }
}

/* phone in landscape */
@media (max-width: 991.98px) and (orientation: landscape) and (max-height: 500px) {
    .sig-card {
        height: 300px;
    }

    .sig-card-overlay {
        height: 150px;
    }
}

/* large + tall screens (reset) */
@media (min-width: 1600px) and (min-height: 900px) {
    .sig-treatments-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .sig-title {
        font-size: 80px;
        line-height: 0.95;
    }

    .sig-desc {
        font-size: 26px;
        line-height: 1.3;
    }

    .sig-card {
        height: 474px;
        width: 391px;
    }

    .sig-card-overlay {
        height: 191px;
        padding: 12px 22px;
    }

    .sig-card-title {
        font-size: 29px;
    }

    .sig-card-text {
        font-size: 15px;
        line-height: 23px;
    }
}

/*=========================================================
            OUR RECENT BLOGS SECTION STYLES
=========================================================*/

.recent-blogs-section {
    position: relative;
    background: var(--bg-main, #E3DEC8);
}

/* Custom Responsive Container for Blog Section */
.container-blogs {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-blogs {
        max-width: 540px;
    }
}

/* Tablet Screens: Force container-fluid behavior */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container-blogs {
        max-width: 100% !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .blog-card-img-wrapper {
        height: 180px;
    }

    .blog-card-title {
        font-size: 22px;
        line-height: 28px;
    }

    .blog-card-text {
        font-size: 13.5px;
        line-height: 22px;
    }

    .blog-card-content {
        padding: 10px;
    }
}

@media (min-width: 992px) {
    .container-blogs {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-blogs {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-blogs {
        max-width: 1320px;
    }
}

/* Typography & Headers */
.blog-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4C5D4B;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin-bottom: 0;
}

.blog-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    color: var(--heading, #20190F);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.blog-desc {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.4rem, 26px, 26px);
    font-weight: 400;
    color: var(--text, #7A7168);
    letter-spacing: 0.5px;
    line-height: 1.3;
    max-width: 810px;
    margin: 0 auto;
}

/* Card Design */
.blog-card {
    background: linear-gradient(180deg, rgb(122 113 104 / 23%) 0%, rgba(61, 57, 53, 1) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 3;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image & Badge */
.blog-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(43, 62, 51, 0.85);
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Card Content Area */
.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.blog-meta {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    color: #ffffff;
    font-size: 31px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 12px;
}

.blog-card-text {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 20px;
}

.blog-card-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    color: #ffffff;
    gap: 10px;
}

/* View All Articles Button */
.blog-view-btn {
    background: #4C5D4B !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    width: 224px;
    height: 59px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-leaf {
    position: absolute;
    right: 0;
    top: -235px;
    width: 280px;
    height: 650px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.blog-leaf .leaf-img {
    position: absolute;
    left: -8px;
    top: 0;
    max-width: none !important;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .recent-blogs-section {
        padding: 50px 0;
    }

    .blog-card-img-wrapper {
        height: 200px;
    }

    .blog-card-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .recent-blogs-section {
        padding: 45px 0 !important;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-title {
        font-size: 56px;
        line-height: 0.95;
        letter-spacing: -1px;
    }

    .blog-desc {
        font-size: 16px;
        line-height: 1.3;
    }

    .blog-card {
        border-radius: 18px;
    }

    .blog-card-img-wrapper {
        height: 168px;
    }

    .blog-badge {
        font-size: 10px;
        padding: 5px 11px;
    }

    .blog-card-content {
        padding: 17px;
    }

    .blog-meta {
        font-size: 11px;
    }

    .blog-card-title {
        font-size: 22px;
        line-height: 27px;
    }

    .blog-card-text {
        font-size: 13px;
        line-height: 21px;
        margin-bottom: 16px;
    }

    .blog-card-link {
        font-size: 12.5px;
    }

    .blog-view-btn {
        width: 185px;
        height: 50px;
        font-size: 14px;
    }

    .blog-leaf {
        width: 125px;
        top: -140px;
    }
}

/* RUNG 3 - 420 to 575px */
@media (min-width: 420px) and (max-width: 575.98px) {
    .recent-blogs-section {
        padding: 50px 0 !important;
    }

    .blog-subtitle {
        font-size: 13px;
    }

    .blog-title {
        font-size: 56px;
        line-height: 0.95;
    }

    .blog-desc {
        font-size: 16px;
        line-height: 1.3;
    }

    .blog-card-img-wrapper {
        height: 200px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 25px;
        line-height: 30px;
    }

    .blog-card-text {
        font-size: 14px;
        line-height: 23px;
    }

    .blog-view-btn {
        width: 200px;
        height: 53px;
        font-size: 15px;
    }

    .blog-leaf {
        width: 150px;
        top: -165px;
    }
}

/* RUNG 4 - 576 to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container-blogs {
        max-width: 100% !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .recent-blogs-section {
        padding: 55px 0 !important;
    }

    .blog-title {
        font-size: 58px;
        line-height: 0.95;
    }

    .blog-desc {
        font-size: 22px;
        line-height: 1.3;
    }

    .blog-card-img-wrapper {
        height: 250px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-card-title {
        font-size: 27px;
        line-height: 33px;
    }

    .blog-card-text {
        font-size: 14.5px;
        line-height: 24px;
    }

    .blog-view-btn {
        width: 210px;
        height: 55px;
    }

    .blog-leaf {
        width: 175px;
        top: -190px;
    }
}

/* RUNG 5 - 768 to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .recent-blogs-section {
        padding: 60px 0 !important;
    }

    .blog-title {
        font-size: 64px;
        line-height: 0.95;
    }

    .blog-desc {
        font-size: 22px;
        line-height: 1.3;
    }

    .blog-view-btn {
        width: 215px;
        height: 56px;
    }

    .blog-leaf {
        width: 210px;
        top: -215px;
    }
}

/*=========================================================
        LAPTOP / SHORT DESKTOP SCREENS
        1280x720 / 1366x768 / 1440x900
=========================================================*/

@media (min-width: 992px) and (max-height: 900px) {
    .recent-blogs-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .blog-title {
        font-size: clamp(3.5rem, 5vw, 64px);
        line-height: 0.95;
    }

    .blog-desc {
        font-size: 22px;
        line-height: 1.3;
    }

    .blog-card-img-wrapper {
        height: 224px;
    }

    .blog-card-content {
        height: 310px;
    }
}

/*=========================================================
        SHORT LAPTOP SCREENS
        1280x720 / 1366x768
=========================================================*/

@media (min-width: 992px) and (max-height: 800px) {


    .blog-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .blog-desc {
        font-size: 20px;
        line-height: 1.3;
    }

    .blog-card-img-wrapper {
        height: 207px;
    }

    .blog-card-content {
        padding: 18px;
        height: 285px;
    }

    .blog-card-title {
        font-size: 31px;
        line-height: 36px;
        width: 98%;
    }

    .blog-card-text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 14px;
    }
}

/*=========================================================
        VERY SHORT LAPTOP SCREENS
        1280x700 / 1366x650
=========================================================*/

@media (min-width: 992px) and (max-height: 700px) {
    .recent-blogs-section {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .blog-title {
        font-size: 48px;
        line-height: 0.95;
    }

    .blog-desc {
        font-size: 18px;
        line-height: 1.3;
    }

    .blog-card-content {
        height: 270px;
    }

    .blog-card-img-wrapper {
        height: 140px;
    }
}

/*=========================================================
        LARGE DESKTOP SCREENS
=========================================================*/

@media (min-width: 1600px) and (min-height: 900px) {
    .recent-blogs-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .blog-title {
        font-size: 80px;
        line-height: 0.95;
    }

    .blog-desc {
        font-size: 26px;
        line-height: 1.3;
    }

    .blog-card-img-wrapper {
        height: 240px;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-card-title {
        font-size: 31px;
        line-height: 36px;
    }

    .blog-card-text {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 20px;
    }
}

/* arrows hidden on desktop */
.blog-slider-nav {
    display: none;
}

.blog-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(76, 93, 75, .35);
    background: transparent;
    color: #4C5D4B;
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease, opacity .3s ease;
}

.blog-nav-btn:active {
    background: #4C5D4B;
    color: #ffffff;
}

.blog-nav-btn:disabled {
    opacity: .3;
}

@media (max-width: 991.98px) {

    .blog-slider-nav {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 6px;
    }

    /* the Bootstrap row becomes a horizontal snap scroller */
    #blogSlider {
        flex-wrap: nowrap;
        justify-content: flex-start !important;
        /* ← ADD: kills the centring */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin-left: 0;
        margin-right: 0;
        scrollbar-width: none;
    }

    #blogSlider::-webkit-scrollbar {
        display: none;
    }

    #blogSlider>[class*="col-"] {
        flex: 0 0 55%;
        max-width: 55%;
        scroll-snap-align: start;
        /* ← was center */
    }
}

/* one card at a time on phones */
@media (max-width: 767.98px) {
    #blogSlider>[class*="col-"] {
        flex: 0 0 85%;
        max-width: 85%;
    }
}

/* =========================================================
            SANCTUARY SECTION
========================================================= */

.sanctuary-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-main);
}


/* =========================================================
            HEADER
========================================================= */

.sanctuary-header {
    padding: 0 20px 15px;
}

.sanctuary-title {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--heading);
    /* typography mirrored 1:1 from .philosophy-title */
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.sanctuary-subtitle {
    margin: 12px 0 0;
    font-family: var(--font-heading);
    color: var(--text);
    /* typography mirrored 1:1 from .philosophy-subtitle: no line-height
       declared, so it inherits Bootstrap's body 1.5 exactly as philosophy does */
    font-size: clamp(1.05rem, 2.63vw, 26px);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.sanctuary-divider {
    width: 130px;
    height: 1.62px;
    display: block;
    margin: 0px auto;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(139, 120, 98, 0.51) 50%, rgba(0, 0, 0, 0) 100%);
}


/* =========================================================
            IMAGE GRID
========================================================= */

.sanctuary-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.05fr 1.8fr 1.7fr 1.1fr 1.8fr;

    gap: 5px;

    align-items: stretch;
}


/* Each column */
.sanctuary-column {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 0;
}


/* =========================================================
            IMAGE BOX
========================================================= */

.sanctuary-image {
    position: relative;
    z-index: 2;
    width: 100%;

    overflow: hidden;

    border-radius: 8px;
}

.sanctuary-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
    border-radius: 9px;
}


/* Subtle hover specifically for standard images and sub-boxes */
.sanctuary-image:hover>img,
.col-2-left-box:hover img,
.col-2-right-box:hover img {
    transform: scale(1.04);
}


/* =========================================================
            COLUMN 1
========================================================= */

.sanctuary-column-1 .sanctuary-img-tall {
    height: 215px;
}

.sanctuary-column-1 .sanctuary-img-small {
    height: 105px;
}

.sanctuary-column-1 .sanctuary-img-wide {
    height: 105px;
}


/* =========================================================
            COLUMN 2
========================================================= */

.sanctuary-col2-top-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.sanctuary-column-2 .sanctuary-img-small-80 {
    height: 105px;
    width: 80%;
    /* Takes 80% width as requested */
}

.sanctuary-column-2 .sanctuary-img-large {
    height: 165px;
}

.sanctuary-column-2 .sanctuary-img-bottom {
    height: 155px;
    overflow: visible;
    /* Allows individual sub-box corners to clip individually */
}

.col-2-sub-box {
    display: flex;
    gap: 6px;
    height: 100%;
}

.col-2-left-box,
.col-2-right-box {
    width: 50%;
    height: 100%;
    overflow: hidden;
    /* Fixes individual image hover scaling */
    border-radius: 8px;
}


/* =========================================================
            COLUMN 3
========================================================= */

.sanctuary-column-3 .sanctuary-img-wide-fill {
    height: 105px;
    width: 100%;
    /* Pulls left to cover the gap left by the 80% image in Column 2 */
    margin-left: calc(-20% - 5px);
    width: calc(120% + 5px);
}

/* Positions the image crop to align from the bottom */
.sanctuary-column-3 .sanctuary-img-wide-fill img {
    object-position: center 76%;
}

.sanctuary-column-3 .sanctuary-img-center {
    height: 325px;
}


/* =========================================================
            COLUMN 4
========================================================= */

.sanctuary-column-4 .sanctuary-img-tall {
    height: 230px;
}

.sanctuary-column-4 .sanctuary-img-bottom {
    height: 200px;
}


/* =========================================================
            COLUMN 5
========================================================= */

.sanctuary-column-5 .sanctuary-img-top {
    height: 120px;
}

.sanctuary-column-5 .sanctuary-img-tall {
    height: 310px;
}


/* =========================================================
            FOOTER
========================================================= */

.sanctuary-footer {
    padding: 12px 20px 0;
}

.sanctuary-quote {
    margin: 0 auto 18px;
    font-family: var(--font-heading);
    color: var(--text);
    font-size: clamp(22px, 2vw, 30px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
}

.san-view-btn {
    background: #4C5D4B !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    width: 195px;
    height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
}

/* =========================================================
            TABLET
========================================================= */

@media (max-width: 991px) {

    .sanctuary-section {
        padding-top: 45px;
    }

    .sanctuary-grid {
        grid-template-columns:
            1fr 1.5fr 1.5fr;

        gap: 5px;
    }

    /* Hide last two columns */
    .sanctuary-column-4,
    .sanctuary-column-5 {
        display: none;
    }

    .sanctuary-column-1 .sanctuary-img-tall {
        height: 180px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide {
        height: 90px;
    }

    .sanctuary-column-2 .sanctuary-img-small-80 {
        height: 90px;
        width: 100%;
    }

    .sanctuary-column-3 .sanctuary-img-wide-fill {
        height: 90px;
        margin-left: 0;
        width: 100%;
    }

    .sanctuary-column-2 .sanctuary-img-large {
        height: 140px;
    }

    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 130px;
    }

    .sanctuary-column-3 .sanctuary-img-center {
        height: 275px;
    }
}


/* =========================================================
            MOBILE
========================================================= */

@media (max-width: 767px) {

    .sanctuary-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .sanctuary-header {
        padding-bottom: 25px;
    }

    .sanctuary-title {
        font-size: 42px;
    }

    .sanctuary-subtitle {
        font-size: 20px;
    }

    .sanctuary-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 5px;
    }

    .sanctuary-column-3 {
        display: none;
    }

    .sanctuary-column-1 .sanctuary-img-tall,
    .sanctuary-column-2 .sanctuary-img-large {
        height: 160px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 100px;
    }

    .sanctuary-quote {
        font-size: 20px;
        line-height: 1.5;
    }

    .sanctuary-quote br {
        display: none;
    }
}



@media (max-width: 480px) {
    .sanctuary-section {
        padding-top: 36px;
        padding-bottom: 26px;
    }

    .sanctuary-header {
        padding: 0 14px 20px;
    }

    .sanctuary-title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .sanctuary-subtitle {
        font-size: 16px;
    }

    .sanctuary-divider {
        width: 105px;
    }

    .sanctuary-column-1 .sanctuary-img-tall,
    .sanctuary-column-2 .sanctuary-img-large {
        height: 132px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 84px;
    }

    .sanctuary-quote {
        font-size: 16px;
        line-height: 1.5;
    }

    .san-view-btn {
        width: 170px;
        height: 46px;
        font-size: 13px;
    }
}

/* RUNG 3 - 420 to 575px */
.sanctuary-title {
    .sanctuary-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .sanctuary-title {
        font-size: 56px;
    }

    .sanctuary-subtitle {
        font-size: 16px;
    }

    .sanctuary-column-1 .sanctuary-img-tall,
    .sanctuary-column-2 .sanctuary-img-large {
        height: 148px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 94px;
    }

    .sanctuary-quote {
        font-size: 18px;
    }

    .san-view-btn {
        width: 182px;
        height: 48px;
        font-size: 13.5px;
    }
}

/* RUNG 4 - 576 to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .sanctuary-section {
        padding-top: 45px;
        padding-bottom: 34px;
    }

    .sanctuary-title {
        font-size: 58px;
    }

    .sanctuary-subtitle {
        font-size: 21px;
    }

    .sanctuary-grid {
        gap: 6px;
    }

    .sanctuary-column {
        gap: 6px;
    }

    .sanctuary-column-1 .sanctuary-img-tall,
    .sanctuary-column-2 .sanctuary-img-large {
        height: 200px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 126px;
    }

    .sanctuary-quote {
        font-size: 21px;
    }

    .san-view-btn {
        width: 190px;
        height: 50px;
    }
}

/* RUNG 5 - 768 to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sanctuary-title {
        font-size: 64px;
    }

    .sanctuary-subtitle {
        font-size: 22px;
    }

    .sanctuary-quote {
        font-size: 23px;
    }
}

/* large desktop 1400-1599 */
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .sanctuary-column-1 .sanctuary-img-tall {
        height: 240px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-3 .sanctuary-img-wide-fill {
        height: 117px;
    }

    .sanctuary-column-2 .sanctuary-img-large {
        height: 185px;
    }

    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 172px;
    }

    .sanctuary-column-3 .sanctuary-img-center {
        height: 362px;
    }

    .sanctuary-column-4 .sanctuary-img-tall {
        height: 256px;
    }

    .sanctuary-column-4 .sanctuary-img-bottom {
        height: 223px;
    }

    .sanctuary-column-5 .sanctuary-img-top {
        height: 134px;
    }

    .sanctuary-column-5 .sanctuary-img-tall {
        height: 345px;
    }
}

/* XL desktop 1600+ */
@media (min-width: 1600px) {

    .sanctuary-grid,
    .sanctuary-column {
        gap: 6px;
    }

    .sanctuary-column-1 .sanctuary-img-tall {
        height: 268px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-3 .sanctuary-img-wide-fill {
        height: 130px;
    }

    .sanctuary-column-2 .sanctuary-img-large {
        height: 206px;
    }

    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 192px;
    }

    .sanctuary-column-3 .sanctuary-img-center {
        height: 404px;
    }

    .sanctuary-column-4 .sanctuary-img-tall {
        height: 286px;
    }

    .sanctuary-column-4 .sanctuary-img-bottom {
        height: 248px;
    }

    .sanctuary-column-5 .sanctuary-img-top {
        height: 149px;
    }

    .sanctuary-column-5 .sanctuary-img-tall {
        height: 385px;
    }
}

/* 2K / 4K */
@media (min-width: 1920px) {
    .sanctuary-column-1 .sanctuary-img-tall {
        height: 320px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-3 .sanctuary-img-wide-fill {
        height: 156px;
    }

    .sanctuary-column-2 .sanctuary-img-large {
        height: 246px;
    }

    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 230px;
    }

    .sanctuary-column-3 .sanctuary-img-center {
        height: 484px;
    }

    .sanctuary-column-4 .sanctuary-img-tall {
        height: 342px;
    }

    .sanctuary-column-4 .sanctuary-img-bottom {
        height: 298px;
    }

    .sanctuary-column-5 .sanctuary-img-top {
        height: 178px;
    }

    .sanctuary-column-5 .sanctuary-img-tall {
        height: 462px;
    }
}

/* short laptop - height <= 900 */
@media (min-width: 992px) and (max-height: 900px) {
    .sanctuary-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .sanctuary-title {
        font-size: clamp(3.5rem, 5vw, 64px);
    }

    .sanctuary-subtitle {
        font-size: 22px;
    }

    .sanctuary-quote {
        font-size: 24px;
    }
}

/* short laptop - height <= 800 */
@media (min-width: 992px) and (max-height: 800px) {


    .sanctuary-title {
        font-size: 54px;
    }

    .sanctuary-title {
        line-height: 0.9;
    }

    .sanctuary-subtitle {
        font-size: 20px;
    }

    .sanctuary-column-1 .sanctuary-img-tall {
        height: 175px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-3 .sanctuary-img-wide-fill {
        height: 85px;
    }

    .sanctuary-column-2 .sanctuary-img-large {
        height: 134px;
    }

    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 126px;
    }

    .sanctuary-column-3 .sanctuary-img-center {
        height: 265px;
    }

    .sanctuary-column-4 .sanctuary-img-tall {
        height: 187px;
    }

    .sanctuary-column-4 .sanctuary-img-bottom {
        height: 163px;
    }

    .sanctuary-column-5 .sanctuary-img-top {
        height: 98px;
    }

    .sanctuary-column-5 .sanctuary-img-tall {
        height: 252px;
    }

    .sanctuary-quote {
        font-size: 21px;
        margin-bottom: 14px;
    }
}

/* very short laptop */
@media (min-width: 992px) and (max-height: 700px) {
    .sanctuary-section {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .sanctuary-title {
        font-size: 48px;
    }

    .sanctuary-subtitle {
        font-size: 18px;
    }

    .sanctuary-column-1 .sanctuary-img-tall {
        height: 152px;
    }

    .sanctuary-column-1 .sanctuary-img-small,
    .sanctuary-column-1 .sanctuary-img-wide,
    .sanctuary-column-2 .sanctuary-img-small-80,
    .sanctuary-column-3 .sanctuary-img-wide-fill {
        height: 74px;
    }

    .sanctuary-column-2 .sanctuary-img-large {
        height: 117px;
    }

    .sanctuary-column-2 .sanctuary-img-bottom {
        height: 109px;
    }

    .sanctuary-column-3 .sanctuary-img-center {
        height: 230px;
    }

    .sanctuary-column-4 .sanctuary-img-tall {
        height: 162px;
    }

    .sanctuary-column-4 .sanctuary-img-bottom {
        height: 142px;
    }

    .sanctuary-column-5 .sanctuary-img-top {
        height: 85px;
    }

    .sanctuary-column-5 .sanctuary-img-tall {
        height: 219px;
    }
}

/* large + tall screens */
@media (min-width: 1600px) and (min-height: 900px) {
    .sanctuary-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .sanctuary-title {
        font-size: 80px;
    }

    .sanctuary-subtitle {
        font-size: 26px;
    }

    .sanctuary-quote {
        font-size: 30px;
        margin-bottom: 18px;
    }
}

/* =========================================================
            TESTIMONIAL SECTION
========================================================= */

.testimonials-section {
    position: relative;
    width: 100%;
    background: var(--bg-main);
}


/* =========================================================
            HEADER
========================================================= */

.testimonials-header {
    position: relative;
    z-index: 2;
    padding: 0 20px 35px;
}

.testimonials-title {
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.testimonials-subtitle {
    margin: 15px 0 0;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 26px, 26px);
    font-weight: 400;
    letter-spacing: 0.5px;
}


/* =========================================================
            TESTIMONIAL SLIDER
========================================================= */

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    width: max-content;
    gap: 28px;
    animation: testimonialInfiniteSlide 35s linear infinite;
}

.testimonials-slider-wrapper:hover .testimonials-slider {
    animation-play-state: paused;
}


/* =========================================================
            TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    flex: 0 0 358px;
    min-height: 480px;
    height: 460px;
    padding: 38px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgb(76 93 75 / 87%) 0%, rgba(71, 87, 71, 1) 100%);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
    border: 1px solid #ffffff7a;
}

.testimonial-quote-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: #FFFFFF66;
    color: #FFFFFF73;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1;
}

.testimonial-text {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 18px;
    color: #D4B5A0;
    font-size: 17px;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    margin: 30px 0 30px;
    background: #FFFFFF0B;
}

.testimonial-author p {
    margin: 5px 0 0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
    font-weight: 2;
}

.testimonial-author span {
    display: block;
    margin-top: 10px;
    color: #FFFFFFB2;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 17px;
}

.testimonial-author h4 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
}


/* =========================================================
            FOOTER
========================================================= */

.testimonials-footer {
    position: relative;
    z-index: 2;
    padding: 45px 20px 0;
}

.testimonials-footer p {
    margin: 0;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.2vw, 34px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.3;
}


/* =========================================================
            INFINITE SLIDER ANIMATION
========================================================= */

@keyframes testimonialInfiniteSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 14px));
    }
}


/* =========================================================
            MOBILE / TABLET CARD RESPONSIVENESS
            NON-TYPOGRAPHY RULES PRESERVED
========================================================= */

@media (max-width: 991px) {
    .testimonials-section {
        padding-top: 45px;
    }

    .testimonial-card {
        flex-basis: 380px;
        min-height: 350px;
    }

    .testimonials-slider {
        gap: 20px;
        animation-duration: 30s;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0 30px;
    }

    .testimonials-header {
        padding-bottom: 20px;
    }

    .testimonials-slider {
        gap: 15px;
        animation-duration: 25s;
    }

    .testimonial-card {
        flex-basis: 300px;
        min-height: auto;
        height: auto;
        padding: 25px;
    }

    .testimonial-divider {
        margin: 15px 0 15px;
    }

    .testimonial-quote-icon {
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonials-footer {
        padding-top: 20px;
    }

    .testimonials-footer p {
        font-size: 23px;
    }

    .testimonials-footer br {
        display: none;
    }
}


@media (max-width: 480px) {
    .testimonials-title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonials-footer p {
        font-size: 16px;
    }
}


/* 420px to 575px */
@media (min-width: 420px) and (max-width: 575.98px) {
    .testimonials-title {
        font-size: 56px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }
}


/* 576px to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .testimonials-title {
        font-size: 58px;
    }

    .testimonials-subtitle {
        font-size: 20px;
    }
}


/* 768px to 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .testimonials-title {
        font-size: 64px;
    }

    .testimonials-subtitle {
        font-size: 22px;
    }
}


/* =========================================================
            PHILOSOPHY-MATCHED TYPOGRAPHY
            LAPTOP / SHORT DESKTOP
            992px+ / Height <= 900px
========================================================= */

@media (min-width: 992px) and (max-height: 900px) {
    .testimonials-title {
        font-size: clamp(3.5rem, 5vw, 64px);
    }

    .testimonials-subtitle {
        font-size: 22px;
    }

    .testimonial-card {
        height: 450px;
        min-height: 450px;
        padding: 30px;
    }

    .testimonials-header {
        padding: 0 5px 15px;
    }

    .testimonials-footer {
        padding: 15px 20px 0;
    }

    .testimonials-footer p {
        font-size: 24px;
    }

    .testimonial-divider {
        margin: 20px 0 20px;
    }

}

.testimonials-footer {
    padding: 17px 20px 0;
}

/* =========================================================
            PHILOSOPHY-MATCHED TYPOGRAPHY
            SHORT LAPTOP
            992px+ / Height <= 800px
========================================================= */

@media (min-width: 992px) and (max-height: 800px) {
    .testimonials-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .testimonials-subtitle {
        font-size: 20px;
    }
}


/* =========================================================
            PHILOSOPHY-MATCHED TYPOGRAPHY
            VERY SHORT LAPTOP
            992px+ / Height <= 700px
========================================================= */

@media (min-width: 992px) and (max-height: 700px) {
    .testimonials-title {
        font-size: 48px;
    }

    .testimonials-subtitle {
        font-size: 18px;
    }

    .testimonial-card {
        height: 400px;
        min-height: 400px;
        padding: 20px 20px;
    }

    .testimonial-quote-icon {
        margin-bottom: 15px;
    }

    .testimonial-rating {
        margin-top: 15px;
    }

    .testimonial-divider {
        margin: 15px 0 15px;
    }



}


/* =========================================================
            PHILOSOPHY-MATCHED TYPOGRAPHY
            LARGE DESKTOP
            1600px+ / Height >= 900px
========================================================= */

@media (min-width: 1600px) and (min-height: 900px) {
    .testimonials-title {
        font-size: 80px;
    }

    .testimonials-subtitle {
        font-size: 26px;
    }
}

/* =========================================================
            ABOUT SECTION
========================================================= */

.about-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-main);
}

/* Custom Responsive Container */
.container-about {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-about {
        max-width: 540px;
    }
}

/* Tablet Screens: Fixed Overflow & Responsive Container-Fluid Layout */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .container-about {
        max-width: 100% !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .about-content {
        grid-template-columns: minmax(300px, 40%) minmax(0, 60%) !important;
    }

    .about-visual {
        padding-right: 25px;
    }

    .about-main-image {
        height: 520px;
    }

    .about-small-image {
        top: -15px;
        right: 0;
        width: 120px;
        height: 120px;
    }

    .about-info {
        padding-left: 15px;
    }

    .about-info-title {
        font-size: 36px;
    }

    .about-description p {
        font-size: 13.5px;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    /* FIX: Flexible 3-box row layout for tablets without screen overflow */
    .about-features {
        display: flex !important;
        width: 100%;
        gap: 8px;
        margin-top: 10px;
    }

    .about-feature {
        flex: 1;
        min-width: 0;
        padding: 8px 6px;
        font-size: 11px;
        min-height: 52px;
        white-space: normal !important;
        text-align: center;
        gap: 6px;
        flex-direction: column;
    }

    .about-feature-icon {
        font-size: 16px;
    }

    .about-feature span {
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    .about-quote {
        font-size: 13.5px;
    }
}

@media (min-width: 1200px) {
    .container-about {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-about {
        max-width: 1320px;
    }
}


/* =========================================================
            HEADER
========================================================= */

.about-header {
    margin-bottom: 65px;
}

.about-title {
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.about-subtitle {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.63vw, 26px);
    font-weight: 400;
    letter-spacing: 0.5px;
}


/* =========================================================
            MAIN CONTENT
========================================================= */

.about-content {
    display: grid;
    grid-template-columns: minmax(350px, 42%) minmax(0, 58%);
    align-items: start;
}


/* =========================================================
            IMAGE AREA
========================================================= */

.about-visual {
    position: relative;
    width: 100%;
    padding-right: 55px;
}

.about-main-image {
    width: 100%;
    height: 510px;
    overflow: hidden;
    border-radius: 17px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-main-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
            SMALL OVERLAPPING IMAGE
========================================================= */

.about-small-image {
    position: absolute;
    top: -20px;
    right: 0;
    width: 155px;
    height: 155px;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.about-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}


/* =========================================================
            RIGHT CONTENT
========================================================= */

.about-info {
    padding-left: 35px;
    padding-top: 0;
}

.about-info-title {
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: clamp(40px, 3.2vw, 55px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
}

.about-description {
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}

.about-description p {
    margin: 0 0 22px;
    font-size: 16px;
    color: #7A7168;
    font-weight: 400;
}

.about-description p:last-child {
    margin-bottom: 15px;
}


/* =========================================================
            FEATURE BOXES
========================================================= */

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.about-feature {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 13px;
    background: linear-gradient(90deg, rgb(76 93 75 / 63%) 0%, rgba(76, 93, 75, 1) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    white-space: nowrap;
    justify-content: center;
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 23px;
}


/* =========================================================
            BOTTOM QUOTE
========================================================= */

.about-quote {
    margin: 18px 0 0;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

/*=========================================================================
    RESPONSIVE TYPOGRAPHY
    Same title & subtitle typography pattern as Philosophy section
=========================================================================*/

/* RUNG 2 - 375 to 419px */
@media (max-width:480px) {
    .about-title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .about-subtitle {
        font-size: 16px;
    }
}

/* RUNG 3 - 420 to 575px */
@media (min-width: 420px) and (max-width: 575.98px) {
    .about-title {
        font-size: 56px;
    }

    .about-subtitle {
        font-size: 16px;
    }
}

/* RUNG 4 - 576 to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .about-title {
        font-size: 58px;
    }

    .about-subtitle {
        font-size: 21px;
    }

}

/* RUNG 5 - 768 to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .about-title {
        font-size: 64px;
    }

    .about-subtitle {
        font-size: 22px;
    }
}

@media (min-width: 992px) and (max-height: 900px) {
    .about-description p {
        margin: 0 0 18px;
        font-size: 14px;
    }

    .about-header {
        margin-bottom: 50px;
    }
}


/* =========================================================
            MOBILE LAYOUT
========================================================= */

@media (max-width: 767.98px) {

    .about-section {
        padding: 40px 20px 40px;
    }

    .about-header {
        margin-bottom: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .about-visual {
        width: 85%;
        margin: 0 auto 50px;
        padding-right: 0;
    }

    .about-main-image {
        height: 450px;
        border-radius: 15px;
    }

    .about-small-image {
        top: -15px;
        right: -25px;
        width: 125px;
        height: 125px;
        border-width: 2px;
    }

    .about-info {
        padding-left: 0;
    }

    .about-info-title {
        font-size: 40px;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.55;
    }

    .about-description p {
        margin-bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .about-feature {
        min-height: 55px;
        justify-content: center;
        padding: 10px 14px;
        font-size: 10px;
        align-items: center;
        flex-direction: column;
    }

    .about-quote {
        margin-top: 25px;
        font-size: 17px;
    }

    .about-quote br {
        display: none;
    }
}


/* =========================================================
            SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-visual {
        width: 258px;
        margin-bottom: 8px;
    }

    .about-main-image {
        height: 323px;
    }

    .about-small-image {
        width: 97px;
        height: 97px;
        right: -20px;
    }

    .about-info-title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .about-description {
        font-size: 13px;
    }

    .about-quote {
        font-size: 16px;
        margin-top: 8px;
    }

    .about-feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #ffffff;
        font-size: 15px;
    }

    .about-feature span {
        font-size: 9px;
    }

    .about-description p {
        margin: 0 0 22px;
        font-size: 12px;
        color: #7A7168;
        font-weight: 400;
        margin-bottom: 8px;
    }

    .about-header {
        margin-bottom: 25px;
    }

    .about-features {
        margin-top: 8px;
    }

    .about-description p:last-child {
        margin-bottom: 8px;
    }
}


/* =========================================================
            SHORT LAPTOP - HEIGHT <= 900px
========================================================= */

@media (min-width: 992px) and (max-height: 900px) {
    .about-title {
        font-size: clamp(3.5rem, 5vw, 64px);
    }

    .about-subtitle {
        font-size: 22px;
    }
}


/* =========================================================
            SHORT LAPTOP - HEIGHT <= 800px
========================================================= */

@media (min-width: 992px) and (max-height: 800px) {
    .about-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .about-subtitle {
        font-size: 20px;
    }
}


/* =========================================================
            VERY SHORT LAPTOP - HEIGHT <= 700px
========================================================= */

@media (min-width: 992px) and (max-height: 700px) {
    .about-title {
        font-size: 48px;
    }

    .about-subtitle {
        font-size: 18px;
    }
}


/* =========================================================
            LARGE + TALL SCREENS
========================================================= */

@media (min-width: 1600px) and (min-height: 900px) {
    .about-title {
        font-size: 80px;
    }

    .about-subtitle {
        font-size: 26px;
    }
}

@media(max-width:360px) {
    .container-about {
        padding-right: 0;
        padding-left: 0;
    }

    .about-feature {
        padding: 10px 10px;
    }

    .about-info-title {
        font-size: 38px;
    }
}

/* =========================================================
            SKIN JOURNEY CTA SECTION
========================================================= */

.skin-journey-cta {
    position: relative;
    width: 100%;
    min-height: 322px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
}


/* =========================================================
            CONTENT
========================================================= */

.skin-journey-cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.skin-journey-cta-title {
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}


/* =========================================================
            BUTTON
========================================================= */

.skin-journey-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 54px;
    margin-top: 28px;
    padding: 0 30px;
    border-radius: 50px;
    background-color: var(--primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 7px 10px rgba(0, 0, 0, .25);
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.skin-journey-cta-btn:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .25);
}


/* =========================================================
            NOTE
========================================================= */

.skin-journey-cta-note {
    margin: 27px 0 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
}

.cta-leaf {
    position: absolute;
    right: 0;
    top: -330px;
    width: 280px;
    height: 650px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cta-leaf .leaf-img {
    position: absolute;
    left: -8px;
    top: 0;
    max-width: none !important;
}


/* =========================================================
            PART 2 - RESPONSIVE
========================================================= */

/* touch devices */
@media (hover: none) {
    .skin-journey-cta-btn:hover {
        background-color: var(--primary);
        color: #ffffff;
        transform: none;
        box-shadow: 0 7px 10px rgba(0, 0, 0, .25);
    }
}

@media (prefers-reduced-motion: reduce) {
    .skin-journey-cta-btn {
        transition-duration: 0.01ms !important;
    }
}



/* =========================================================
            RUNG 2 - 480px TO 575px
========================================================= */

@media (max-width: 480px) {

    .skin-journey-cta {
        min-height: 300px;
        padding: 42px 14px 45px;
    }

    .skin-journey-cta-title {
        font-size: 56px;
        line-height: 0.95;
        letter-spacing: -1px;
    }

    .skin-journey-cta-title br {
        display: none;
    }

    .skin-journey-cta-btn {
        min-width: 170px;
        height: 46px;
        margin-top: 21px;
        padding: 0 24px;
        font-size: 13px;
    }

    .skin-journey-cta-note {
        margin-top: 18px;
        font-size: 11px;
    }

    .cta-leaf {
        width: 125px;
        top: -140px;
    }
}


/* =========================================================
            RUNG 3 - 420px TO 575px
========================================================= */

@media (min-width: 420px) and (max-width: 575.98px) {

    .skin-journey-cta {
        min-height: 320px;
        padding: 45px 15px 48px;
    }

    .skin-journey-cta-title {
        font-size: 56px;
        line-height: 0.95;
    }

    .skin-journey-cta-title br {
        display: none;
    }

    .skin-journey-cta-btn {
        min-width: 182px;
        height: 48px;
        margin-top: 23px;
        padding: 0 26px;
        font-size: 13.5px;
    }

    .skin-journey-cta-note {
        margin-top: 20px;
        font-size: 12px;
    }

    .cta-leaf {
        width: 150px;
        top: -165px;
    }
}


/* =========================================================
            RUNG 4 - 576px TO 767px
========================================================= */

@media (min-width: 576px) and (max-width: 767.98px) {

    .skin-journey-cta {
        min-height: 340px;
        padding: 50px 20px 52px;
    }

    .skin-journey-cta-title {
        font-size: 58px;
        line-height: 0.95;
    }

    .skin-journey-cta-title br {
        display: none;
    }

    .skin-journey-cta-btn {
        min-width: 190px;
        height: 50px;
        margin-top: 25px;
        padding: 0 28px;
        font-size: 14px;
    }

    .skin-journey-cta-note {
        margin-top: 22px;
        font-size: 13px;
    }

    .cta-leaf {
        width: 175px;
        top: -190px;
    }
}


/* =========================================================
            RUNG 5 - 768px TO 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .skin-journey-cta {
        min-height: 320px;
        padding: 50px 30px;
    }

    .skin-journey-cta-title {
        font-size: 64px;
        line-height: 0.95;
    }

    .skin-journey-cta-btn {
        min-width: 195px;
        height: 52px;
        margin-top: 26px;
        font-size: 14px;
    }

    .skin-journey-cta-note {
        font-size: 15px;
    }

    .cta-leaf {
        width: 210px;
        top: -215px;
    }
}


/* =========================================================
            LARGE DESKTOP - 1400px TO 1599px
========================================================= */

@media (min-width: 1400px) and (max-width: 1599.98px) {

    .skin-journey-cta-title {
        font-size: 80px;
    }

    .skin-journey-cta-btn {
        min-width: 205px;
        height: 55px;
    }

    .skin-journey-cta-note {
        font-size: 18px;
    }
}


/* =========================================================
            XL DESKTOP - 1600px+
========================================================= */

@media (min-width: 1600px) {

    .skin-journey-cta {
        min-height: 340px;
    }

    .skin-journey-cta-title {
        font-size: 80px;
    }

    .skin-journey-cta-btn {
        min-width: 210px;
        height: 56px;
        margin-top: 30px;
        font-size: 15px;
    }

    .skin-journey-cta-note {
        font-size: 18px;
    }

    .cta-leaf {
        width: 280px;
    }
}


/* =========================================================
            SHORT LAPTOP - HEIGHT <= 900px
========================================================= */

@media (min-width: 992px) and (max-height: 900px) {

    .skin-journey-cta {
        min-height: 300px;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .skin-journey-cta-title {
        font-size: clamp(3.5rem, 5vw, 64px);
        line-height: 0.9;
    }

    .skin-journey-cta-btn {
        height: 51px;
        margin-top: 24px;
    }

    .skin-journey-cta-note {
        margin-top: 20px;
        font-size: 15px;
    }
}


/* =========================================================
            SHORT LAPTOP - HEIGHT <= 800px
========================================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .skin-journey-cta {
        min-height: 275px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .skin-journey-cta-title {
        font-size: 54px;
        line-height: 0.9;
    }

    .skin-journey-cta-btn {
        min-width: 190px;
        height: 48px;
        margin-top: 20px;
        font-size: 14px;
    }

    .skin-journey-cta-note {
        margin-top: 17px;
        font-size: 14px;
    }
}


/* =========================================================
            VERY SHORT LAPTOP - HEIGHT <= 700px
========================================================= */

@media (min-width: 992px) and (max-height: 700px) {

    .skin-journey-cta {
        min-height: 245px;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .skin-journey-cta-title {
        font-size: 48px;
        line-height: 0.9;
    }

    .skin-journey-cta-btn {
        min-width: 180px;
        height: 45px;
        margin-top: 17px;
        font-size: 13px;
    }

    .skin-journey-cta-note {
        margin-top: 14px;
        font-size: 13px;
    }
}


/* =========================================================
            LARGE + TALL SCREENS
========================================================= */

@media (min-width: 1600px) and (min-height: 900px) {

    .skin-journey-cta {
        min-height: 350px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .skin-journey-cta-title {
        font-size: 80px;
        line-height: 0.95;
    }

    .skin-journey-cta-btn {
        min-width: 215px;
        height: 58px;
        margin-top: 30px;
        font-size: 16px;
    }

    .skin-journey-cta-note {
        margin-top: 22px;
        font-size: 18px;
    }
}


/* =========================================================
            CLINIC LOCATION SECTION
========================================================= */

.clinic-location-section {
    position: relative;
    width: 100%;
    background: var(--bg-main);
}


/* =========================================================
            HEADER
========================================================= */

.clinic-location-header {
    margin-bottom: 15px;
}

.clinic-location-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 20px;
    text-transform: uppercase;
}

.clinic-location-title {
    margin: 10px 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 80px, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.clinic-location-subtitle {
    margin: 15px 0 20px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.63vw, 26px);
    font-weight: 300;
    line-height: 1.5;
}


/* =========================================================
            GOOGLE MAP
========================================================= */

.clinic-location-map {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 15px auto 0;
    overflow: hidden;
    border-radius: 35px;
    background-color: #e8e5dc;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.clinic-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================================================
            TABLET
========================================================= */

@media (max-width: 991.98px) {

    .clinic-location-section {
        padding: 45px 0;
    }

    .clinic-location-header {
        margin-bottom: 20px;
    }

    .clinic-location-map {
        height: 400px;
        border-radius: 16px;
        z-index: 2;
    }
}


/* =========================================================
            MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .clinic-location-section {
        padding: 40px 15px 30px;
    }

    .clinic-location-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .clinic-location-header {
        margin-bottom: 25px;
    }

    .clinic-location-label {
        font-size: 13px;
        line-height: 18px;
    }

    .clinic-location-title {
        font-size: 42px;
    }

    .clinic-location-subtitle {
        font-size: 20px;
        line-height: 1.5;
    }

    .desktop-break {
        display: none;
    }

    .clinic-location-map {
        height: 280px;
        margin-top: 20px;
        border-radius: 15px;
    }
}

/* RUNG 2 - 375 to 419px */
@media (max-width: 480px) {

    .clinic-location-section {
        padding: 36px 14px 26px;
    }

    .clinic-location-header {
        margin-bottom: 20px;
    }

    .clinic-location-label {
        margin-bottom: 7px;
        font-size: 12px;
        line-height: 17px;
    }

    .clinic-location-title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .clinic-location-subtitle {
        margin: 9px 0 0;
        font-size: 16px;
        line-height: 1.5;
    }

    .clinic-location-map {
        height: 180px;
        margin-top: 18px;
        border-radius: 13px;
    }
}


/* RUNG 3 - 420 to 575px */
@media (min-width: 420px) and (max-width: 575.98px) {

    .clinic-location-section {
        padding: 40px 15px 30px;
    }

    .clinic-location-header {
        margin-bottom: 22px;
    }

    .clinic-location-label {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 18px;
    }

    .clinic-location-title {
        font-size: 56px;
    }

    .clinic-location-subtitle {
        margin: 10px 0 0;
        font-size: 16px;
        line-height: 1.5;
    }

    .clinic-location-map {
        height: 200px;
        margin-top: 20px;
        border-radius: 14px;
    }
}


/* RUNG 4 - 576 to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {

    .clinic-location-section {
        padding: 45px 20px 34px;
    }

    .clinic-location-header {
        margin-bottom: 25px;
    }

    .clinic-location-label {
        font-size: 14px;
        line-height: 20px;
    }

    .clinic-location-title {
        font-size: 58px;
    }

    .clinic-location-subtitle {
        margin-top: 12px;
        font-size: 21px;
        line-height: 1.5;
    }

    .clinic-location-map {
        height: 280px;
        margin-top: 22px;
        border-radius: 16px;
    }
}


/* RUNG 5 - 768 to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {

    .clinic-location-section {
        padding: 60px 2rem;
    }

    .clinic-location-label {
        font-size: 14px;
        line-height: 20px;
    }

    .clinic-location-title {
        font-size: 64px;
    }

    .clinic-location-subtitle {
        font-size: 22px;
        line-height: 1.5;
    }

    .clinic-location-map {
        height: 300px;
        border-radius: 18px;
    }
}


/* =========================================================
            LARGE DESKTOP 1400 - 1599px
========================================================= */

@media (min-width: 1400px) and (max-width: 1599.98px) {

    .clinic-location-title {
        font-size: 80px;
    }

    .clinic-location-subtitle {
        font-size: 25px;
    }

    .clinic-location-map {
        height: 345px;
        border-radius: 30px;
    }
}


/* =========================================================
            XL DESKTOP 1600+
========================================================= */

@media (min-width: 1600px) {

    .clinic-location-title {
        font-size: 80px;
    }

    .clinic-location-subtitle {
        font-size: 26px;
    }

    .clinic-location-map {
        height: 345px;
        border-radius: 35px;
    }
}


/* =========================================================
            2K / 4K
========================================================= */

@media (min-width: 1920px) {

    .clinic-location-title {
        font-size: 80px;
    }

    .clinic-location-subtitle {
        font-size: 26px;
    }

    .clinic-location-map {
        height: 500px;
        border-radius: 35px;
    }
}


/* =========================================================
            SHORT LAPTOP - HEIGHT <= 900
========================================================= */

@media (min-width: 992px) and (max-height: 900px) {

    .clinic-location-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .clinic-location-title {
        font-size: clamp(3.5rem, 5vw, 64px);
    }

    .clinic-location-subtitle {
        font-size: 22px;
    }

    .clinic-location-map {
        height: 345px;
    }
}


/* =========================================================
            SHORT LAPTOP - HEIGHT <= 800
========================================================= */

@media (min-width: 992px) and (max-height: 800px) {


    .clinic-location-title {
        font-size: 64px;
        line-height: 0.9;
    }

    .clinic-location-subtitle {
        font-size: 20px;
    }

    .clinic-location-map {
        height: 345px;
    }
}


/* =========================================================
            VERY SHORT LAPTOP - HEIGHT <= 700
========================================================= */

@media (min-width: 992px) and (max-height: 700px) {

    .clinic-location-section {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .clinic-location-title {
        font-size: 48px;
    }

    .clinic-location-subtitle {
        font-size: 18px;
    }

    .clinic-location-map {
        height: 345px;
    }
}


/* =========================================================
            LARGE + TALL SCREENS
========================================================= */

@media (min-width: 1600px) and (min-height: 900px) {

    .clinic-location-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .clinic-location-title {
        font-size: 80px;
    }

    .clinic-location-subtitle {
        font-size: 26px;
    }

    .clinic-location-map {
        height: 345px;
    }
}

/* =========================================================
            FOOTER
========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1D1811;
    color: #ffffff;
    padding: 45px 0 20px;
}


/* =========================================================
            FOOTER MAIN
========================================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1fr .8fr .9fr;
    gap: 70px;
    padding-bottom: 38px;
}


/* =========================================================
            BRAND
========================================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo img {
    width: 200px;
    display: block;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
}

.footer-description {
    max-width: 380px;
    margin: 20px 0 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 31px;
}

.footer-tagline span {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-body);
}

.footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 16px;
    border-radius: 30px;
    background: #526A55;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
}

/* =========================================================
            FOOTER HEADINGS
========================================================= */

.footer-heading {
    margin: 3px 0 20px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 400;
}


/* =========================================================
            CONTACT
========================================================= */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
}

.footer-contact-list i {
    width: 15px;
    color: #ffffff;
    font-size: 14px;
}


/* =========================================================
            HOURS
========================================================= */

.footer-hours-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 215px;
    padding: 11px 13px;
    border-radius: 10px;
    background: #526A55;
    font-family: var(--font-body);
}

.footer-hours-box strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
}

.footer-hours-box span {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 400;
}


/* =========================================================
            SOCIAL ICONS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 38px;
}

.footer-socials a {
    width: 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, opacity .3s ease;
}

.footer-socials a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


/* =========================================================
            FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-family: var(--font-body);
    font-size: 15px;
}

.footer-credit {
    margin: 0;
    color: rgba(255, 255, 255, .4);
    font-family: var(--font-heading);
    font-size: 15px;
    font-style: italic;
}


/* =========================================================
            TABLET
========================================================= */

@media (max-width: 991px) {

    .site-footer {
        padding: 40px 25px 20px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / 1;
    }

    .footer-description {
        max-width: 500px;
    }

    .footer-socials {
        margin-top: 30px;
    }
}


/* =========================================================
            MOBILE
========================================================= */

@media (max-width: 767px) {

    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        padding-bottom: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-description {
        max-width: 400px;
        font-size: 12px;
        line-height: 20px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-hours-box {
        max-width: 100%;
    }

    .footer-socials {
        margin-top: 25px;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-credit {
        align-self: flex-end;
    }
}


/* =========================================================
            SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-footer {
        padding: 35px 0px 18px;
    }

    .footer-main {
        gap: 15px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-logo img {
        width: 150px;
        height: 40px;
    }

    .footer-logo span {
        font-size: 30px;
    }

    .footer-tagline span {
        font-size: 9px;
        align-items: center;
    }

    i.bi.bi-heart {
        height: 12px;
    }

    .footer-contact-list li {
        font-size: 10px;
    }

    .footer-socials a {
        width: 36px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 9px;
    }

    .floating-buttons {
        gap: 8px !important;
        padding: 20px 10px !important;
    }

    .chatboat-sticky {
        width: 40px !important;
        height: 40px !important;
    }

}

@media (max-width: 375px) {
    .footer-main {
        gap: 30px 0px;
    }
}

@media(max-width:360px) {
    .footer-heading {
        margin-top: 12px;
    }

    .footer-connect {
        margin-left: -14px;
    }

    .footer-brand {
        width: 173px;
    }

    .footer-tagline span {
        font-size: 7px;
    }

}

/* Book Consultation Page Start */

/*=========================================================
                BOOK CONSULTATION - HERO BANNER
=========================================================*/

.consult-hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 832px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}

.consult-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(../images/consultation/consultation-hero.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.consult-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000080;
}

.consult-hero-inner {
    position: relative;
    z-index: 5;
}

.consult-hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 72px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
}

.consult-hero-desc {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255, 255, 255, .88);
    font-family: 'Cormorant Garamond';
    font-size: 32px;
    font-weight: 300;
    line-height: 35px;
}


/*=========================================================
                BOOK CONSULTATION - FORM SECTION
=========================================================*/

.consult-form-section {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: -300px;
    padding-bottom: 90px;
    background: transparent;
    overflow: hidden;
}

.consult-form-card {
    position: relative;
    z-index: 2;
    max-width: 870px;
    background: linear-gradient(0deg, rgba(76, 93, 75, 1) 0%, rgba(76, 93, 75, 0.64) 100%);
    margin: 0 auto;
    padding: 70px 50px 70px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* =========================================================
            DECORATIVE LEAVES
========================================================= */

.consult-leaf {
    position: absolute;
    top: 300px;
    pointer-events: none;
    z-index: 0;
}

.consult-leaf-left {
    left: -290px;
    top: 280px;
}

.consult-leaf-right {
    right: -300px;
    transform: scaleX(-1);
    top: 700px;
}

.consult-leaf .leaf-img {
    height: 580px;
    width: 580px;
    opacity: 16%;
    max-width: none !important;
}


/* =========================================================
            FIELDS
========================================================= */

.consult-field {
    margin-bottom: 20px;
}

.consult-row {
    margin-bottom: 0;
    --bs-gutter-x: 24px;
}

.consult-label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .92);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .2px;
}

.consult-label span {
    color: rgba(255, 255, 255, .92);
}

.consult-input {
    display: block;
    width: 100%;
    height: 64.96px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #fff;
    color: #000000;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.consult-input::placeholder {
    color: #A9A29A;
    font-weight: 300;
}

.consult-input:focus {
    border-color: rgba(255, 255, 255, .85);
}


/* Select */

.consult-select {
    padding-right: 44px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234C5D4B'%3E%3Cpath d='M8 11.2 2.8 6l1.1-1.1L8 9l4.1-4.1L13.2 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

.consult-select:invalid {
    color: #A9A29A;
}

.consult-select {
    height: 50.67px;
}


/* Textarea */

.consult-textarea {
    height: 158.49px;
    padding: 16px 18px;
    line-height: 1.6;
    resize: vertical;
}


/* Date & time pickers */

.consult-input[type="date"],
.consult-input[type="time"] {
    cursor: pointer;
}

/* Empty → grey, matching ::placeholder on the other fields */
.consult-input[type="date"]:invalid,
.consult-input[type="time"]:invalid {
    color: #A9A29A;
    font-weight: 300;
}

.consult-input[type="date"]:invalid::-webkit-datetime-edit,
.consult-input[type="time"]:invalid::-webkit-datetime-edit {
    color: #A9A29A;
    font-weight: 300;
}

/* Value selected → same black as every other input */
.consult-input[type="date"]:valid,
.consult-input[type="time"]:valid {
    color: #000000;
    font-weight: 400;
}

.consult-input[type="date"]::-webkit-calendar-picker-indicator,
.consult-input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: .55;
}

.consult-input[type="date"]:invalid::-webkit-calendar-picker-indicator,
.consult-input[type="time"]:invalid::-webkit-calendar-picker-indicator {
    opacity: .35;
}


/* =========================================================
            SUBMIT
========================================================= */

.consult-submit-wrap {
    margin-top: 34px;
}

.consult-submit-btn {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    background: linear-gradient(90deg, rgba(32, 25, 15, 1) 0%, rgba(49, 39, 23, 0.3) 100%);
    border: none;
    border-radius: 76px;
    color: #fff;
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background .35s ease, box-shadow .35s ease;
}

.consult-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 45%,
            rgba(255, 255, 255, 0.45) 75%,
            rgba(255, 255, 255, 0.25) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.consult-note {
    margin: 18px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, .78);
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
}


/* =========================================================
            TABLET
========================================================= */

@media (max-width: 991.98px) {

    .consult-hero {
        padding: 160px 0 250px;
    }

    .consult-form-section {
        margin-top: -300px;
        padding-bottom: 70px;
    }

    .consult-form-card {
        max-width: 100%;
        padding: 38px 34px 34px;
        border-radius: 26px;
    }

    .consult-leaf {
        top: 240px;
    }

    .consult-leaf .leaf-img {
        height: 420px;
        width: 420px;
    }

    .consult-leaf-left {
        left: -230px;
    }

    .consult-leaf-right {
        right: -230px;
        top: 650px;
    }
}


/* =========================================================
            MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .consult-hero {
        padding: 130px 0 200px;
    }

    .consult-form-section {
        margin-top: -350px;
        padding-bottom: 55px;
    }

    .consult-form-card {
        padding: 30px 22px 26px;
        border-radius: 22px;
    }

    .consult-field {
        margin-bottom: 16px;
    }

    .consult-input {
        height: 50px;
        font-size: 14px;
    }

    .consult-label {
        font-size: 13px;
    }

    .consult-submit-wrap {
        margin-top: 26px;
    }

    .consult-leaf {
        display: none;
    }

    .consult-textarea {
        height: 100px;
    }
}

@media (max-width: 450px) {
    .consult-hero-title {
        font-size: 60px;
    }

    .consult-hero-desc {
        font-size: 20px;
    }

    .consult-submit-btn {
        width: 100%;
        height: 60px;
        font-size: 16px;
    }

    .consult-note {
        font-size: 12px;
    }

    .consult-form-section {
        margin-top: -320px;
        padding-bottom: 55px;
    }

}

@media (max-width: 390px) {
    .consult-form-section {
        margin-top: -320px;
        padding-bottom: 55px;
    }

}

@media (max-width: 375px) {
    .consult-hero-title {
        font-size: 40px;
    }

    .consult-hero-desc {
        font-size: 18px;
    }

    .consult-form-section {
        margin-top: -335px;
        padding-bottom: 55px;
    }

}

/* @media (min-width: 992px) and (max-height: 700px) {
    .consult-form-section {
        margin-top: -220px;
    }
} */
