:root {
    --bg-deep: #ffffff;
    --bg-surface: #eff2f6;
    --accent-silver: #4a5568;
    --accent-platinum: #2d3748;
    --accent-gold: #c5a059;
    --text-main: #1a202c;
    --text-dim: #718096;
    --border: rgba(0, 0, 0, 0.06);
    --transition: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--accent-gold);
}

/* --- Header & Nav --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo img {
    height: 45px;
    width: auto;
    filter: invert(1) brightness(2);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    transition: color 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    left: 0;
    transition: all 0.3s var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-cta {
    background-color: var(--accent-gold);
    color: #ffffff;
    padding: 0.7rem 1.6rem;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid var(--accent-gold);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* Mobile-only Contact Us item — hidden on desktop */
.nav-mobile-contact {
    display: none;
}

.nav-cta:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.6s var(--transition);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
}

.nav-cta:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-100%);
}

@media (min-width: 1101px) and (max-width: 1440px) {
    .nav-links {
        gap: 1.5rem !important;
    }

    .nav-links a {
        letter-spacing: 0 !important;
    }
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: all 0.5s var(--transition);
        z-index: 1000;
        margin: 0;
        padding: 0;
    }

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

    .nav-links li a {
        font-size: 1rem;
        letter-spacing: 0.3rem;
    }

    /* Hide the header CTA button on mobile — it appears inside the menu instead */
    .nav-cta {
        display: none;
    }

    /* Show Contact Us link inside the mobile menu */
    .nav-mobile-contact {
        display: list-item;
    }

    .nav-mobile-contact a {
        font-size: 1rem !important;
        letter-spacing: 0.3rem !important;
        color: var(--accent-gold) !important;
        text-decoration: none;
        font-weight: 500;
    }

    .nav-mobile-contact a:hover {
        color: #ffffff !important;
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    background: #ffffff;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    filter: contrast(1.05) brightness(1.05);
    overflow: hidden;
}

.hero-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(117, 117, 117, 0.5) 0%, #00000054 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.5rem, 8vw, 6.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    color: #fff;
    animation: revealUp 1.2s var(--transition) forwards;
}

.hero p {
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    margin-bottom: 2rem;
    animation: revealUp 1.2s var(--transition) 0.3s forwards;
}

.hero-actions {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1.2s var(--transition) 0.6s forwards;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid var(--accent-gold);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s var(--transition);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
}

.hero-cta:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-100%);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Gallery Section --- */
.gallery-container {
    padding: 8rem 5%;
    background-color: var(--bg-surface);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-dim);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background: #f0f1f3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item.large {
    grid-column: span 8;
    height: 600px;
}

.gallery-item.tall {
    grid-column: span 4;
    height: 600px;
}

.gallery-item.medium {
    grid-column: span 6;
    height: 400px;
}

.gallery-item.small {
    grid-column: span 3;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

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

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--transition);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
    color: #fff;
}

.item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.item-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gold);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--transition);
    z-index: 5;
    pointer-events: none;
}

.gallery-item:hover .view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.view-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--transition);
    padding: 4rem;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.6s var(--transition);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox-image {
    transform: scale(1) translateY(0);
}

.lightbox-info {
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--transition) 0.3s;
}

.lightbox.active .lightbox-info {
    opacity: 1;
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 0rem;
    right: 0;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #000000;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
    left: 2rem;
}

.nav-btn.next {
    right: 2rem;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #1a1a1c;
    stroke-width: 1.5;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: #d1d1d6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.tall,
    .gallery-item.medium,
    .gallery-item.small {
        grid-column: span 12;
        height: 400px;
    }

    .lightbox {
        padding: 2rem;
    }

    .nav-btn {
        /* display: none; */
        padding: 5px !important;
        filter: invert(1);
        backdrop-filter: none;
        background: #ffffff40;
    }

}


/* --- Footer --- */
footer {
    padding: 2rem 5%;
    background-color: #ffffff;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    line-height: normal;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-top: 1rem;
}

.footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo-wrap .nav-logo img {
    filter: none;
}

.footer-logo-wrap .nav-logo-name {
    color: var(--text-main);
}

/* --- Feature Grid --- */
.features-section {
    padding: 8rem 5%;
    background-color: var(--bg-deep);
}

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

.feature-item {
    background-color: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--accent-gold);
    color: #ffffff;
    transform: rotateY(360deg);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* --- Heritage Section --- */
.heritage-section {
    position: relative;
    padding: 12rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-deep);
    overflow: hidden;
}

.heritage-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(1);
}

.heritage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-surface) 0%, transparent 40%, transparent 60%, var(--bg-deep) 100%);
    z-index: 1;
}

.heritage-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.heritage-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.heritage-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.faq-accordion .accordion-item {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s var(--transition);
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-gold);
}

.faq-accordion .accordion-button {
    padding: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-main);
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-gold);
    background-color: transparent;
    border-bottom: 1px solid var(--border);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5a059'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2);
}

.faq-accordion .accordion-body {
    padding: 2rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1rem;
    background-color: #fcfcfd;
}

/* --- Blog Section --- */
.blog-section {
    padding: 8rem 5%;
    background-color: #fafafa;
}

.blog-slider-container {
    position: relative;
    margin: 0 -15px;
    padding: 20px 15px;
}

.blog-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    padding-bottom: 20px;
}

.blog-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    min-width: 320px;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.blog-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

/* --- Slider Navigation --- */
.slider-nav {
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--transition);
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--text-main);
}

.blog-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-link {
    margin-top: auto;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-link i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.blog-link:hover {
    color: var(--accent-gold);
}

.blog-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 5rem 5%;
    }

    .blog-card {
        flex: 0 0 calc(100% - 10px);
    }

    .slider-nav {
        display: none;
    }

    .section-header h2 {
        text-align: center;
        width: 100%;
    }

    .about-stats {
        padding-top: 0px !important;
    }
}

/* ── SHARED INNER PAGE STYLES (from inner.css) ── */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    filter: contrast(1.05) brightness(0.9);
    transform: scale(1.05);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content p {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: revealUp 1s var(--transition) 0.2s forwards;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s var(--transition) 0.4s forwards;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--accent-gold);
}

.section-tag-light {
    color: var(--accent-gold);
}

.nav-links a.active {
    color: var(--accent-gold);
}

.hero-cta-outline {
    background: transparent !important;
    border: 1px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

.hero-cta-outline:hover {
    background: var(--accent-gold) !important;
    color: #fff !important;
}

.page-cta {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.page-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(0.5);
}

.page-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-surface) 0%, transparent 40%, transparent 60%, var(--bg-deep) 100%);
    z-index: 1;
}

.page-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.page-cta p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 500;
}

.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--transition);
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.inner-text h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.inner-text p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
        padding: 0 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .page-cta {
        padding: 6rem 0;
    }

    .page-cta h2 {
        font-size: 2.4rem;
    }

    .inner-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 45vh;
        min-height: 300px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .page-cta {
        padding: 5rem 0;
    }

    .page-cta h2 {
        font-size: 2rem;
    }

    .page-cta p {
        font-size: 0.95rem;
    }

    .page-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .inner-text h2 {
        font-size: 1.8rem;
    }

    .inner-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.7rem;
    }

    .page-hero-content p {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }

    .section-tag {
        font-size: 0.65rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .page-cta h2 {
        font-size: 1.6rem;
    }

    .inner-text h2 {
        font-size: 1.5rem;
    }
}

/* ── ABOUT PAGE Styles ── */
.about-intro {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.about-intro-text h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.about-intro-text p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    z-index: -1;
}

.about-vision {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.about-vision-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/location/gate1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: grayscale(1);
}

.about-vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-surface) 0%, transparent 30%, transparent 70%, var(--bg-deep) 100%);
    z-index: 1;
}

