/* ============================================= */
/* RESET & BASE STYLES */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #EFEEE6;
    --mocha: #BB9C87;
    --off-white: #F4F5EF;
    --deep: #54474E;
    --accent1: #DCC1AC;
    --accent2: #D1B9A1;
    --accent3: #F3E5DA;
    --accent4: #EBD6C1;
}

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================= */
/* NAVIGATION - DESKTOP & MOBILE */
/* ============================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(239, 238, 230, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--mocha);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--deep);
    letter-spacing: -0.5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    z-index: 1002;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--deep);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--mocha);
}

/* ============================================= */
/* SUBMENU STYLES - DESKTOP (HOVER) */
/* ============================================= */
#luxenav {
    font-style: italic;
}
.has-submenu {
    
    position: relative;
}

.has-submenu > a::after {
    content: ' ▼';
    font-size: 0.65rem;
    margin-left: 0.3rem;
}

.has-submenu > a {
    cursor: pointer !important;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(239, 238, 230, 0.98);
    backdrop-filter: blur(15px);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
    border: 1px solid rgba(187, 156, 135, 0.2);
}

/* SUBMENU APPEARS ON HOVER - DESKTOP ONLY */
@media (min-width: 993px) {
    .has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--deep);
    border-bottom: 1px solid rgba(187, 156, 135, 0.1);
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--accent3);
    color: var(--mocha);
    padding-left: 2rem;
}

.submenu a:last-child {
    border-bottom: none;
}

/* ============================================= */
/* HAMBURGER MENU (MOBILE ONLY) */
/* ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 10px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep);
    transition: all 0.3s ease;
    border-radius: 2px;
    pointer-events: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent3) 100%);
    padding: 120px 5% 6rem;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5.3vw, 3.3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--deep);
    text-align: center;
}

.hero-subtitle {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.33rem, 2.66vw, 1.66rem);
    color: var(--deep);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.hero-belief {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.26rem, 2.4vw, 1.53rem);
    font-style: italic;
    color: var(--mocha);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    min-width: 180px;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.cta-primary {
    background: var(--mocha);
    color: white;
    box-shadow: 0 10px 30px rgba(187, 156, 135, 0.3);
    border: none;
    cursor: pointer;
}

.cta-secondary {
    background: transparent;
    color: var(--deep);
    border: 2px solid var(--mocha);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(187, 156, 135, 0.4);
}

.cta-secondary:hover {
    background: var(--mocha);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--mocha);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================= */
/* HEALING IMAGERY SECTION - NEW */
/* ============================================= */
.healing-imagery {
    background: var(--cream);
    padding: 4rem 5%;
}

.healing-images-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.healing-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.healing-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================= */
/* SECTION STYLES */
/* ============================================= */
.section {
    padding: 6rem 5%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    width: 100%;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--deep);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-family: 'Open Sans', sans-serif;
    color: var(--mocha);
    margin-bottom: 3rem;
    text-align: center;
}

/* ============================================= */
/* ORIGIN STORY SECTION */
/* ============================================= */
.origin-story {
    background: var(--off-white);
}

.origin-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.origin-text p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: 1.5rem;
    color: var(--deep);
}

.origin-highlight {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--mocha);
}

.origin-highlight h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    margin-bottom: 1.5rem;
    color: var(--mocha);
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.origin-values {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0;
}

.origin-values p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: 1rem;
}

/* ============================================= */
/* PHILOSOPHY SECTION */
/* ============================================= */
.philosophy {
    background: var(--cream);
    text-align: center;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--deep);
}

.bold-text {
    font-weight: 700;
    color: var(--mocha);
}

/* ============================================= */
/* CENTRE & COMMUNITY COMBINED SECTION */
/* ============================================= */
.centre-community-section {
    background: var(--off-white);
    padding: 6rem 5%;
}

.centre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.centre-text p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: 1.5rem;
    color: var(--deep);
}

.centre-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.centre-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.centre-image-middle {
    margin: 2rem 0;
    max-width: 100%;
}

.community-section-part {
    max-width: 1400px;
    margin: 0 auto;
}

.community-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.community-intro p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: var(--deep);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.community-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.community-item:hover {
    transform: translateY(-5px);
}

.community-icon {
    width: 50px;
    height: 50px;
    background: var(--mocha);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.community-item h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--deep);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.community-item p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--deep);
}

/* ============================================= */
/* OFFERINGS SECTION */
/* ============================================= */
.offerings {
    background: var(--cream);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.offering-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offering-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 1rem;
    color: var(--deep);
    font-family: 'Montserrat', sans-serif;
}

