/* --- CSS Reset & Base Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon-dark: #4A0E17;     /* Deep rich maroon background color */
    --maroon-med: #6B1D2F;      /* Intermediate maroon for accents/hover */
    --maroon-light: #FDF6F6;    /* Soft, warm cream background for light sections */
    --gold: #D4AF37;            /* Elegant gold accent */
    --text-dark: #2B181B;       /* Dark text with a touch of warmth */
    --text-light: #F5EBEB;      /* Off-white text for dark backgrounds */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Global Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Custom 3-Column Grid for Footer */
.grid-3-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2.5rem;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--maroon-dark);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--maroon-dark);
}

.btn-primary:hover {
    background-color: var(--maroon-med);
    border-color: var(--maroon-med);
    box-shadow: 0 8px 20px rgba(74, 14, 23, 0.15);
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--maroon-dark);
    color: var(--maroon-dark);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--maroon-dark);
    color: white;
}

.btn-text {
    display: inline-block;
    color: var(--maroon-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 0;
    transition: transform 0.2s;
}

.btn-text:hover {
    transform: translateX(5px);
}

.btn-white {
    display: inline-block;
    background-color: white;
    color: var(--maroon-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--maroon-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* --- Premium Sticky Header & Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.navbar.scrolled {
    padding: 1rem 4rem;
    background: rgba(253, 246, 246, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(74, 14, 23, 0.05);
    border-bottom: 1px solid rgba(74, 14, 23, 0.05);
}

.logo-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--maroon-dark);
    line-height: 1.1;
    transition: color 0.3s ease;
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar .nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.navbar .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar .nav-item:hover {
    color: var(--maroon-dark);
}

.navbar .nav-item:hover::after {
    width: 100%;
}

.btn-nav-cta {
    display: inline-block;
    border: 1.5px solid var(--maroon-dark);
    color: var(--maroon-dark);
    padding: 0.6rem 1.6rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-nav-cta:hover {
    background-color: var(--maroon-dark);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 14, 23, 0.2);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--maroon-dark);
    transition: background 0.3s ease;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--maroon-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

.nav-toggle.is-active .hamburger {
    background: transparent;
}
.nav-toggle.is-active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle.is-active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    background-color: var(--maroon-light);
    background-image: linear-gradient(135deg, rgba(253,246,246,1) 0%, rgba(245,230,230,0.8) 100%);
    display: flex;
    align-items: center;
    padding: 10rem 0 4rem 0;
}

.hero-content {
    max-width: 100%;
}

.hero .subtitle {
    font-family: var(--font-heading);
    color: var(--maroon-med);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--maroon-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    color: #554044;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Container provides the premium backdrop glow and structure */
.hero-image {
    position: relative;
    display: inline-block;
    max-width: 500px;
    width: 100%;
    border-radius: 250px 250px 24px 24px;
    background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, rgba(74,14,23,0.03) 100%);
    padding: 12px; /* Elegant outer frame gap */
    box-shadow: 0 30px 60px -15px rgba(33, 5, 10, 0.15);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px; /* Precision glass line */
        background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(74,14,23,0.05));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    &:hover {
        transform: translateY(-6px);
        
        & img {
            transform: scale(1.04);
        }
    }
}

/* The structural arch image itself */
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 238px 238px 16px 16px; /* Accounts beautifully for parent padding */
    border: 1px solid rgba(74, 14, 23, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- About Section --- */
.about-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.tag {
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--maroon-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #554044;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    
    /* Elegant asymmetric curve (Top-left & Bottom-right rounded) */
    border-radius: 80px 4px 80px 4px;
    
    /* Solid gold accent border */
    border: 2px solid var(--gold); 
    
    /* Sophisticated, deep drop shadow */
    box-shadow: 0 25px 50px -12px rgba(74, 14, 23, 0.25);
    
    /* Smooth transition for interactions */
    transition: transform 0.4s ease, border-radius 0.4s ease;
}

/* Optional hover micro-interaction */
.about-image img:hover {
    transform: scale(1.02);
    border-radius: 4px 80px 4px 80px; /* Swaps the corners playfully on hover */
}

/* ===============================
   Offerings Section
================================= */

/* Color Palette Variables */
:root {
    --maroon-primary: #721c24;   /* Deep meditative maroon */
    --maroon-light: #f8d7da;     /* Soft maroon tint for background highlights */
    --text-dark: #2d2d2d;
    --text-muted: #666666;
    --card-bg: #ffffff;
}

/* Core Layout */
.offerings-section {
    padding: 80px 0;
    background-color: #fcfbfa; 
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Base Card Styling */
.offer-card {
    background: var(--card-bg);
    border: 1px solid rgba(114, 28, 36, 0.08); /* Subtle maroon border tint */
    border-radius: 16px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    
    /* Smooth transitions for all changing properties */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease;
}

.offer-card h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card Header & Decorative Number */
.card-header {
    position: relative;
}

.offer-num {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--maroon-primary);
    opacity: 0.04; /* Very faint background number */
    position: absolute;
    top: -25px;
    right: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Maroon Icon Container with Micro-interaction */
.offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--maroon-light); /* Soft tint background */
    border-radius: 12px;
    margin-bottom: 24px;
    
    /* Transition for icon background */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.offer-icon svg {
    width: 26px;
    height: 26px;
    color: var(--maroon-primary); /* Base maroon color */
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- THE HOVER STATES (INTERACTIVITY) --- */

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(114, 28, 36, 0.3);
    box-shadow: 0 20px 40px rgba(114, 28, 36, 0.06);
}

/* 1. Make the Icon Container Pop Out */
.offer-card:hover .offer-icon {
    background-color: var(--maroon-primary);
    transform: scale(1.05);
}

/* 2. Invert the SVG color inside the popped icon */
.offer-card:hover .offer-icon svg {
    color: #ffffff;
    transform: rotate(5deg); /* Playful dynamic tilt */
}

/* 3. Bring the Title forward visually */
.offer-card:hover h3 {
    color: var(--maroon-primary);
}

/* 4. Make the background number slightly more visible */
.offer-card:hover .offer-num {
    opacity: 0.09;
    transform: translateY(-5px);
}
/* ===============================
   Mobile
================================= */

@media (max-width:768px){

    .offerings-section{
        padding:60px 0;
    }

    .offer-grid{
        gap:20px;
    }

    .offer-card{
        padding:25px;
    }

    .offer-num{
        font-size:48px;
    }

}

/* --- Gallery Layout --- */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--maroon-dark); 
}
.gallery-section .section-title h2 {
    color: #ffffff; 
}
.gallery-section .section-title p {
    color: #F5EBEB;
    opacity: 0.9;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 300px;
    border: 2px solid #D4AF37; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(33, 5, 10, 0.85));
    color: white;
    padding: 2rem 1.5rem 1rem 1.5rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* --- Video Reels Section --- */
.video-section {
    padding: 5rem 0;
    background-color: var(--maroon-light);
}

.reel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.reel-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    box-shadow: 0 15px 35px rgba(74, 14, 23, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.reel-thumbnail {
    position: relative;
    padding-bottom: 177.77%; 
    height: 0;
}

.reel-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(33, 5, 10, 0.8) 0%, rgba(33, 5, 10, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.reel-overlay span {
    font-family: var(--font-heading);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.8;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: fill 0.4s ease, transform 0.4s ease;
    transform: translateX(2px);
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(74, 14, 23, 0.25);
}

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

.reel-card:hover .reel-overlay {
    background: linear-gradient(to top, rgba(74, 14, 23, 0.9) 0%, rgba(74, 14, 23, 0.4) 100%);
}

.reel-card:hover .play-btn {
    background: var(--gold);
    transform: scale(1.1);
    border-color: var(--gold);
}

.reel-card:hover .play-btn svg {
    fill: var(--maroon-dark);
}

.reel-card:hover .reel-overlay span {
    transform: translateY(0);
    opacity: 1;
    color: var(--gold);
}

/* --- Lightbox Modal --- */
.reel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 5, 10, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.reel-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #000;
    border-radius: 12px;
    border: 1px solid var(--gold);
    overflow: visible;
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 177.77%;
    height: 0;
}

.close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--gold);
}