.about-vision h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.15;
}

.about-vision p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-stats {
    padding: 6rem 0;
    background-color: var(--bg-deep);
}

.about-land {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.about-land-text h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-land-text p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-main);
}

.about-features-list li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.land-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.land-img-main {
    grid-column: span 2;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.land-img-small {
    grid-column: span 2;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-heritage {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.heritage-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.5s var(--transition);
}

.heritage-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.heritage-card-image {
    height: 100%;
    min-height: 400px;
}

.heritage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-card-content {
    padding: 4rem;
}

.heritage-card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.heritage-card-content p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-cta {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/location/marker.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(0.5);
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-surface) 0%, transparent 40%, transparent 60%, var(--bg-deep) 100%);
    z-index: 1;
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-cta p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {

    .about-intro,
    .about-land,
    .about-heritage {
        padding: 5rem 0;
    }

    .about-intro-text h2,
    .about-land-text h2 {
        font-size: 2.2rem;
    }

    .about-vision {
        padding: 6rem 0;
    }

    .about-vision h2 {
        font-size: 2.4rem;
    }

    .heritage-card-image {
        min-height: 300px;
    }

    .heritage-card-content {
        padding: 2.5rem;
    }

    .heritage-card-content h2 {
        font-size: 1.8rem;
    }

    .about-cta {
        padding: 6rem 0;
    }

    .about-cta h2 {
        font-size: 2.4rem;
    }

    .image-accent {
        display: none;
    }

    .about-intro-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {

    .about-intro,
    .about-land,
    .about-heritage {
        padding: 4rem 0;
    }

    .about-intro-text h2,
    .about-land-text h2 {
        font-size: 1.8rem;
    }

    .about-intro-text p,
    .about-land-text p {
        font-size: 0.95rem;
    }

    .about-intro-image img {
        height: 300px;
    }

    .about-vision {
        padding: 5rem 0;
    }

    .about-vision h2 {
        font-size: 2rem;
    }

    .about-vision p {
        font-size: 1rem;
    }

    .land-image-grid {
        gap: 1rem;
    }

    .land-img-main {
        height: 250px;
    }

    .land-img-small {
        height: 180px;
    }

    .heritage-card-content {
        padding: 2rem;
    }

    .heritage-card-content h2 {
        font-size: 1.6rem;
    }

    .about-cta {
        padding: 5rem 0;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 0.95rem;
    }

    .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ── CONTACT PAGE Styles ── */
.contact-main {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.contact-info-wrap h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.contact-info-desc {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: all 0.4s var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--accent-gold);
    color: #fff;
}

.contact-card-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.contact-card-content a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-card-content a:hover {
    color: var(--accent-gold);
}

.contact-card-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-group label span {
    color: var(--accent-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-surface);
    transition: all 0.3s var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
    background: #fff;
}

.form-group select {
    appearance: none;
    background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23718096'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-gold);
    color: #fff;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--transition);
}

.contact-submit:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
}

.contact-submit i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.contact-submit:hover i {
    transform: translateX(5px);
}

.contact-success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-success.active {
    display: block;
}

.contact-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.contact-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-success p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-map {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.contact-map .section-header h2 {
    font-size: 3rem;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.contact-quick {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.contact-quick .section-header h2 {
    font-size: 3rem;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-quick-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contact-quick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.contact-quick-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition);
}

.contact-quick-card:hover .contact-quick-icon {
    background: var(--accent-gold);
    color: #fff;
}

.contact-quick-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--accent-gold);
}

.contact-quick-card p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-quick-arrow {
    color: var(--accent-gold);
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.contact-quick-card:hover .contact-quick-arrow {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-main {
        padding: 5rem 0;
    }

    .contact-info-wrap h2 {
        font-size: 2.2rem;
    }

    .contact-form-wrap {
        padding: 2.5rem;
    }

    .contact-map,
    .contact-quick {
        padding: 5rem 0;
    }

    .contact-map .section-header h2,
    .contact-quick .section-header h2 {
        font-size: 2.4rem;
    }

    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 4rem 0;
    }

    .contact-info-wrap h2 {
        font-size: 1.8rem;
    }

    .contact-info-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-form-wrap {
        padding: 2rem;
    }

    .contact-form-header h3 {
        font-size: 1.3rem;
    }

    .contact-map,
    .contact-quick {
        padding: 4rem 0;
    }

    .contact-map .section-header h2,
    .contact-quick .section-header h2 {
        font-size: 2rem;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }
}

/* ── EXECUTIVE SUMMARY Styles ── */
.es-intro {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.es-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.es-features {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.es-features .section-header h2 {
    font-size: 3rem;
}

.es-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

section.es-keys {
    margin-bottom: 100px;
}

table td a {
    text-decoration: none;
    color: initial;
}

table td a:hover {
    color: #c5a059;
}

.es-feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    text-align: center;
    height: 100%;
}

.es-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.es-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition);
}

.es-feature-card:hover .es-feature-icon {
    background: var(--accent-gold);
    color: #fff;
}

.es-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.es-feature-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.es-lots {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.es-lots .section-header h2 {
    font-size: 3rem;
}

.es-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.es-lot-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.95rem;
}

.es-lot-table thead {
    background: var(--accent-platinum);
}

.es-lot-table thead th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.es-lot-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s;
}