.offering-card p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--deep);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.offering-link {
    color: var(--mocha);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.offering-link:hover {
    color: var(--deep);
}

/* ============================================= */
/* TESTIMONIALS */
/* ============================================= */
.testimonials {
    background: var(--off-white);
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.testimonial-author {
    font-weight: 600;
    color: var(--mocha);
    font-family: 'Montserrat', sans-serif;
}

/* ============================================= */
/* CONTACT SECTION */
/* ============================================= */
.contact {
    background: var(--cream);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: 2rem;
    color: var(--mocha);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--deep);
}

.contact-detail-item p {
    font-family: 'Open Sans', sans-serif;
    color: var(--deep);
}

.contact-detail-item a {
    color: var(--mocha);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: var(--deep);
}

.map-container {
    width: 100%;
    margin-top: 2rem;
}

/* ============================================= */
/* CONTACT FORM */
/* ============================================= */
.contact-form {
    max-width: 600px;
    margin: 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--deep);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(187, 156, 135, 0.3);
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mocha);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================= */
/* FOOTER */
/* ============================================= */
footer {
    background: var(--deep);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    font-size: 0.95rem;
}

/* ============================================= */
/* BACK TO TOP BUTTON */
/* ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--mocha);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--deep);
    transform: translateY(-3px);
}

/* ============================================= */
/* MOBILE RESPONSIVENESS */
/* ============================================= */
@media (max-width: 992px) {
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(239, 238, 230, 0.98);
        backdrop-filter: blur(15px);
        width: 80%;
        max-width: 400px;
        text-align: left;
        padding: 5rem 2rem 3rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        align-items: stretch;
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(187, 156, 135, 0.15);
    }
    
    .nav-links > li > a {
        display: block;
        padding: 1.3rem 0;
        font-size: 1.1rem;
        width: 100%;
        color: var(--deep);
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
    }
    
    .has-submenu > a {
        cursor: pointer;
    }
    
    .has-submenu > a::after {
        float: right;
        transition: transform 0.3s;
        cursor: pointer;
    }
    
    .has-submenu.active > a {
        color: var(--mocha);
        font-weight: 600;
    }
    
    .has-submenu.active > a::after {
        transform: rotate(180deg);
    }
    
    /* MOBILE SUBMENU (TAP TO OPEN) */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, background 0.3s ease;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
    }
    
    .submenu.active {
        max-height: 800px;
        padding: 0.5rem 0;
        overflow: visible;
    }
    
    .submenu li {
        border-bottom: none;
        width: 100%;
    }
    
    .submenu a {
        padding: 1.2rem 0 1.2rem 2rem;
        font-size: 1rem;
        color: var(--deep);
        opacity: 0.9;
        border-bottom: 1px solid rgba(187, 156, 135, 0.1);
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-touch-callout: none;
        cursor: pointer;
        display: block;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .submenu a::after {
        display: none;
    }
    
    .submenu a:hover,
    .submenu a:active,
    .submenu a:focus {
        background: var(--accent3);
        padding-left: 2.5rem;
        opacity: 1;
    }
    
    .submenu a:last-child {
        border-bottom: none;
    }
}
@media (max-width: 992px) {
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(239, 238, 230, 0.98);
        backdrop-filter: blur(15px);
        width: 80%;
        max-width: 400px;
        text-align: left;
        padding: 5rem 2rem 3rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        align-items: stretch;
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(187, 156, 135, 0.15);
    }
    
    .nav-links > li > a {
        display: block;
        padding: 1.3rem 0;
        font-size: 1.1rem;
        width: 100%;
        color: var(--deep);
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .has-submenu > a {
        cursor: pointer;
    }
    
    .has-submenu > a::after {
        float: right;
        transition: transform 0.3s;
        cursor: pointer;
    }
    
    .has-submenu.open > a {
        color: var(--mocha);
        font-weight: 600;
    }
    
    .has-submenu.open > a::after {
        transform: rotate(180deg);
    }
    
    /* MOBILE SUBMENU - ACCORDION STYLE */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.4);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        pointer-events: none;
    }
    
    /* Open state */
    .has-submenu.open .submenu {
        max-height: 600px;
        padding: 0.5rem 0;
        pointer-events: auto;
    }
    
    .submenu li {
        border-bottom: none;
        width: 100%;
    }
    
    .submenu a {
        padding: 1.2rem 0 1.2rem 2rem;
        font-size: 1rem;
        color: var(--deep);
        opacity: 0.9;
        border-bottom: 1px solid rgba(187, 156, 135, 0.1);
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        cursor: pointer;
        display: block;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
        touch-action: manipulation;
    }
    
    .submenu a::after {
        display: none;
    }
    
    .submenu a:hover,
    .submenu a:active,
    .submenu a:focus {
        background: var(--accent3);
        padding-left: 2.5rem;
        opacity: 1;
    }
    
    .submenu a:last-child {
        border-bottom: none;
    }
}



