/* =========================================
   ROOT
========================================= */

:root {

    --forest: #26352B;
    --deep-green: #18221C;
    --sage: #7D8975;
    --cream: #F7F3EC;
    --beige: #E5D9C9;
    --gold: #B69A68;
    --dark: #252B27;
    --white: #FFFFFF;

    --heading: "Cormorant Garamond", serif;
    --body: "DM Sans", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--body);
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


button {
    font-family: inherit;
}


a {
    text-decoration: none;
}


.section-space {
    padding: 120px 0;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    transition: all .5s ease;
}


.site-header.scrolled {
    background: rgba(247,243,236,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(38,53,43,.08);
}


.navbar {
    padding: 18px 0;
}


.navbar-brand img {
    width: 135px;
}


.navbar-nav {
    gap: 30px;
}


.nav-link {
    color: var(--forest);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding: 8px 0 !important;
}


.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .4s ease;
}


.nav-link:hover::after {
    width: 100%;
}


.header-btn,
.main-btn {
    border: none;
    background: var(--forest);
    color: var(--white);

    padding: 14px 22px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 12px;
    letter-spacing: .5px;

    transition: all .4s ease;
}


.header-btn:hover,
.main-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}


.navbar-toggler {
    border: 0;
    padding: 8px;
}


.navbar-toggler:focus {
    box-shadow: none;
}


.navbar-toggler span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--forest);
    margin: 5px 0;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    padding: 150px 0 90px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 85% 20%, rgba(182,154,104,.12), transparent 25%),
        var(--cream);
}


.hero-content {
    position: relative;
    z-index: 5;
}


.eyebrow {
    display: inline-block;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;

    color: var(--gold);

    margin-bottom: 20px;
}


.eyebrow.light {
    color: var(--beige);
}


.hero h1 {
    font-family: var(--heading);
    color: var(--forest);

    font-size: clamp(60px, 7vw, 105px);
    line-height: .85;
    font-weight: 500;

    max-width: 700px;
}


.hero h1 span {
    display: block;
    font-style: italic;
    color: var(--sage);
}


.gold-line {
    width: 75px;
    height: 1px;
    background: var(--gold);

    margin: 30px 0;
}


.hero p {
    max-width: 570px;

    font-size: 16px;
    line-height: 1.9;

    color: #596159;
}


.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-top: 35px;
}


.text-btn {
    color: var(--forest);
    font-size: 13px;

    display: inline-flex;
    gap: 10px;
    align-items: center;
}


.text-btn i {
    transition: transform .3s ease;
}


.text-btn:hover i {
    transform: translateY(5px);
}


.hero-visual {
    position: relative;
    width: 520px;
    height: 520px;

    margin: auto;
}


.hero-image-wrap {
    width: 410px;
    height: 470px;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    overflow: hidden;

    border-radius: 48% 48% 46% 46% / 38% 38% 60% 60%;

    z-index: 3;
}


.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 1s ease;
}


.hero-image-wrap:hover img {
    transform: scale(1.06);
}


.hero-circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: var(--beige);

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}


.hero-ring {
    position: absolute;

    width: 470px;
    height: 470px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 2;
}


.hero-badge {
    position: absolute;

    right: 5px;
    bottom: 45px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: var(--forest);
    color: var(--white);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: var(--heading);
    font-size: 17px;

    z-index: 5;

    box-shadow: 0 20px 40px rgba(24,34,28,.2);
}


.hero-badge i {
    color: var(--gold);
    font-size: 25px;
    margin-bottom: 5px;
}


.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.hero-shape-one {
    width: 280px;
    height: 280px;
    background: rgba(125,137,117,.08);
    left: -100px;
    bottom: 10%;
}


.hero-shape-two {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(182,154,104,.35);
    right: 4%;
    top: 25%;
}


.hero-leaf {
    position: absolute;
    color: var(--sage);
    opacity: .25;
    font-size: 70px;
}


