@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@300;400&display=swap');

:root {
    --cedar-gold: #C5A059;
    --dark-text: #1A1A1A;
    --pale-bone: #F7F6F2;
    --content-width: 1300px;
}

html { scroll-behavior: smooth; }

body { 
    margin: 0; 
    font-family: 'Lato', sans-serif; 
    background-color: white; 
    color: var(--dark-text); 
    line-height: 1.6; 
    padding-top: 140px; /* Space for the 140px Navigation */
}

/* --- RE-USED UTILITIES --- */
.container { max-width: var(--content-width); margin: 0 auto; padding: 0 20px; }
.gold-divider { width: 60px; height: 3px; background: var(--cedar-gold); margin: 25px 0 35px 0; }
.gold-divider.center { margin: 25px auto; }
.sub-label { color: var(--cedar-gold); text-transform: uppercase; letter-spacing: 4px; font-size: 0.85rem; margin-bottom: 10px; font-weight: 700; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 300; line-height: 1.1; margin: 0; }

/* --- NAVIGATION (140px Height / 130px Logo) --- */
.main-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: white; border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 140px; display: flex; align-items: center;
}
.nav-container {
    width: 100%; max-width: var(--content-width); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
}
.nav-logo { height: 130px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--dark-text); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; font-weight: 700; }
.nav-links a:hover { color: var(--cedar-gold); }