/* ==========================================
   Upgraded Premium Features/Meditations Block
============================================ */

.features-section {
    padding-block: 6rem 8rem;
    padding-inline: 1.5rem;
    background-color: #faf9f6;
}

.section-title {
    text-align: center;
    margin-block-end: 4.5rem;

    & h2 {
        font-family: var(--font-heading);
        font-size: 2.75rem;
        color: var(--maroon-dark);
        letter-spacing: 0.5px;
        margin-block-start: 0;
        margin-block-end: 0.75rem;
    }

    & p {
        color: #665054;
        max-width: 600px;
        margin-inline: auto;
        font-size: 1.1rem;
        line-height: 1.6;
        text-wrap: pretty;
    }
}

/* --- Premium Unified Bento Cards --- */
.card {
    background-color: #ffffff;
    padding-block: 4rem 3.5rem;
    padding-inline: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 14, 23, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    /* Premium fluid transition curves */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;

    & h3 {
        font-family: var(--font-heading);
        color: var(--maroon-dark);
        font-size: 1.45rem;
        line-height: 1.3;
        margin-block-start: 0;
        margin-block-end: 1rem;
        transition: color 0.3s ease;
    }

    & p {
        color: #665054;
        font-size: 1rem;
        line-height: 1.65;
        text-wrap: pretty;
        margin: 0;
    }

    /* Elegant Editorial Hover Actions */
    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(74, 14, 23, 0.06);

        & .card-icon {
            transform: scale(1.15);
            opacity: 0.08;
        }
    }
}