.es-lot-table tbody tr:hover {
    background-color: rgba(197, 160, 89, 0.04);
}

.es-lot-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--text-main);
}

.tier-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tier-badge.premium {
    background: rgba(197, 160, 89, 0.15);
    color: #a07c30;
}

.tier-badge.select {
    background: rgba(45, 55, 72, 0.1);
    color: var(--accent-platinum);
}

.tier-badge.choice {
    background: rgba(56, 132, 83, 0.1);
    color: #388453;
}

.tier-badge.value {
    background: rgba(59, 130, 179, 0.1);
    color: #3b82b3;
}

.es-table-notes {
    margin-top: 1.5rem;
    text-align: center;
}

.es-table-notes p {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-style: italic;
}

.es-gallery {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.es-gallery .section-header h2 {
    font-size: 3rem;
}

.es-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.es-gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--transition);
}

.es-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.es-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 1s var(--transition);
}

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

@media (max-width: 991px) {
    .es-intro {
        padding: 5rem 0;
    }

    .es-intro-image img {
        height: 350px;
    }

    .es-features,
    .es-lots,
    .es-gallery {
        padding: 5rem 0;
    }

    .es-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .es-features .section-header h2,
    .es-lots .section-header h2,
    .es-gallery .section-header h2 {
        font-size: 2.4rem;
    }

    .es-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .es-intro {
        padding: 4rem 0;
    }

    .es-intro-image img {
        height: 280px;
    }

    .es-features,
    .es-lots,
    .es-gallery {
        padding: 4rem 0;
    }

    .es-features-grid {
        grid-template-columns: 1fr;
    }

    .es-features .section-header h2,
    .es-lots .section-header h2,
    .es-gallery .section-header h2 {
        font-size: 2rem;
    }

    .es-lot-table thead th,
    .es-lot-table tbody td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .es-gallery-grid {
        grid-template-columns: 1fr;
    }

    .es-gallery-item img {
        height: 240px;
    }
}

/* ── FINAL PLAT Styles ── */
.plat-main {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.plat-main .inner-text {
    margin-bottom: 4rem;
}

.plat-main .inner-text h2 {
    font-size: 3rem;
}

.plat-image-wrapper {
    display: flex;
    justify-content: center;
}

.plat-image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.5s var(--transition);
    max-width: 100%;
}

.plat-image-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.plat-image {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.8s var(--transition);
}

.plat-image-container:hover .plat-image {
    transform: scale(1.02);
}