.leaf-one {
    top: 22%;
    left: 45%;
    transform: rotate(-25deg);
}


.leaf-two {
    bottom: 15%;
    right: 48%;
    transform: rotate(45deg);
}


.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--sage);
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: var(--white);
}


.organic-image {
    height: 610px;
    position: relative;
}


.organic-image img {
    position: absolute;

    width: 390px;
    height: 500px;

    object-fit: cover;

    left: 40px;
    top: 40px;

    /* border-radius: 25% 25% 25% 25%; */

    z-index: 3;
}


.image-shape {
    position: absolute;

    width: 390px;
    height: 500px;

    background: var(--beige);

    /* border-radius: 45% 45% 12% 45%; */

    left: 0;
    top: 0;
}


.gold-circle {
    position: absolute;

    width: 230px;
    height: 230px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    right: 0;
    bottom: 20px;
}


.floating-leaf {
    position: absolute;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: var(--forest);
    color: var(--beige);

    display: flex;
    align-items: center;
    justify-content: center;

    right: 30px;
    top: 90px;

    z-index: 5;

    font-size: 27px;
}


.section-content h2,
.section-heading h2,
.why-content h2,
.cta-content h2 {

    font-family: var(--heading);
    font-size: clamp(48px, 5vw, 72px);
    line-height: .95;

    font-weight: 500;

    color: var(--forest);
}


.section-content h2 em,
.section-heading h2 em,
.why-content h2 em,
.cta-content h2 em {

    display: block;
    color: var(--sage);
    font-style: italic;
}


.section-content p {
    color: #626962;
    line-height: 1.85;
    font-size: 15px;
}


.about-highlight {
    margin-top: 30px;

    padding: 22px 25px;

    border-left: 2px solid var(--gold);

    background: var(--cream);
}


.about-highlight i {
    color: var(--gold);
    font-size: 25px;
}


.about-highlight p {
    margin: 5px 0 0;
}


.about-highlight strong {
    color: var(--forest);
}


/* =========================================
   PHILOSOPHY
========================================= */

.philosophy-section {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}


.philosophy-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    border: 1px solid rgba(182,154,104,.18);

    border-radius: 50%;

    right: -180px;
    top: -150px;
}


.section-heading {
    max-width: 850px;
    margin-bottom: 60px;
}


.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}


.section-heading h2 {
    margin-bottom: 20px;
}


.philosophy-section .section-heading h2 {
    color: var(--white);
}


.philosophy-section .section-heading p {
    color: #bec5bd;
}


.philosophy-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(255,255,255,.12);
}


.philosophy-card {
    min-height: 260px;

    padding: 35px;

    background: var(--forest);

    position: relative;

    transition: all .5s ease;
}


.philosophy-card:hover {
    background: #304037;
    transform: translateY(-8px);
}


.philosophy-card > span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
}


.philosophy-card i {
    display: block;

    color: var(--beige);

    font-size: 30px;

    margin: 40px 0 20px;
}


.philosophy-card h3 {
    color: var(--white);

    font-family: var(--heading);

    font-size: 27px;
    line-height: 1.1;

    font-weight: 500;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    background: var(--cream);
}


.services-section .section-heading p {
    max-width: 800px;

    color: #666e67;

    line-height: 1.8;
}


.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.service-card {
    position: relative;

    background: var(--white);

    padding: 40px;

    border: 1px solid rgba(38,53,43,.08);

    overflow: hidden;

    transition: all .5s ease;
}


.service-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: rgba(125,137,117,.08);

    right: -70px;
    top: -70px;

    transition: all .6s ease;
}


.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(38,53,43,.1);
}


.service-card:hover::before {
    transform: scale(2);
}


.service-card.large {
    grid-column: span 2;

    background: var(--forest);
}


.service-number {
    color: var(--gold);

    font-size: 11px;
    letter-spacing: 2px;

    margin-bottom: 30px;
}