@media (max-width: 768px) {
    /* Hero Mobile */
    .hero {
        padding: 100px 5% 4rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Healing Imagery Mobile */
    .healing-images-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .healing-image {
        height: 300px;
    }

    /* Sections Mobile */
    .section {
        padding: 4rem 5%;
    }

    .origin-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .centre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .centre-image {
        height: 300px;
        margin: 0 auto;
        order: 2;
    }

    .centre-text {
        order: 1;
    }

    .centre-image-middle {
        order: 1.5;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        max-width: 100%;
    }
    
    .nav-links {
        width: 100%;
        max-width: 100%;
        padding: 5rem 5% 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 220px;
    }

    .section {
        padding: 3rem 5%;
    }

    .healing-image {
        height: 250px;
    }

    .offering-card {
        padding: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}


/* PAST RETREATS SECTION */
.past-retreats {
    background: var(--cream);
}

.retreat-category {
    margin-bottom: 4rem;
}

.retreat-location {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--deep);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.retreat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.retreat-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.retreat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.retreat-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.retreat-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.retreat-card:hover .retreat-thumbnail img {
    transform: scale(1.1);
}

.retreat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(187, 156, 135, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.retreat-card:hover .retreat-overlay {
    opacity: 1;
}

.view-photos {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
}

.retreat-info {
    padding: 1.5rem;
}

.retreat-info h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--deep);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.retreat-date {
    color: var(--mocha);
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
}

/* SLIDESHOW MODAL */
.slideshow-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.slideshow-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.close-slideshow {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s;
}

.close-slideshow:hover {
    transform: scale(1.1);
    color: #BB9C87;
}

.slideshow-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-images {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-images img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(187, 156, 135, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 10001;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: #BB9C87;
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

.slideshow-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.slideshow-counter {
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    opacity: 0.8;
}

/* Mobile responsiveness for slideshow */
@media (max-width: 768px) {
    .retreat-grid {
        grid-template-columns: 1fr;
    }
    
    .close-slideshow {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }
    
    .slideshow-caption {
        font-size: 1rem;
        padding: 15px;
    }
}


.hero-banner {
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero-banner.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-banner-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-banner-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    font-family: 'Open Sans', sans-serif;
}

.hero-banner-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--mocha);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.hero-banner-btn:hover {
    transform: scale(1.05);
}

/* HOME VISITS, SIGNATURE EXPERIENCES, ETC - ALL OTHER SECTIONS FROM ORIGINAL */
.home-visits-section {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4b8 100%);
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.home-visits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg, rgba(101, 80, 68, 0.1) 0%, transparent 100%);
    border-right: 3px solid rgba(101, 80, 68, 0.2);
}

.home-visits-section::after {
    content: 'SERVICES MENU';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: rgba(101, 80, 68, 0.3);
    font-weight: 600;
}

.home-visits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-visits-header {
    text-align: center;
    margin-bottom: 2rem;
}

.home-visits-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.home-visits-logo svg {
    width: 40px;
    height: 40px;
    fill: #f5e6d3;
}

.home-visits-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2d5016;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.home-visits-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #655044;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-visits-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #655044;
    text-align: center;
    margin: 2rem 0 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.home-visits-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.home-visits-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #c9a875;
}

.home-visits-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.home-visits-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.home-visits-description {
    margin: 1.5rem 0;
}

.home-visits-description p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #655044;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.home-visits-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(201, 168, 117, 0.3);
}

.home-visits-pricing p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #2d5016;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.home-visits-pricing strong {
    font-weight: 700;
}

.home-visits-icon {
    flex-shrink: 0;
}

.home-visits-icon svg {
    width: clamp(120px, 15vw, 180px);
    height: clamp(120px, 15vw, 180px);
    fill: #655044;
    stroke: #655044;
    opacity: 0.7;
}

.home-visits-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(101, 80, 68, 0.2);
}

.home-visits-footer p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #655044;
    font-style: italic;
}

@media (max-width: 968px) {
    .home-visits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-visits-icon {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-visits-section {
        padding: 3rem 5%;
    }

    .home-visits-section::before {
        width: 60px;
    }

    .home-visits-section::after {
        font-size: 0.7rem;
        left: 15px;
    }

    .home-visits-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .home-visits-box {
        padding: 1.25rem;
    }
}


#DifferFont {
font-family: "Playfair Display", serif;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