.plat-zoom-hint {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s var(--transition);
    pointer-events: none;
}

.plat-image-container:hover .plat-zoom-hint {
    opacity: 1;
}

.plat-details {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.plat-detail-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    text-align: center;
    height: 100%;
}

.plat-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.plat-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition);
}

.plat-detail-card:hover .plat-detail-icon {
    background: var(--accent-gold);
    color: #fff;
}

.plat-detail-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.plat-detail-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.plat-elevation {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.plat-elevation h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.plat-elevation-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.plat-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition);
    padding: 2rem;
}

.plat-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.plat-lb-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3001;
    transition: opacity 0.3s;
}

.plat-lb-content {
    max-width: 95vw;
    max-height: 90vh;
    overflow: auto;
}

.plat-lb-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {

    .plat-main,
    .plat-details,
    .plat-elevation {
        padding: 5rem 0;
    }

    .plat-main .inner-text h2,
    .plat-elevation h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    .plat-main,
    .plat-details,
    .plat-elevation {
        padding: 4rem 0;
    }

    .plat-main .inner-text h2,
    .plat-elevation h2 {
        font-size: 2rem;
    }

    .plat-elevation-desc {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }

    .plat-detail-card {
        padding: 2rem 1.5rem;
    }
}

/* ── LOCATION Styles ── */
.loc-intro {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.loc-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.loc-directions {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.loc-directions-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-surface);
}

.loc-directions h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.loc-directions-text {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.9;
}

.loc-map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.loc-distances {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.loc-distances .section-header h2 {
    font-size: 3rem;
}

.loc-distance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.loc-distance-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
}

.loc-distance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.loc-distance-miles {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    line-height: 1;
}

.loc-distance-unit {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
}

.loc-distance-city {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.loc-attractions {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.loc-attractions .section-header h2 {
    font-size: 3rem;
}

.loc-attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.loc-attraction-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    text-align: center;
}

.loc-attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.loc-attraction-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition);
}

.loc-attraction-card:hover .loc-attraction-icon {
    background: var(--accent-gold);
    color: #fff;
}

.loc-attraction-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.loc-attraction-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.loc-park {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.loc-park-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.loc-park-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.loc-park-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition);
}

.loc-park-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.loc-park-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.loc-park-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.loc-park-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .loc-intro,
    .loc-directions,
    .loc-distances,
    .loc-attractions,
    .loc-park {
        padding: 5rem 0;
    }

    .loc-intro-image img {
        height: 350px;
    }

    .loc-directions h2 {
        font-size: 2.2rem;
    }

    .loc-distance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .loc-attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-distances .section-header h2,
    .loc-attractions .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    .loc-intro,
    .loc-directions,
    .loc-distances,
    .loc-attractions,
    .loc-park {
        padding: 4rem 0;
    }

    .loc-intro-image img {
        height: 280px;
    }

    .loc-directions h2 {
        font-size: 1.8rem;
    }

    .loc-distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-distance-miles {
        font-size: 2.5rem;
    }

    .loc-attractions-grid {
        grid-template-columns: 1fr;
    }

    .loc-distances .section-header h2,
    .loc-attractions .section-header h2 {
        font-size: 2rem;
    }

    .loc-park-image {
        min-height: 280px;
    }
}

/* ── TAX CREDITS Styles ── */
.tax-intro {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.tax-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tax-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    z-index: -1;
}

.tax-how {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.tax-how .section-header h2 {
    font-size: 3rem;
}

.tax-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tax-step {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--transition);
}

.tax-step:last-child {
    border-bottom: none;
}

.tax-step:hover {
    transform: translateX(10px);
}

.tax-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.4;
    flex-shrink: 0;
    width: 80px;
    transition: opacity 0.4s var(--transition);
}

.tax-step:hover .tax-step-number {
    opacity: 1;
}

.tax-step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.tax-step-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.tax-benefits {
    padding: 8rem 0;
    background-color: var(--bg-deep);
}