/* --- Floating Editorial Background Numbers --- */
.card-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -10px;
    inset-inline-end: 20px;
    pointer-events: none;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.5s ease;
}

/* --- Individual Visual Identities --- */

/* Card 1: The Dark Meditative Anchor */
.card-1 {
    background-color: var(--maroon-dark);
    border-color: transparent;

    & h3 { color: #ffffff; }
    & p { color: rgba(255, 255, 255, 0.8); }
    & .card-icon { 
        color: var(--gold); 
        opacity: 0.05; 
    }

    &:hover {
        border-color: rgba(212, 175, 55, 0.2);
        box-shadow: 0 30px 60px rgba(33, 5, 10, 0.3);
    }
}

/* Card 2: Crisp Minimal White */
.card-2 {
    background-color: #ffffff;
    
    & .card-icon { 
        color: var(--maroon-dark); 
        opacity: 0.03; 
    }

    &:hover {
        border-color: var(--maroon-med);
        & h3 { color: var(--maroon-med); }
    }
}

/* Card 3: Soft Luxury Cream Accent */
.card-3 {
    background-color: var(--maroon-light);
    border-color: rgba(74, 14, 23, 0.03);

    & .card-icon { 
        color: var(--gold); 
        opacity: 0.15; 
    }

    &:hover {
        border-color: var(--gold);
    }
}

/* --- Viewport Responsiveness --- */
@media (max-width: 768px) {
    .features-section {
        padding-block: 4rem 5rem;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
    }

    .card {
        padding-block: 3rem 2.5rem;
        padding-inline: 2rem;
    }
}

/* --- Call to Action --- */
.cta-section {
    background-color: var(--maroon-dark);
    color: var(--text-light);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}


/* --- Footer Layout --- */
.footer {
    background-color: #21050A;
    color: #D5C3C6;
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p {
    margin-bottom: 0.8rem;
}

.footer-info .contact-detail {
    margin-top: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #D5C3C6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: white;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) invert(90%) contrast(100%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}
/* --- Responsive Media Queries --- */
@media(max-width: 992px) {
    .navbar {
        padding: 20px 32px;
        background: rgba(253, 246, 246, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(74, 14, 23, 0.05);
        position: fixed;
    }

    .navbar.scrolled {
        padding: 16px 32px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(253, 246, 246, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
    }

    .nav-links.nav-open {
        right: 0;
    }

    .navbar .nav-item {
        font-size: 24px;
        font-family: var(--font-heading);
        letter-spacing: 1px;
    }

    .btn-nav-cta {
        margin-top: 16px;
        font-size: 18px;
        padding: 13px 40px;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .hero {
        padding: 128px 32px 64px 32px;
        min-height: auto;
    }

    .hero .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 48px; 
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.3;
    }

    .hero p {
        margin: 0 auto 32px auto;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .about-section {
        padding: 64px 0;
    }

    .about-section .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-image img {
        height: 320px;
    }

    .video-section {
        padding: 64px 0;
    }

    .reel-grid {
        gap: 24px;
        padding: 0 16px;
    }

    .modal-content {
        max-width: 85vw;
    }

    .close-btn {
        top: -45px;
        right: 0px;
        font-size: 35px;
    }

    .gallery-section {
        padding: 64px 0;
    }

    .section-title {
        margin-bottom: 48px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }

    .gallery-item {
        height: 260px;
    }

    .card {
        padding: 32px 24px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .cta-inner h2 {
        font-size: 32px;
    }

    .grid-3-footer {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .map-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .offerings-section {
        padding: 60px 0;
    }

    .offer-grid {
        gap: 20px;
    }

    .offer-card {
        padding: 25px;
        text-align: center;
    }

    .offer-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .offer-num {
        font-size: 48px;
    }
}