/* ==========================================================================
   Mobile-First Base Variables & Reset
   ========================================================================== */
:root {
    --gold-primary: #E2B76D; /* Premium flat gold tone */
    --gold-hover: #F0CE8D;
    --dark-bg: #0C0C0C;
    --dark-card: #161616;
    --dark-border: #2A2A2A;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 10px
        ),
        radial-gradient(circle at 50% 30%, rgba(25, 24, 30, 0.9) 0%, rgba(8, 8, 10, 1) 100%);
    background-attachment: fixed; /* Keeps pattern fixed while scrolling */
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.header-container {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

/* ==========================================================================
   Top Announcement Bar (Mobile Base)
   ========================================================================== */
.top-bar {
    background: #050505;
    border-bottom: 1px solid var(--dark-border);
    font-size: 11px;
    padding: 6px 0;
    color: var(--text-muted);
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.top-time {
    display: none;
}

.top-actions {
    display: flex;
    gap: 12px;
}

.top-actions a {
    color: var(--text-light);
    text-decoration: none;
}

.top-actions .top-wa {
    color: #25D366;
    font-weight: 600;
}

/* ==========================================================================
   Main Header & Mobile Hamburger Layout
   ========================================================================== */
.site-header {
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-border);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    line-height: 1;
}

.brand-sub {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger-btn .bar {
    width: 24px;
    height: 2px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.desktop-only {
    display: none;
}

/* ==========================================================================
   Mobile Offcanvas Drawer
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--dark-card);
    z-index: 1002;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.3s ease;
    border-left: 1px solid var(--dark-border);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 16px;
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold-primary);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.mobile-nav a.active,
.mobile-nav a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   Hero Section (Always Centered)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-bg);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-content .gold-text {
    color: var(--gold-primary);
    display: block;
}

.hero-content .white-text {
    color: #FFFFFF;
    display: block;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   Unified Luxury Square Buttons
   ========================================================================== */
.btn-gold,
.btn-gold-square {
    background-color: var(--gold-primary);
    color: #000000;
    padding: 14px 38px;
    border-radius: 2px; /* Minimal curve sharp edges */
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--gold-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-gold:hover,
.btn-gold-square:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    padding: 14px 38px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: #000000;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Keywords Bar & Section Grid
   ========================================================================== */
.keywords-bar {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 12px 0;
    font-size: 11px;
}

.bar-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    white-space: nowrap;
    padding-bottom: 4px;
}

.sec-padding {
    padding: 50px 0;
}

.services-grid, .features-grid, .therapists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* ==========================================================================
   TABLET & DESKTOP MEDIA QUERIES
   ========================================================================== */

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .btn-gold, .btn-gold-square, .btn-outline {
        padding: 12px 28px;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .header-container {
        max-width: 720px;
        padding: 0 20px;
    }

    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .top-time {
        display: inline-block;
    }

    /* Fixed alignment issue: kept hero-content center aligned */
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

@media (min-width: 1024px) {
    .header-container {
        max-width: 1280px;
    }

    .hamburger-btn {
        display: none;
    }

    .desktop-only {
        display: flex;
    }

    .logo-img {
        height: 50px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-sub {
        font-size: 9px;
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 24px;
    }

    .main-nav a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .main-nav a:hover, .main-nav a.active {
        color: var(--gold-primary);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   About Us Section Styling
   ========================================================================== */
.about-preview-section {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.lead-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.body-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Feature List */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 20px;
    background: rgba(197, 160, 40, 0.1);
    border: 1px solid var(--dark-border);
    padding: 10px;
    border-radius: 2px;
    line-height: 1;
}

.feature-item strong {
    display: block;
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Glass Card Feature */
.about-card-wrapper {
    width: 100%;
}

.about-glass-card {
    background: var(--dark-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--dark-border);
    padding: 36px 28px;
    border-radius: 2px;
    position: relative;
}

.badge-gold {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.glass-card-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.glass-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.glass-card-list li {
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

/* Media Query for Desktop Grid */
@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }

    .about-content h2 {
        font-size: 42px;
    }
}

/* Section Title Spacing Fix */
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto; /* Bottom space between header and cards */
}

.section-title .sub-heading {
    display: block;
    color: var(--gold-primary);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px; /* Space under 'OUR THERAPIES' */
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px; /* Space under main H2 heading */
    letter-spacing: 1px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 35px;
    }
    
    .section-title h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

/* ==========================================================================
   Luxury Service Cards (Image Layout with Sharp Corners)
   ========================================================================== */
.services-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card-luxury {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 2px; /* Sharp luxury corners matching hero button */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card-luxury:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.service-img-box {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card-luxury:hover .service-img-box img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-card-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Pricing Section & Strikethrough */
.pricing-list {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-row {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: 4px;
    margin-right: 4px;
}

.new-price {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 14px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Card Button Group */
.card-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.btn-outline-sm {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    padding: 10px 0;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-sm:hover {
    background: var(--gold-primary);
    color: #000;
}

.btn-gold-sm {
    background: var(--gold-primary);
    color: #000;
    padding: 10px 0;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-gold-sm:hover {
    background: var(--gold-hover);
}

/* Responsive Grid Breakdown */
@media (min-width: 640px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-4 {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row on large screens */
    }
}

@media (min-width: 1280px) {
    .services-grid-4 {
        grid-template-columns: repeat(4, 1fr); /* 4 cards per row on full ultra-wide desktop */
    }
}

/* ==========================================================================
   Therapists Grid & Card Layout
   ========================================================================== */
.therapists-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.therapist-card-luxury {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 2px; /* Sharp luxury corners */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.therapist-card-luxury:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.therapist-img-box {
    width: 100%;
    height: 380px; /* Tall portrait ratio matching screenshot */
    position: relative;
    overflow: hidden;
    background: #111;
}

.therapist-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.therapist-card-luxury:hover .therapist-img-box img {
    transform: scale(1.04);
}

.therapist-card-content {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: left;
}

.therapist-card-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.therapist-bio {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.therapist-bio strong {
    display: block;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

.therapist-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

/* Responsive Grid Breakdown */
@media (min-width: 640px) {
    .therapists-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .therapists-grid-4 {
        grid-template-columns: repeat(4, 1fr); /* 4 cards side-by-side on desktop */
    }
}

/* ==========================================================================
   Footer Component Styling
   ========================================================================== */
.site-footer {
    background: rgba(8, 8, 10, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 20px 0;
    margin-top: 80px;
    font-size: 13px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

.seo-location-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

/* Footer Desktop Grid Layout */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   About Page & Inner Page Banners
   ========================================================================== */
.page-banner {
    position: relative;
    padding: 90px 0 70px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
}

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

.banner-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.banner-sub {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   Features 3-Column Glass Grid
   ========================================================================== */
.features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card-glass {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-glass:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.feature-icon-box {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card-glass h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-card-glass p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Location CTA Section
   ========================================================================== */
.text-center {
    text-align: center;
}

.location-cta-section {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.location-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0 40px 0;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .location-cta-section h2 {
        font-size: 26px;
    }

    .cta-btn-group {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Gallery Grid & Filter Styles
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--dark-card);
    color: var(--text-muted);
    border: 1px solid var(--dark-border);
    padding: 10px 22px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-card-luxury {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.gallery-img-box {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

.gallery-card-luxury:hover .gallery-img-box img {
    transform: scale(1.06);
}

.gallery-overlay-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(12, 12, 12, 0.9) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-cat {
    color: var(--gold-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.gallery-overlay-hover h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Grid Breakdown */
@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==========================================================================
   Contact Page Styles & Luxury Forms
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-info-card,
.contact-form-card {
    background: var(--dark-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    padding: 36px 28px;
}

.contact-info-card h2,
.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-lead {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    font-size: 20px;
    background: rgba(197, 160, 40, 0.1);
    border: 1px solid var(--dark-border);
    padding: 10px;
    border-radius: 2px;
    line-height: 1;
}

.detail-item strong {
    display: block;
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.detail-item p,
.detail-item a {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
    margin: 0;
}

.detail-item a:hover {
    color: var(--gold-primary);
}

/* Form Controls */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.luxury-form label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}

.form-input {
    background: rgba(8, 8, 10, 0.8);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--gold-primary);
}

.map-section {
    border-top: 1px solid var(--dark-border);
    line-height: 0;
}

/* Responsive Grid Breakdown */
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-map-card {
    background: var(--dark-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}