:root {
    --gold: #C9A84C;
    --gold-light: #D4AF37;
    --gold-dark: #8B6914;
    --bronze: #8B5E3C;
    --obsidian: #0A0A0A;
    --onyx: #111111;
    --charcoal: #1A1A1A;
    --ivory: #F9F6F0;
}

* {
    scroll-behavior: smooth;
}

html{
    overflow-x: hidden;
}

body {
    font-family: 'Jost', sans-serif;
    background: #fff;
    color: #1A1A1A;
    overflow-x: hidden;
}

/* ── Gold Utilities ── */
.gold-gradient {
    background: linear-gradient(135deg, #D4AF37, #C9A84C, #8B6914);
}

.gold-text {
    background: linear-gradient(135deg, #E8C85A, #C9A84C, #8B5E3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-border {
    border-color: var(--gold);
}


/* ── Noise Texture Overlay ── */
.noise::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.04;
}

/* ── Geometric BG Pattern ── */
.geo-bg {
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── Diagonal Gold Lines ── */
.diagonal-lines {
    background: repeating-linear-gradient(-45deg,
            transparent, transparent 40px,
            rgba(201, 168, 76, 0.03) 40px, rgba(201, 168, 76, 0.03) 41px);
}

/* ── Nav ── */
#navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.nav-link {
    position: relative;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1A1A1A;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-dark);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    min-width: 180px;
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Bridge the gap between trigger and menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: #1A1A1A;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: var(--gold);
    padding-left: 28px;
    background: var(--ivory);
}

/* ── Hero ── */
#hero {
    background: var(--onyx);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 500;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-title span.gold-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.25em;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 1rem;
    display: block;
}

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


.hero-subtitle {
    margin-bottom: 1.5rem !important;
    font-size: 1rem !important;
    letter-spacing: 0.3em;
}

/* Gold shimmer button */
.btn-gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #D4AF37, #C9A84C, #8B6914);
    color: #0A0A0A;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 150%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 36px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

/* ── Hero Refinements ── */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: clamp(400px, 60vh, 700px);
    width: 100%;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

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

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

.gallery-main {
    grid-column: 1 / 10;
    grid-row: 1 / 11;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.gallery-sub {
    grid-column: 6 / 13;
    grid-row: 5 / 13;
    z-index: 2;
    border: 12px solid var(--onyx);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-accent {
    grid-column: 2 / 6;
    grid-row: 9 / 13;
    z-index: 3;
    border: 1px solid var(--gold);
    padding: 4px;
    background: var(--onyx);
}

.hero-stat-card {
    position: absolute;
    bottom: 10%;
    right: -5%;
    z-index: 10;
}

/* ── Mobile Hero Refinements ── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }

    .hero-gallery {
        height: 500px;
    }

    .gallery-main {
        grid-column: 1 / 11;
    }

    .gallery-sub {
        grid-column: 4 / 13;
        border: 8px solid var(--onyx);
    }
}

@media (max-width: 768px) {

    /* 
            - [x] Hero Mobile High-Visibility: Pure Black Background
            - [x] Hero Mobile High-Visibility: Center-Aligned Full-Width Entrance
            - [x] Remove `max-w-sm` constraints for Mobile View
            - [x] Hero Mobile Refinement: Vertical Rhythm (Vertical Spacing)
            - [x] Hero Mobile Refinement: Staggered Portrait Stack (Corner Overlap)
            - [x] Hero Mobile Refinement: Enhanced Mobile Shadows
            - [x] About Section: CSS Editorial Accordion Styles
            - [x] About Section: HTML Structure (BRAND MESSAGE)
            - [x] About Section: JS Accordion Toggle Logic
            - [x] About Section: Fix Experience Badge Overflow (Mobile)
            - [x] About Section: Refine Experience Badge Mobile Centering
            - [x] Typography: Consolidate to 2 Fonts (Cormorant Garamond & Jost)
            - [x] Typography: Global Replacement of 'Cinzel' usage
            - [x] Final verification across all viewports
            */
    #hero {
        background: #000000;
        /* Pure Black Contrast */
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.05;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem !important;
    }

    .hero-text-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-col p {
        max-width: 100% !important;
        text-align: center;
        margin-bottom: 2rem !important;
        line-height: 1.7;
    }

    .hero-gallery {
        height: 380px;
    }

    .gallery-main {
        grid-column: 1 / 13;
        grid-row: 1 / 11;
        clip-path: none;
        border-radius: 4px;
    }

    .gallery-sub {
        grid-column: 2 / 13;
        grid-row: 11 / 13;
        z-index: 5;
        border: 6px solid #000;
        /* Match pure black background */
        box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.8);
        /* Ultra deep shadow for clarity */
    }

    .gallery-accent {
        display: none;
    }

    .hero-stat-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        width: max-content;
        max-width: 90%;
    }

    .hero-stat-row {
        justify-content: center;
    }

    .experience-badge {
        right: 0 !important;
        bottom: -1.5rem !important;
        padding: 1rem 1.5rem !important;
    }

    .experience-badge .text-4xl {
        font-size: 2.25rem !important;
    }
}