.tax-benefits .section-header h2 {
    font-size: 3rem;
}

.tax-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tax-benefit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--transition);
    text-align: center;
}

.tax-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.tax-benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition);
}

.tax-benefit-card:hover .tax-benefit-icon {
    background: var(--accent-gold);
    color: #fff;
}

.tax-benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.tax-benefit-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.tax-specific {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.tax-specific-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/location/ridgeline.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: grayscale(1);
}

.tax-specific-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-surface) 0%, transparent 30%, transparent 70%, var(--bg-deep) 100%);
    z-index: 1;
}

.tax-specific h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tax-specific-text {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

.tax-disclaimer {
    padding: 4rem 0;
    background-color: var(--bg-deep);
}

.tax-disclaimer-card {
    background: #fffbf0;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.tax-disclaimer-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.tax-disclaimer-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tax-disclaimer-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {

    .tax-intro,
    .tax-how,
    .tax-benefits,
    .tax-specific {
        padding: 5rem 0;
    }

    .tax-intro-image img {
        height: 350px;
    }

    .tax-how .section-header h2,
    .tax-benefits .section-header h2,
    .tax-specific h2 {
        font-size: 2.4rem;
    }

    .tax-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .tax-intro,
    .tax-how,
    .tax-benefits,
    .tax-specific {
        padding: 4rem 0;
    }

    .tax-intro-image img {
        height: 280px;
    }

    .tax-how .section-header h2,
    .tax-benefits .section-header h2,
    .tax-specific h2 {
        font-size: 2rem;
    }

    .tax-step {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
    }

    .tax-step-number {
        font-size: 2.5rem;
        width: auto;
    }

    .tax-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tax-specific-text {
        font-size: 0.95rem;
    }

    .tax-disclaimer-card {
        padding: 2rem;
    }
}

/* ── THANK YOU Styles (from thankyou.php) ── */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    background: var(--bg-dark, #0b0f14);
    position: relative;
    overflow: hidden;
}

.thankyou-section::before,
.thankyou-section::after {
    content: \"\";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
}

.thankyou-section::before {
    width: 600px;
    height: 600px;
    background: #c5a059;
    top: -150px;
    left: -150px;
}

.thankyou-section::after {
    width: 500px;
    height: 500px;
    background: #4a7c59;
    bottom: -120px;
    right: -120px;
}

.thankyou-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 24px;
    padding: 4rem 3rem;
    max-width: 660px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ty-check-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #c5a059 0%, #a07c38 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 18px rgba(197, 160, 89, 0.12);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 18px rgba(197, 160, 89, 0.12);
    }

    50% {
        box-shadow: 0 0 0 28px rgba(197, 160, 89, 0.06);
    }
}

.ty-check-wrap i {
    font-size: 2.8rem;
    color: #fff;
    line-height: 1;
}

.thankyou-card .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 1rem;
}

.thankyou-card h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-family: \"Playfair Display\", Georgia, serif;
    color: #f0ede8;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.thankyou-card p {
    font-size: 1.05rem;
    color: #a8a097;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.ty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ty-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.ty-info-strip {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.ty-info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #7a7268;
    font-size: 0.875rem;
}

.ty-info-item i {
    color: #c5a059;
    font-size: 1.1rem;
}

.ty-info-item a {
    color: #c5a059;
    text-decoration: none;
}

.ty-info-item a:hover {
    text-decoration: underline;
}

/* ── PRIVACY PAGE Styles ── */
.privacy-content {
    padding: 80px 0;
    line-height: 1.8;
    color: #4a5568;
}

.privacy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c5a059;
    font-size: 1.75rem;
}

.privacy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 1.5rem;
}

.privacy-intro-text {
    font-size: 1.1rem;
    border-left: 3px solid #c5a059;
    padding-left: 1.5rem;
    margin-bottom: 3rem;
    font-style: italic;
}