.service-icon {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--forest);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 22px;

    transition: all .4s ease;
}


.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(8deg) scale(1.1);
}


.service-card h3 {
    font-family: var(--heading);

    font-size: 34px;

    color: var(--forest);

    font-weight: 500;

    position: relative;
}


.service-card.large h3 {
    color: var(--white);
}


.service-card p {
    color: #687069;

    line-height: 1.8;

    font-size: 14px;

    position: relative;
}


.service-card.large p {
    color: #cbd1ca;
}


.condition-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;

    position: relative;
}


.condition-list span,
.family-tags span {

    border: 1px solid rgba(182,154,104,.4);

    padding: 7px 12px;

    font-size: 11px;

    color: var(--beige);
}


.service-card:not(.large) .condition-list span {
    color: var(--forest);
}


.simple-list {
    list-style: none;

    padding: 0;
    margin-top: 20px;

    position: relative;
}


.simple-list li {
    padding: 8px 0;

    border-bottom: 1px solid rgba(38,53,43,.08);

    font-size: 13px;

    color: #596159;
}


.simple-list li::before {
    content: "✦";

    color: var(--gold);

    margin-right: 10px;
}


.family-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.family-tags span {
    color: var(--forest);
}


/* =========================================
   WHY US
========================================= */

.why-section {
    background: var(--white);
}


.why-content p {
    color: #697169;

    line-height: 1.9;

    margin-top: 30px;
}


.why-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


.why-card {
    padding: 25px;

    min-height: 125px;

    background: var(--cream);

    display: flex;
    align-items: center;

    gap: 18px;

    border: 1px solid transparent;

    transition: all .4s ease;
}


.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}


.why-card i {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--forest);
    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;
}


.why-card span {
    color: var(--forest);

    font-family: var(--heading);

    font-size: 22px;

    line-height: 1.1;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 130px 0;

    background: var(--deep-green);

    position: relative;

    overflow: hidden;
}


.cta-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(182,154,104,.2);

    border-radius: 50%;

    left: -200px;
    top: -200px;
}


.cta-leaf {
    position: absolute;

    right: 10%;
    bottom: 10%;

    color: rgba(182,154,104,.18);

    font-size: 180px;

    transform: rotate(-20deg);
}


.cta-content {
    position: relative;
    z-index: 2;
}


.cta-content h2 {
    color: var(--white);

    max-width: 850px;

    margin: auto auto 40px;
}


.cta-content h2 em {
    color: var(--beige);
}


.light-btn {
    background: var(--beige);
    color: var(--forest);
}


.light-btn:hover {
    background: var(--gold);
    color: var(--white);
}


/* =========================================
   APPOINTMENT MODAL
========================================= */

.appointment-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}


.appointment-modal.active {
    display: flex;
}


.modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(24,34,28,.75);

    backdrop-filter: blur(10px);
}


.appointment-box {
    width: min(950px, 100%);

    position: relative;

    z-index: 2;

    background: var(--cream);

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    box-shadow: 0 30px 100px rgba(0,0,0,.3);

    animation: modalIn .5s ease;
}