/* ── Hero image frame ── */
.hero-frame {
    position: relative;
    border-radius: 4px;
}

.hero-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #D4AF37, transparent 50%, #8B5E3C);
    border-radius: 6px;
    z-index: 0;
}

.hero-frame img,
.hero-frame .frame-inner {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    display: block;
}

/* Floating badge */
.floating-badge {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

/* Castle watermark */
.castle-watermark {
    position: absolute;
    right: -80px;
    bottom: -60px;
    width: 400px;
    height: 400px;
    opacity: 0.03;
    pointer-events: none;
}

/* ── Section Label ── */
.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--gold);
    opacity: 0.6;
}

/* ── Section Heading ── */
.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
}

/* ── Gold Divider ── */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}

/* ── Feature Card ── */
.feature-card {
    border-left: 3px solid var(--gold);
    background: #fff;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
}

.feature-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.15);
}

/* ── Service Card ── */
.service-card {
    background: #1E1E1E;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #D4AF37, #8B5E3C) 1;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s, transform 0.6s;
}

.service-card:hover img {
    opacity: 1;
    transform: scale(1.04);
}

/* ── Listing Card ── */
.listing-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.2);
}

.listing-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.listing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37, #C9A84C, #8B6914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Agent Card ── */
/* ── Agent Card (Refined Boxed) ── */
.agent-card {
    background: #fff;
    padding: 1.5rem !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.agent-photo-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 2px;
    background: #f4f4f4;
}

.agent-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.agent-card:hover .agent-photo-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.agent-card:hover .agent-photo-wrapper {
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.agent-card .agent-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 0.25rem;
    display: block;
}

.agent-card .agent-dre {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.agent-card .social-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.agent-card:hover .social-list {
    opacity: 1;
}

.agent-card .social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.75rem;
    border-radius: 1px;
    transition: all 0.3s;
}

.agent-card .social-link:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.agent-slider-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.15);
    background: #fff;
    transition: all 0.3s;
}

.agent-slider-arrow:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
}

/* ── Why Choose Section ── */
#why-choose {
    position: relative;
    overflow: hidden;
}

#why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.why-card {
    position: relative;
    padding: 3rem 1.5rem;
    text-align: center;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    cursor: default;
}

.why-card:last-child {
    border-right: none;
}

@media (max-width: 1024px) {
    .why-card:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .why-card {
        border-right: 1px solid rgba(0, 0, 0, 0.04);
    }
    .why-card:nth-child(2n) {
        border-right: none;
    }
    .why-card:nth-child(5) {
        grid-column: 1 / -1;
        border-right: none;
    }
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover::after {
    width: 60%;
}

.why-card:hover {
    background: var(--ivory);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--onyx);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--gold);
    opacity: 0.15;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #D4AF37, #C9A84C, #8B6914);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}