/* --- HERO SECTION (85% Viewport Height) --- */
.hero-sanctuary { height: 85vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-slides { position: absolute; top:0; left:0; width:100%; height:100%; z-index: 1; }
.slide { position: absolute; width:100%; height:100%; background-size: cover; background-position: center; opacity: 0; animation: fadeImages 25s infinite; }
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }
@keyframes fadeImages { 0% { opacity: 0; } 10% { opacity: 1; } 25% { opacity: 1; } 35% { opacity: 0; } 100% { opacity: 0; } }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); z-index: 2; }
.hero-content { z-index: 3; max-width: 1000px; padding: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 4.2rem; font-weight: 300; margin-bottom: 15px; line-height: 1.1; }
.hero-tagline { text-transform: uppercase; letter-spacing: 4px; font-weight: 400; margin-bottom: 40px; font-size: 1rem; }
.btn-hero { display: inline-block; background: var(--cedar-gold); color: white; padding: 18px 35px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* --- LARGE BOOKING BAR --- */
.booking-incentive-bar { background: var(--dark-text); color: white; padding: 60px 0; }
.incentive-container { max-width: var(--content-width); margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.promo-text-large { font-family: 'Lato', sans-serif; font-weight: 300; font-size: 2.2rem; letter-spacing: 2px; text-transform: uppercase; line-height: 1.3; margin: 0 0 35px 0; }
.promo-text-large strong { color: var(--cedar-gold); font-weight: 700; }
.promo-text-large a { color: var(--cedar-gold); text-decoration: none; font-weight: 700; }
.platform-cta { display: flex; align-items: center; font-size: 1.1rem; }
.platform-cta span { opacity: 0.6; margin-right: 25px; }
.platform-link { color: white; margin-left: 25px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* --- STORY SPLIT SECTION (Left Text / Right Image) --- */
.story-split-section { background-color: white; border-bottom: 1px solid #eee; }
.story-flex-container { display: flex; align-items: stretch; }
.story-content-box { flex: 1; padding: 120px 80px; display: flex; flex-direction: column; justify-content: center; }
.story-description { font-size: 1.2rem; color: #555; margin-bottom: 60px; line-height: 1.8; }
.accommodation-matrix { background: var(--pale-bone); padding: 50px; }
.accommodation-matrix h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; margin: 0 0 30px 0; }
.stats-list { list-style: none; padding: 0; margin: 0; }
.stats-list li { font-size: 1.1rem; color: #666; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.stats-list li strong { color: var(--dark-text); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-right: 10px; }
.story-image-box { flex: 1; }
.story-main-image { height: 100%; background-size: cover; background-position: center; min-height: 600px; }

/* --- NEW TIERED MATRIX (1-2-2 Layout) --- */
.luxury-experience { background-color: var(--pale-bone); padding: 120px 0; }
.matrix-header { text-align: center; margin-bottom: 80px; }
.section-subtitle { text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; color: var(--cedar-gold); font-weight: 700; }

/* Row 1: Flagship Full Width */
.flagship-row { 
    margin-bottom: 30px; 
    padding-top: 20px; /* Gives the gold badge room so it doesn't hit the title */
}

/* --- ROW 1: FLAGSHIP CARD (Symmetry & Mobile Fix) --- */
.flagship-row { 
    margin-bottom: 30px; 
    padding-top: 20px; 
}

.featured-full { 
    background: white; 
    border: 2px solid var(--cedar-gold); 
    position: relative; 
    padding: 20px; /* The broad white border for symmetry */
}

.card-horizontal-inner { 
    display: flex; 
    align-items: stretch; 
    min-height: 500px; 
    gap: 40px; 
}

.image-box-side { 
    flex: 1; 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.text-box-side { 
    flex: 1.2; 
    padding: 40px 20px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.text-box-side h3 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin: 0 0 10px 0; }

.card-desc { font-size: 1.1rem; color: #666; margin-bottom: 30px; line-height: 1.6; }

.amenities-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    list-style: none; 
    padding: 0; 
    margin: 0 0 40px 0; 
}

.amenities-grid li { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.amenities-grid li::before { content: '— '; color: var(--cedar-gold); }

.card-actions { display: flex; gap: 20px; }
.card-actions .btn-card { flex: 1; margin: 0; }

/* Fixed Badge Positioning */
.flagship-row .floating-badge {
    top: -18px;
    white-space: nowrap;
}

/* --- MOBILE RESPONSIVENESS FOR FLAGSHIP --- */
@media (max-width: 768px) {
    .card-horizontal-inner {
        flex-direction: column; 
        min-height: auto;
        gap: 20px;
    }

    .image-box-side {
        width: 100%;
        height: 300px; /* Keeps the image visible on mobile */
        flex: none;
    }

    .text-box-side {
        padding: 20px 10px;
        text-align: center;
    }

    .text-box-side h3 {
        font-size: 2rem;
    }

    .card-actions {
        flex-direction: column;
    }
}

.amenities-grid li { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.amenities-grid li::before { content: '— '; color: var(--cedar-gold); }

.card-actions { display: flex; gap: 20px; }

.card-actions .btn-card { flex: 1; margin: 0; }

/* Fixed Badge Positioning */
.flagship-row .floating-badge {
    top: -18px; /* Perfectly centered on the top border */
    white-space: nowrap;
}

/* Rows 2 & 3: Dual Column Grids */
.card-grid-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.tier-card { background: white; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.06); transition: 0.4s; }
.tier-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card-inner { padding: 40px; display: flex; flex-direction: column; flex-grow: 1; }
.image-box { height: 300px; background-size: cover; background-position: center; margin-bottom: 30px; background-color: #eee; }
.text-box { display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.text-box h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 300; margin: 0 0 5px 0; }
.meta { color: var(--cedar-gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
.amenities { list-style: none; padding: 0; margin-bottom: 40px; text-align: left; }
.amenities li { font-weight: 700; margin-bottom: 12px; padding-left: 20px; position: relative; font-size: 0.95rem; }
.amenities li::before { content: '—'; position: absolute; left: 0; color: var(--cedar-gold); }

/* Buttons */
.btn-card { margin-top: auto; display: block; padding: 20px; text-align: center; text-decoration: none; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; transition: 0.3s; }
.btn-solid { background: var(--cedar-gold); color: white; border: 2px solid var(--cedar-gold); }
.btn-solid:hover { background: #b08e4d; border-color: #b08e4d; }
.btn-outline { border: 2px solid var(--dark-text); color: var(--dark-text); }
.btn-outline:hover { background: var(--dark-text); color: white; }

.floating-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--cedar-gold); color: white; padding: 8px 25px; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; z-index: 10; }

/* --- THE POOL (60/40 Split) --- */
.wellness-section { 
    padding: 120px 0; 
    background-color: white; 
}

.wellness-flex { 
    display: flex; 
    align-items: center; 
    gap: 80px; 
    max-width: var(--content-width); 
    margin: 0 auto; 
    padding: 0 20px; 
}

.wellness-image-box { flex: 1.5; }
.wellness-text-box { flex: 1; }

.main-spa-image { 
    height: 700px; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    box-shadow: 25px 25px 0 var(--pale-bone); 
}

.image-caption { 
    position: absolute; 
    bottom: 35px; 
    right: -25px; 
    background: var(--dark-text); 
    color: white; 
    padding: 15px 30px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    z-index: 5;
}

.section-title-spa { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.8rem; 
    font-weight: 300; 
    line-height: 1.1; 
    margin: 0; 
}

.wellness-description { 
    font-size: 1.2rem; 
    color: #444; 
    margin-bottom: 40px; 
}

.spa-amenities { 
    list-style: none; 
    padding: 0; 
    margin-bottom: 45px; 
}

.spa-amenities li { 
    margin-bottom: 18px; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 1.1rem; 
    position: relative; 
    padding-left: 35px; 
}

.spa-amenities li::before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 50%; 
    width: 20px; 
    height: 1px; 
    background: var(--cedar-gold); 
}

.access-note { 
    border-left: 5px solid var(--cedar-gold); 
    padding-left: 25px; 
    font-style: italic; 
    font-weight: 700; 
    font-size: 1.1rem; 
}

/* --- THE POOL MOBILE FIX --- */
@media (max-width: 1100px) {
    .wellness-flex { 
        flex-direction: column; 
        gap: 40px; 
    }
    
    .wellness-image-box, .wellness-text-box { 
        width: 100%; 
    }

    .main-spa-image { 
        height: 400px; /* Forces the image to show on mobile */
        width: 100%;
        box-shadow: 15px 15px 0 var(--pale-bone); 
    }

    .image-caption { 
        right: 0; 
        bottom: 0; 
        position: relative; 
        display: inline-block;
        margin-top: 10px;
        text-align: center;
    }
    
    .section-title-spa {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .wellness-text-box {
        text-align: center;
    }
    
    .spa-amenities {
        text-align: left;
        display: inline-block; 
    }
}
/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 1100px) {
    .story-flex-container, .card-horizontal-inner, .wellness-flex { flex-direction: column; }
    .card-grid-dual { grid-template-columns: 1fr; }
    .story-content-box, .text-box-side { padding: 60px 20px; text-align: center; }
    .gold-divider { margin: 25px auto; }
    .image-box-side, .story-main-image { height: 400px; width: 100%; }
    .nav-links { display: none; }
    .amenities-grid { grid-template-columns: 1fr; text-align: left; }
    .card-actions { flex-direction: column; }
    .promo-text-large { font-size: 1.6rem; }
}
/* --- DETAILS SELL SHEET --- */
.details-sell-sheet { 
    padding: 100px 0; 
    background-color: white; 
    border-top: 1px solid #eee;
}

.sell-sheet-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
}

.legacy-text { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: #555; 
    margin-bottom: 40px; 
}

.spec-group { margin-bottom: 40px; }

.spec-group h4 { 
    font-family: 'Lato', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.9rem; 
    color: var(--cedar-gold); 
    margin-bottom: 20px; 
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.spec-intro { font-weight: 700; margin-bottom: 15px; font-size: 1rem; }

.spec-list { list-style: none; padding: 0; margin: 0; }

.spec-list li { 
    margin-bottom: 12px; 
    font-size: 1.05rem; 
    color: #444; 
    display: flex; 
    justify-content: space-between;
}

.spec-list li strong { color: var(--dark-text); font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
    .sell-sheet-grid { grid-template-columns: 1fr; gap: 60px; }
    .sell-column { text-align: center; }
    .gold-divider { margin: 25px auto; }
    .spec-list li { flex-direction: column; gap: 5px; margin-bottom: 20px; }
}

/* --- GUEST BOOK (Verified 5-Star Masonry) --- */
.guest-book { 
    padding: 120px 0; 
    background-color: #fcfaf8; /* Soft cream break from the white sections */
}

.testimonial-masonry {
    column-count: 3;
    column-gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.testimonial-card { 
    background: white; 
    padding: 40px; 
    border: 1px solid #f0f0f0; 
    margin-bottom: 40px; 
    break-inside: avoid; /* Essential: Prevents text from being cut off between columns */
    display: inline-block;
    width: 100%;
    
    /* Dynamic Directional Shadow (Bottom and Right focus) */
    box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.03), 
                4px 4px 10px rgba(0, 0, 0, 0.02);
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--cedar-gold);
    box-shadow: 15px 20px 35px rgba(193, 155, 118, 0.12); /* Subtle gold-tinted glow on hover */
}

/* 5-Star Styling */
.star-rating {
    color: var(--cedar-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    display: block;
}

.testimonial-text { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #444; 
    font-style: italic; 
    margin-bottom: 25px; 
    word-wrap: break-word;
}

.testimonial-text strong {
    color: var(--dark-text);
    font-style: normal;
    font-weight: 700;
}

/* Guest Info Layout */
.guest-meta h5 { 
    margin: 0; 
    font-family: 'Lato', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-size: 0.85rem; 
    color: var(--dark-text);
}

.guest-meta span { 
    font-size: 0.75rem; 
    color: #999; 
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

/* Highlight Card Variation (Optional Pop) */
.highlight-card {
    border-left: 4px solid var(--cedar-gold);
}

/* --- RESPONSIVE TABLET & MOBILE --- */
@media (max-width: 1100px) {
    .testimonial-masonry { 
        column-count: 2; 
        column-gap: 30px; 
    }
}

@media (max-width: 768px) {
    .testimonial-masonry { 
        column-count: 1; 
        padding: 0 15px;
    }
    
    .testimonial-card { 
        padding: 30px; 
        margin-bottom: 25px;
    }
    
    .testimonial-card:hover {
        transform: none; /* Disables hover lift on mobile for better scrolling */
    }
}

/* ==========================================================================
   ESTATE GALLERY CSS
   ========================================================================== */
.estate-gallery { padding: 100px 0; background: #fff; }
.gallery-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }

.filter-btn { 
    padding: 12px 25px; border: 1px solid #eee; background: #fff; 
    cursor: pointer; text-transform: uppercase; letter-spacing: 2px; 
    font-size: 11px; font-weight: 700; transition: 0.3s; 
}
.filter-btn.active { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }

.gallery-masonry { 
    column-count: 3; column-gap: 20px; 
    max-height: 900px; /* Hides the bulk of the 91 images initially */
    overflow: hidden; 
    transition: max-height 0.8s ease; 
    position: relative;
}
.gallery-masonry.is-expanded { max-height: 30000px; }

/* Subtle fade out at the bottom of the collapsed gallery */
.gallery-masonry::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 150px;
    background: linear-gradient(transparent, white); pointer-events: none; transition: 0.3s;
}
.gallery-masonry.is-expanded::after { opacity: 0; }

.gallery-item { margin-bottom: 20px; break-inside: avoid; cursor: pointer; transition: 0.3s; }
.gallery-item img { width: 100%; height: auto; display: block; border-radius: 2px; }
.gallery-item:hover { transform: translateY(-5px); }

/* CINEMATIC LIGHTBOX FADE */
.lightbox { 
    display: flex !important; /* Always flex, but hidden via opacity */
    position: fixed !important; 
    top: 0; left: 0; 
    width: 100vw; height: 100vh; 
    background: rgba(0,0,0,0.92); 
    z-index: 999999 !important; 
    justify-content: center; 
    align-items: center;
    
    /* THE FINESSE: Start invisible and slightly "sunken" */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-wrapper {
    position: relative;
    width: 90%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Subtle zoom-in effect */
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-wrapper {
    transform: scale(1);
}

.lightbox-content { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain;
    border: 1px solid #C5A059;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    /* Soft fade between images when clicking arrows */
    transition: opacity 0.3s ease-in-out;
}

/* ARROWS */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    padding: 30px;
    z-index: 1000001;
    transition: 0.3s;
    user-select: none;
}

.lightbox-nav:hover { color: #C5A059; }
.prev { left: 10px; }
.next { right: 10px; }

.lightbox-close { 
    position: absolute; top: 20px; right: 30px; 
    color: #fff; font-size: 60px; cursor: pointer; z-index: 1000001;
    line-height: 1;
}
/* REFINED VIEW MORE BUTTON */
.view-more-container {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

.btn-view-more {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #C5A059; /* Your Cedar Gold */
    padding: 18px 45px;
    font-family: 'Playfair Display', serif; /* Or your site's heading font */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-view-more:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    letter-spacing: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 600px) { .gallery-masonry { column-count: 1; } }


/* 3-COLUMN FAT FOOTER */
.site-footer {
    background: #111; /* Deepest black */
    color: #fff;
    padding: 100px 0 0;
    border-top: 1px solid #C5A059; /* Gold accent line at the very top */
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr; /* Map gets slightly more space */
    gap: 60px;
    padding: 0 40px 80px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

/* COLUMN 1: MAP */
.map-wrapper {
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Makes map match the dark theme */
    border: 1px solid #333;
    overflow: hidden;
}
.map-address {
    margin-top: 15px;
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* COLUMN 2: BOOKING LINKS */
.booking-links {
    list-style: none;
    padding: 0;
}
.booking-links li {
    margin-bottom: 20px;
}
.booking-links a {
    text-decoration: none;
    color: #fff;
    font-family: 'Lora', serif;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    transition: 0.3s;
}
.booking-links a:hover {
    color: #C5A059;
    border-color: #C5A059;
    padding-left: 10px;
}
.platform {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    background: #1a1a1a;
    padding: 4px 8px;
}

/* COLUMN 3: DIRECT CTA */
.incentive-text {
    font-family: 'Lora', serif;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}
.footer-call-btn {
    display: block;
    background: transparent;
    border: 1px solid #C5A059;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    text-align: center;
    transition: 0.4s;
}
.footer-call-btn:hover {
    background: #C5A059;
    color: #111;
}
.btn-sub {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.btn-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 1px;
}
.email-link {
    margin-top: 25px;
    font-size: 20px;
    color: #666;
}
.email-link a { color: #31bdcf; text-decoration: none; }

/* FOOTER BOTTOM */
.footer-bottom {
    background: #000;
    text-align: center;
    padding: 30px;
    border-top: 1px solid #111;
}
.footer-bottom p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}