@keyframes modalIn {

    from {
        opacity: 0;
        transform: translateY(30px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.modal-close {
    position: absolute;

    right: 18px;
    top: 18px;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 50%;

    background: transparent;

    color: var(--white);

    z-index: 10;
}


.modal-left {
    padding: 60px 45px;

    background: var(--forest);

    color: var(--white);

    position: relative;

    overflow: hidden;
}


.modal-left::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(182,154,104,.2);

    border-radius: 50%;

    right: -140px;
    bottom: -100px;
}


.modal-left h2 {
    font-family: var(--heading);

    font-size: 58px;

    line-height: .9;

    font-weight: 500;
}


.modal-left h2 em {
    display: block;

    color: var(--beige);
}


.modal-left p {
    color: #c5ccc5;

    line-height: 1.8;

    margin-top: 25px;
}


.modal-decoration {
    margin-top: 100px;

    color: var(--gold);

    font-size: 55px;
}


.modal-right {
    padding: 55px 45px;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--forest);

    margin-bottom: 8px;
}


.form-group input,
.form-group textarea {

    width: 100%;

    border: 0;
    border-bottom: 1px solid rgba(38,53,43,.2);

    background: transparent;

    padding: 11px 0;

    outline: none;

    color: var(--dark);

    font-family: var(--body);

    font-size: 14px;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}


.form-group textarea {
    resize: none;
}


.modal-btn {
    width: 100%;

    justify-content: center;

    margin-top: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px) {

    .site-header {
        background: rgba(247,243,236,.95);
    }


    .navbar-nav {
        gap: 5px;
        padding: 20px 0;
    }


    .header-btn {
        margin-bottom: 15px;
    }


    .hero {
        padding-top: 140px;
    }


    .hero h1 {
        font-size: 70px;
    }


    .hero-visual {
        margin-top: 70px;
    }


    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .service-card.large {
        grid-column: span 1;
    }


    .services-grid {
        grid-template-columns: 1fr 1fr;
    }


    .organic-image {
        max-width: 500px;
        margin: auto;
    }


    .appointment-box {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }


    .modal-left {
        padding: 40px;
    }


    .modal-decoration {
        display: none;
    }

}


@media(max-width: 767px) {

    .section-space {
        padding: 80px 0;
    }


    .navbar-brand img {
        width: 110px;
    }


    .hero {
        padding-top: 125px;
    }


    .hero h1 {
        font-size: 58px;
    }


    .hero p {
        font-size: 14px;
    }


    .hero-buttons {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }


    .hero-visual {
        width: 330px;
        height: 380px;
    }


    .hero-image-wrap {
        width: 260px;
        height: 330px;
    }


    .hero-circle {
        width: 300px;
        height: 300px;
    }


    .hero-ring {
        width: 330px;
        height: 330px;
    }


    .hero-badge {
        width: 95px;
        height: 95px;

        right: 0;
        bottom: 25px;

        font-size: 14px;
    }


    .scroll-down {
        display: none;
    }


    .organic-image {
        height: 480px;
    }


    .organic-image img,
    .image-shape {
        width: 290px;
        height: 390px;
    }


    .organic-image img {
        left: 30px;
        top: 30px;
    }


    .section-content h2,
    .section-heading h2,
    .why-content h2,
    .cta-content h2 {
        font-size: 50px;
    }


    .philosophy-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }


    .philosophy-card {
        min-height: 210px;
    }


    .service-card {
        padding: 30px;
    }


    .why-card {
        min-height: 100px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .modal-right {
        padding: 35px 25px;
    }


    .modal-left {
        padding: 45px 30px;
    }


    .modal-left h2 {
        font-size: 48px;
    }

}
/* =========================================
   HOLISTIC WELLNESS
========================================= */

.holistic-section {
    background: var(--cream);
}


.holistic-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}


.holistic-image {
    height: 600px;
    position: relative;
}


.holistic-photo {
    position: absolute;

    width: 400px;
    height: 500px;

    left: 45px;
    top: 40px;

    overflow: hidden;

    border-radius: 45% 45% 45% 10%;

    z-index: 2;
}


/*@media(max-width: 767px) */
/*{*/
/*.holistic-photo{*/
/*        align-items: center;*/
/*    display: block;*/

/*    }*/
/*    }*/
/*    @media(max-width: 767px){*/
/*    .holistic-photo, .organic-bg {*/
/*        width: 290px;*/
/*        height: 390px;*/
/*        align-items: center;*/
/*        display: contents;*/
/*    }*/
/*}*/


.holistic-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 1s ease;
}


.holistic-photo:hover img {
    transform: scale(1.07);
}


.organic-bg {
    position: absolute;

    width: 400px;
    height: 500px;

    left: 0;
    top: 0;

    background: var(--beige);

    border-radius: 45% 45% 45% 10%;
}