.why-card:hover .why-icon::before {
    inset: -10px;
    opacity: 0.35;
    transform: rotate(45deg);
}

.why-card:hover .why-icon i {
    color: #0A0A0A !important;
    transform: scale(1.15);
}

.why-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.why-card-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* Staggered reveal delays for why-choose cards */
.why-card.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ── CTA Banner ── */
#cta-banner {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 50%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

#cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}

/* ── Testimonials ── */
#testimonials {
    background: var(--onyx);
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.25;
}

/* ── Stats Counter ── */
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem !important;
    }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── Mobile Menu ── */
#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    width: 260px;
    text-align: center;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

/* ── Mobile Dropdown ── */
.mobile-dropdown {
    width: 260px;
    text-align: center;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-dropdown-arrow {
    font-size: 10px;
    color: var(--gold);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 500px;
    opacity: 1;
}

.mobile-dropdown-item {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    transition: color 0.3s, padding-left 0.3s;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
    margin-bottom: 4px;
}

.mobile-dropdown-item:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* Testimonial dots */
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.t-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ── Property image placeholders ── */
.prop-img {
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

/* Footer */
footer {
    background: #080808;
}

.footer-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    display: block;
    padding: 4px 0;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* Animated hero line */
@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.hero-line {
    height: 1px;
    background: var(--gold);
    animation: expandLine 1.2s ease 0.8s both;
}

/* Scroll indicator */
@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-indicator span {
    animation: scrollDown 1.5s infinite;
}

/* Top bar marquee feel */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Image overlay gradient */
.img-overlay {
    position: relative;
}

.img-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Pulse ring */
@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(201, 168, 76, 0);
    }
}

.pulse {
    animation: pulseRing 2s infinite;
}

/* Separator */
.ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
}

/* ── About Page Specifics ── */
#about-hero {
    background: var(--onyx);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    #about-hero {
        padding: 80px 0 60px !important;
    }
}

#about-hero .hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    max-width: 900px;
    margin: 0 auto;
}

#about-hero .hero-title span.gold-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.22em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 3rem auto 0;
    opacity: 0.6;
}

.founder-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .founder-card {
        flex-direction: row;
        align-items: center;
    }
}

/* ── Agents Page Specifics ── */
#agents-hero {
    background: var(--onyx);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    #agents-hero {
        padding: 80px 0 60px !important;
    }
}

#agents-hero .hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    max-width: 900px;
    margin: 0 auto;
}

#agents-hero .hero-title span.gold-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.22em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

/* ── Agent Details Specifics ── */
.portrait-frame {
    position: relative;
    z-index: 10;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════
   PAST SALES PAGE
═══════════════════════════════════════════════ */
#sales-hero {
    background: var(--onyx);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    #sales-hero {
        padding: 80px 0 60px !important;
    }
}

.sold-tag {
    background: var(--onyx);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    padding: 8px 16px;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 20;
}

.stat-card {
    padding: 3rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */
#service-hero {
    background: var(--onyx);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    #service-hero {
        padding: 80px 0 60px !important;
    }
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: #0A0A0A;
}

.detail-block {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-block:last-child {
    border-bottom: none;
}

.detail-img-wrapper {
    position: relative;
    z-index: 10;
}

.detail-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: -1;
}

.step-card {
    background: #fff;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.step-card::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.3;
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .step-card::after {
        display: none;
    }
}

.step-card:last-of-type::after {
    display: none;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -1.5rem;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
#contact-hero {
    background: var(--onyx);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    #contact-hero {
        padding: 80px 0 60px !important;
    }
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--onyx);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    opacity: 0.2;
    transition: transform 0.4s;
}

.contact-card:hover .icon-circle::after {
    transform: scale(1.1);
    opacity: 0.5;
}

