/* ===== Hero Section ===== */
.hero-section {
    overflow: hidden;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Title */
.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
}

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

/* Description */
.hero-desc {
    font-size: 18px;
    max-width: 600px;
    opacity: 0.9;
}

/* Buttons */
.hero-btn-primary {
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
}

.hero-btn-secondary {
    padding: 14px 26px;
    border-radius: 14px;
    background: #4b5d2a;
    color: #fff;
    font-weight: 600;
}

.hero-btn-secondary:hover {
    background: #3f4f23;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;

    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        width: 50% !important;
        margin: 0% 20%;
        font-weight: 400;
        padding: 8px 15px;
    }
}


/* Section */
.experience-section {
    background: linear-gradient(180deg, #f8f8f6 0%, #f1f3ef 100%);
}

/* ===== Media Wrapper ===== */
.experience-media-wrap {
    position: relative;
    height: 540px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: transform .6s ease;
}

/* Hover zoom */
.experience-media-wrap:hover {
    transform: translateY(-6px);
}

/* Video */
.experience-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s ease;
}

.experience-media-wrap:hover .experience-video {
    transform: scale(1.06);
}

/* Gradient overlay */
.video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

/* ===== Elevation Badge ===== */
.elevation-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: rgba(255, 244, 230, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.elevation-badge strong {
    display: block;
    color: #c96f1a;
    font-size: 22px;
    font-weight: 700;
}

.elevation-badge span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #7a7a7a;
}

/* ===== Text ===== */
.section-eyebrow {
    color: #c96f1a;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: #143c2f;
    line-height: 1.2;
}

.section-desc {
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
    max-width: 520px;
}

/* ===== Feature ===== */
.feature-item.premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #143c2f;
    padding: 10px 0;
}

.feature-item.premium i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #e6f4ee, #dff1e8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f7a5f;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .experience-media-wrap {
        height: 420px;
    }

    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .experience-media-wrap {
        height: 280px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .elevation-badge {
        bottom: 14px;
        right: 14px;
        padding: 12px 14px;
    }
    .feature-item.premium{
        padding: 0px;
        margin: 0px;
    }
}


:root {
    --brand-dark: #002d25;
    --brand-gold: #c5a059;
    --text-muted: #888;
}

.sanctuary-container {
    padding: 100px 0;
}

/* Arched Image Stack */
.image-composition {
    position: relative;
    padding-bottom: 80px;
}

/* The Main Large Arch */
.arch-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* Creates the arched top effect */
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* The Small Overlapping Inset Image */
.inset-box {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 60%;
    background: white;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.inset-box img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(100%) contrast(1.2);
    /* Matches the B&W look in image */
}

/* Typography & Content */
.label-gold {
    color: var(--brand-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.sanctuary-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.sanctuary-title span {
    font-style: italic;
    font-weight: 400;
    display: block;
    color: #7a9d96;
}

.sanctuary-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Feature Grid */
.feature-item {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-bottom: 40px;
}

.feature-item i {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
    display: block;
}

.feature-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing Area */
.pricing-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.price-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.price-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-dark-brand {
    background-color: var(--brand-dark);
    color: white;
    border-radius: 12px;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
}

.btn-dark-brand:hover {
    background-color: #004439;
    transform: translateX(5px);
    color: white;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .sanctuary-container {
        padding: 60px 25px;
    }
    .sanctuary-title {
        font-size: 2.5rem;
    }

    .arch-main {
        height: 450px;
    }

    .inset-box {
        right: 0;
        width: 50%;
    }
}


/* ===== Section Background ===== */
.experiences-section {
    background: #063d2e;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Header */
.section-eyebrow {
    color: #f6b93b;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
}

.section-subtitle {
    color: #a8c5bb;
    font-size: 14px;
}

/* View All */
.view-all-link {
    color: #f6b93b;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
}

.view-all-link:hover {
    text-decoration: underline;
    color: #ffd166;
}

/* ===== Cards ===== */
.experience-card {
    transition: all .35s ease;
}

.exp-img-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.exp-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform .7s ease;
}

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

/* Body */
.exp-body {
    margin-top: 15px;
}

.exp-body h6 {
    color: #ffffff;
    font-weight: 700;
}

.exp-body p {
    font-size: 13px;
    color: #a8c5bb;
    margin-top: 6px;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .exp-img {
        height: 190px;
    }

    .section-title {
        font-size: 26px;
    }
}

/* Section */
.access-section {
    background: #f7f8f6;
}

/* Eyebrow */
.access-eyebrow {
    color: #c96f1a;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Title */
.access-title {
    font-size: 38px;
    font-weight: 800;
    color: #143c2f;
    line-height: 1.25;
}

/* Item */
.access-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

/* Icon */
.access-icon {
    width: 44px;
    height: 44px;
    background: #e6f4ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f7a5f;
    flex-shrink: 0;
}

.access-item h6 {
    font-size: 12px;
    font-weight: 700;
    color: #143c2f;
    margin-bottom: 4px;
}

.access-item p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

/* Phone highlight */
.connect-number {
    color: #0f5132 !important;
    font-weight: 700;
}

/* Image */
.access-media {
    border-radius: 24px;
    border: 2px solid #0f5132;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform .4s ease;
}




/* Responsive */
@media (max-width: 991px) {
    .access-title {
        font-size: 30px;
    }

    .access-media img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .access-media img {
        height: 240px;
    }
}