.round-detail {
    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    right: -10px;
    bottom: 15px;
}


.leaf-detail {
    position: absolute;

    width: 75px;
    height: 75px;

    border-radius: 50%;

    background: var(--forest);
    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    right: 50px;
    top: 100px;

    z-index: 5;
}


.holistic-content h2 {
    font-family: var(--heading);

    font-size: clamp(50px, 5vw, 72px);

    line-height: .9;

    font-weight: 500;

    color: var(--forest);
}


.holistic-content h2 em {
    display: block;

    color: var(--sage);
}


.holistic-content p {
    color: #656d66;

    line-height: 1.8;

    font-size: 15px;
}


.holistic-content .intro {
    font-family: var(--heading);

    font-size: 28px;

    color: var(--forest);

    margin-bottom: 8px;
}


.wellness-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;
}


.wellness-points div {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 15px;

    background: rgba(255,255,255,.7);

    border: 1px solid rgba(38,53,43,.06);

    transition: all .4s ease;
}


.wellness-points div:hover {
    transform: translateX(7px);

    border-color: var(--gold);
}


.wellness-points i {
    color: var(--gold);

    font-size: 18px;
}


.wellness-points span {
    color: var(--forest);

    font-size: 12px;
}


/* =========================================
   EMOTIONAL
========================================= */

.emotional-section {
    background: var(--deep-green);

    padding: 120px 0;

    position: relative;

    overflow: hidden;
}


.emotional-section::before {
    content: "";

    position: absolute;

    inset: 30px;

    border: 1px solid rgba(182,154,104,.12);

    pointer-events: none;
}


.emotional-circle {
    position: absolute;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(182,154,104,.16);

    border-radius: 50%;

    right: -250px;
    top: -150px;
}


.emotional-leaf {
    position: absolute;

    color: rgba(182,154,104,.12);

    font-size: 220px;

    right: 8%;
    bottom: -40px;

    transform: rotate(-20deg);
}


.emotional-content {
    position: relative;
    z-index: 2;
}


.emotional-content h2 {
    font-family: var(--heading);

    font-size: clamp(52px, 5vw, 76px);

    line-height: .9;

    color: var(--white);

    font-weight: 500;
}


.emotional-content h2 em {
    display: block;

    color: var(--beige);

    font-style: italic;
}


.emotional-content p {
    color: #c4ccc4;

    max-width: 700px;

    line-height: 1.9;

    font-size: 15px;
}


.emotional-content .emotional-intro {
    color: var(--beige);

    font-family: var(--heading);

    font-size: 29px;

    margin-bottom: 10px;
}


.emotional-quote {
    width: 310px;
    height: 310px;

    margin: auto;

    border-radius: 50%;

    border: 1px solid rgba(182,154,104,.5);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    z-index: 3;
}


.emotional-quote i {
    color: var(--gold);

    font-size: 38px;
}


.emotional-quote h3 {
    font-family: var(--heading);

    color: var(--white);

    font-size: 40px;

    line-height: .85;

    margin: 8px 0 15px;
}


.emotional-quote span {
    color: #aeb7ae;

    font-size: 11px;

    max-width: 180px;
}


/* =========================================
   FAMILY
========================================= */

.family-section {
    background: var(--white);
}


.family-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.family-card {
    padding: 38px 28px;

    min-height: 300px;

    background: var(--cream);

    position: relative;

    overflow: hidden;

    transition: all .5s ease;
}


.family-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    border: 1px solid rgba(182,154,104,.3);

    right: -90px;
    bottom: -90px;

    transition: all .5s ease;
}


.family-card:hover {
    background: var(--forest);

    transform: translateY(-10px);
}


.family-card:hover::after {
    transform: scale(1.5);
}


.family-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: var(--forest);

    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;

    margin-bottom: 45px;

    transition: all .4s ease;
}


.family-card:hover .family-icon {
    background: var(--gold);
    color: var(--white);
}