.input-group label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9ca3af;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.premium-input {
    width: 100%;
    background: transparent;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.premium-input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.02);
}

.form-container {
    background: #fff;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--gold);
}

iframe {
    filter: grayscale(1) invert(0) contrast(1.2);
    opacity: 0.8;
    transition: opacity 0.5s;
}

iframe:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════
   BLOG PAGES
═══════════════════════════════════════════════ */
#blog-hero {
    background: var(--onyx);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    #blog-hero {
        padding: 80px 0 60px !important;
    }
}

#blog-hero .hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    max-width: 900px;
    margin: 0 auto;
}

#blog-hero .hero-title span.gold-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.22em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: initial;
}

/* ── Blog Card ── */
.blog-card {
    display: block;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(201, 168, 76, 0.15);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--onyx);
    padding: 0.6rem 0.8rem;
    text-align: center;
    line-height: 1;
    z-index: 5;
}

.blog-date-day {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.blog-date-month {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-card-body {
    padding: 1.5rem 1.75rem 2rem;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--gold-dark);
}

.blog-card-excerpt {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.blog-card:hover .blog-read-more {
    letter-spacing: 0.25em;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
    transition: transform 0.3s;
}

/* ── Blog Article (Detail Page) ── */
.blog-article {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
}

.blog-article p {
    margin-bottom: 1.75rem;
}

.blog-article p.lead {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.9;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.blog-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-article blockquote {
    position: relative;
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 2.5rem;
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

.blog-article blockquote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.blog-article ul,
.blog-article ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
}

.blog-article img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 2px;
}

/* ── Blog Tags ── */
.blog-tag {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: default;
}

.blog-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

/* ── Blog Share Icons ── */
.blog-share-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #888;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.blog-share-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}
/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* ═══════════════════════════════════════════════
   CONTACT FORM 7 — Luxury Theme Styling
═══════════════════════════════════════════════ */

/* Reset CF7 default p/br spacing */
.kald-cf7-form .wpcf7-form p {
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1;
}


.kald-cf7-form .wpcf7-form p br {
    display: none;
}

.kald-cf7-form .wpcf7-form label {
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.6rem;
    color: #9CA3AF;
    display: block;
    margin-bottom: 0.4rem;
}

.kald-cf7-form .wpcf7-form input[type="text"],
.kald-cf7-form .wpcf7-form input[type="email"],
.kald-cf7-form .wpcf7-form input[type="tel"],
.kald-cf7-form .wpcf7-form input[type="url"],
.kald-cf7-form .wpcf7-form input[type="number"],
.kald-cf7-form .wpcf7-form select,
.kald-cf7-form .wpcf7-form textarea {
    width: 100%;
    border: 1px solid #E5E7EB;
    padding: 0.65rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
    background: #fff;
    margin-top: 0;
}

.kald-cf7-form .wpcf7-form input:focus,
.kald-cf7-form .wpcf7-form select:focus,
.kald-cf7-form .wpcf7-form textarea:focus {
    border-color: var(--gold);
}

.kald-cf7-form .wpcf7-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #6B7280;
}

.kald-cf7-form .wpcf7-form textarea {
    resize: none;
    height: 100px;
}

.kald-cf7-form .wpcf7-form input[type="submit"],
.kald-cf7-form .wpcf7-form .wpcf7-submit {
    width: 100%;
    background: var(--gold);
    color: var(--onyx);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
}

.kald-cf7-form .wpcf7-form input[type="submit"]:hover,
.kald-cf7-form .wpcf7-form .wpcf7-submit:hover {
    background: var(--bronze);
    color: #fff;
}

.kald-cf7-form .wpcf7-response-output {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    border: none !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
}

.kald-cf7-form .wpcf7-not-valid-tip {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    color: #DC2626;
    margin-top: 0.2rem;
    display: block;
}

.kald-cf7-form .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.kald-cf7-form .wpcf7-spinner {
    display: none;
}