.family-card > span {
    font-size: 10px;

    letter-spacing: 2px;

    color: var(--gold);
}


.family-card h3 {
    font-family: var(--heading);

    color: var(--forest);

    font-size: 33px;

    font-weight: 500;

    margin-top: 8px;
}


.family-card p {
    color: #687068;

    font-size: 13px;

    line-height: 1.6;
}


.family-card:hover h3 {
    color: var(--white);
}


.family-card:hover p {
    color: #bec8be;
}


/* =========================================
   CARE OPTIONS
========================================= */

.care-options {
    background: var(--cream);
}


.care-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


.care-card {
    padding: 55px;

    min-height: 510px;

    position: relative;

    overflow: hidden;
}


.online-card {
    background: var(--forest);
}


.delivery-card {
    background: var(--beige);
}


.care-card-bg {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(182,154,104,.25);

    right: -150px;
    bottom: -160px;
}


.care-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 27px;

    margin-bottom: 45px;
}


.delivery-card .care-icon {
    background: rgba(38,53,43,.08);
}


.care-card h2 {
    font-family: var(--heading);

    font-size: 55px;

    line-height: .9;

    font-weight: 500;

    max-width: 450px;

    position: relative;
}


.online-card h2 {
    color: var(--white);
}


.delivery-card h2 {
    color: var(--forest);
}


.care-card h2 em {
    display: block;

    font-style: italic;
}


.online-card h2 em {
    color: var(--beige);
}


.delivery-card h2 em {
    color: var(--sage);
}


.care-card p {
    max-width: 480px;

    line-height: 1.8;

    font-size: 14px;

    margin: 25px 0;

    position: relative;
}


.online-card p {
    color: #c2cbc2;
}


.delivery-card p {
    color: #596159;
}


.outline-btn {
    background: transparent;

    border: 1px solid var(--gold);

    color: var(--beige);

    padding: 14px 20px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 12px;

    position: relative;

    transition: all .4s ease;
}


.outline-btn:hover {
    background: var(--gold);

    color: var(--white);

    transform: translateY(-3px);
}


.delivery-line {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;

    position: relative;
}


.delivery-line span {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    font-size: 10px;

    color: var(--forest);
}


.delivery-line span i {
    font-size: 20px;

    color: var(--gold);
}


.delivery-line > i {
    color: var(--sage);
}


/* =========================================
   FOLLOW UP
========================================= */

.follow-section {
    background: var(--forest);

    padding: 100px 0;

    overflow: hidden;
}


.follow-inner {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    align-items: center;
}


.follow-content h2 {
    font-family: var(--heading);

    font-size: 70px;

    line-height: .85;

    color: var(--white);

    font-weight: 500;
}


.follow-content h2 em {
    display: block;

    color: var(--beige);
}


.follow-content p {
    color: #bdc7bd;

    line-height: 1.8;

    font-size: 14px;

    margin-top: 25px;
}


.follow-steps {
    position: relative;
}


.follow-steps::before {
    content: "";

    position: absolute;

    top: 32px;
    left: 35px;
    right: 35px;

    height: 1px;

    background: rgba(182,154,104,.35);
}


.follow-step {
    position: relative;

    display: inline-flex;

    width: 24%;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.follow-step > span {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    border: 1px solid rgba(182,154,104,.5);

    background: var(--forest);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;

    position: relative;

    z-index: 2;

    transition: all .4s ease;
}


.follow-step div {
    margin-top: 18px;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.follow-step i {
    color: var(--beige);

    font-size: 20px;
}


.follow-step strong {
    color: var(--white);

    font-family: var(--heading);

    font-size: 18px;

    font-weight: 500;
}


.follow-step.active > span,
.follow-step:hover > span {
    background: var(--gold);

    color: var(--white);

    transform: scale(1.1);
}


/* =========================================
   CTA
========================================= */

.cta-section {
    position: relative;
}


.cta-content p {
    color: #bfc8bf;

    max-width: 620px;

    margin: 0 auto 30px;

    line-height: 1.8;

    font-size: 14px;
}


.cta-orbit {
    position: absolute;

    width: 550px;
    height: 550px;

    border: 1px solid rgba(182,154,104,.15);

    border-radius: 50%;

    top: -270px;
    left: 50%;

    transform: translateX(-50%);
}


.cta-leaf-one {
    position: absolute;

    left: 8%;
    bottom: 10%;

    color: rgba(182,154,104,.12);

    font-size: 100px;
}


.cta-leaf-two {
    position: absolute;

    right: 8%;
    top: 20%;

    color: rgba(182,154,104,.12);

    font-size: 80px;

    transform: rotate(80deg);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #111913;

    padding: 80px 0 25px;

    color: #aeb7ae;
}


.footer-top {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;

    gap: 50px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.footer-brand img {
    width: 150px;

    filter: brightness(0) invert(1);

    opacity: .9;
}


.footer-brand p {
    margin-top: 20px;

    font-family: var(--heading);

    font-size: 21px;

    color: var(--beige);
}


.footer-social {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}


.footer-social a {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    transition: all .3s ease;
}


.footer-social a:hover {
    background: var(--gold);

    color: var(--white);

    transform: translateY(-4px);
}


.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-links h4,
.footer-contact h4 {
    font-family: var(--heading);

    color: var(--white);

    font-size: 25px;

    font-weight: 500;

    margin-bottom: 10px;
}


.footer-links a,
.footer-contact a,
.footer-address {
    color: #929d94;

    font-size: 12px;

    transition: color .3s ease;
}


.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}


.footer-contact a,
.footer-address {
    display: flex;

    gap: 12px;

    line-height: 1.7;
}


.footer-contact i {
    color: var(--gold);

    font-size: 15px;
}


.footer-bottom {
    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    font-size: 10px;

    letter-spacing: .5px;

    color: #6e786f;
}


/* =========================================
   FLOATING APPOINTMENT
========================================= */

.floating-appointment {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 998;

    border: 0;

    background: var(--gold);

    color: var(--white);

    padding: 13px 17px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: 0 15px 35px rgba(0,0,0,.18);

    transition: all .4s ease;
}


.floating-appointment:hover {
    background: var(--forest);

    transform: translateY(-5px);
}


.floating-appointment i {
    font-size: 17px;
}
@media(max-width: 991px) {

    .holistic-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .holistic-image {
        max-width: 500px;
        margin: auto;
    }

    .family-grid {
        grid-template-columns: 1fr 1fr;
    }

    .care-grid {
        grid-template-columns: 1fr;
    }

    .follow-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

}
@media (max-width: 767px) {
    .holistic-photo, .organic-bg {
        width: 290px;
        height: 390px;
        display: contents !important;
    }
}

@media(max-width: 767px) {

    .holistic-image {
        height: 470px;
    }

    .holistic-photo,
    .organic-bg {
        width: 290px;
        height: 390px;
    }

    .holistic-photo {
        left: 30px;
        top: 30px;
    }

    .round-detail {
        width: 150px;
        height: 150px;
        right: 0;
    }

    .wellness-points {
        grid-template-columns: 1fr;
    }

    .emotional-section {
        padding: 80px 0;
    }

    .emotional-section::before {
        inset: 15px;
    }

    .emotional-quote {
        width: 250px;
        height: 250px;
        margin-top: 50px;
    }

    .emotional-quote h3 {
        font-size: 32px;
    }

    .family-grid {
        grid-template-columns: 1fr;
    }

    .family-card {
        min-height: 250px;
    }

    .care-card {
        padding: 35px 25px;
        min-height: 450px;
    }

    .care-card h2 {
        font-size: 47px;
    }

    .delivery-line {
        gap: 8px;
    }

    .delivery-line > i {
        font-size: 12px;
    }

    .follow-content h2 {
        font-size: 55px;
    }

    .follow-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px 10px;
    }

    .follow-steps::before {
        display: none;
    }

    .follow-step {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-appointment {
        right: 15px;
        bottom: 15px;
        padding: 12px 14px;
    }

    .floating-appointment span {
        font-size: 11px;
    }

}

/* =========================================
   SERVICES + FAMILY EMERGENCY VISIBILITY FIX
========================================= */

.family-section,
.family-section .container,
.family-grid,
.family-card {
    visibility: visible !important;
    opacity: 1 !important;
}

.family-section {
    display: block !important;
    position: relative;
    z-index: 2;
    background: #f5f0e8;
}

.family-grid {
    display: grid !important;
}

.family-card {
    display: block !important;
    position: relative;
    z-index: 3;
    color: #26352b;
}

.family-card h3 {
    display: block !important;
    color: #26352b !important;
}

.family-card p {
    display: block !important;
    color: #687068 !important;
}

.family-card > span {
    display: block !important;
    color: #b69a68 !important;
}

.family-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* SERVICES */

#services,
.services-section,
.services-section .container {
    visibility: visible !important;
    opacity: 1 !important;
}

.services-section {
    display: block !important;
    position: relative;
    z-index: 2;
}


/* =========================================
   GALLERY
========================================= */

.gallery-section {
    position: relative;
    background: #f5f0e8;
    overflow: hidden;
}

.gallery-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(182,154,104,.18);

    border-radius: 50%;

    left: -210px;
    top: 120px;

    pointer-events: none;
}

.gallery-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.gallery-heading h2 {
    font-family: var(--heading);
    font-size: clamp(45px, 5vw, 70px);
    line-height: .95;
    font-weight: 500;
    color: var(--forest);
    margin: 12px 0 22px;
}

.gallery-heading h2 em {
    display: block;
    color: var(--sage);
    font-style: italic;
}

.gallery-heading p {
    max-width: 650px;
    color: #687068;
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-auto-rows: 250px;

    gap: 15px;

    position: relative;
    z-index: 2;
}


/* =========================================
   GALLERY ITEM
========================================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #ddd6ca;
    cursor: pointer;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .8s cubic-bezier(.2,.65,.2,1),
        filter .5s ease;
}


/* Dark overlay */

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(20,32,25,.25);

    opacity: 0;

    transition: opacity .4s ease;

    pointer-events: none;
}


/* Hover */

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* =========================================
   OPEN BUTTON
========================================= */

.gallery-open {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    cursor: pointer;

    z-index: 5;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity .4s ease,
        transform .4s ease,
        background .3s ease;
}

.gallery-item:hover .gallery-open {
    opacity: 1;
    transform: translateY(0);
}

.gallery-open:hover {
    background: var(--gold);
    border-color: var(--gold);
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(15,22,18,.94);

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* Image wrapper */

.lightbox-content {
    width: min(1000px, 90vw);
    height: min(750px, 85vh);

    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 30px 100px rgba(0,0,0,.35);

    transform: scale(.94);

    transition: transform .4s ease;
}

.gallery-lightbox.active
.lightbox-content img {
    transform: scale(1);
}


/* =========================================
   LIGHTBOX BUTTONS
========================================= */

.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position: absolute;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    background: var(--gold);

    border-color: var(--gold);
}


/* Close */

.lightbox-close {

    top: 25px;
    right: 30px;

    font-size: 17px;
}


/* Previous */

.lightbox-prev {

    left: 30px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 20px;
}


/* Next */

.lightbox-next {

    right: 30px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 20px;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 991px) {

    .gallery-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-auto-rows: 230px;

    }

}


@media(max-width: 600px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

    }

    .gallery-item.gallery-large {

        grid-column: span 1;

        grid-row: span 1;

    }

    .gallery-lightbox {

        padding: 25px;

    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        right: 15px;
        top: 15px;
    }

}