/* --- Luxury Preloader Styles --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0D0D0D; /* Matches deep palace obsidian black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Higher than everything else */
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
    opacity: 1;
    visibility: visible;
}

/* JavaScript triggers this class once loaded */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    max-width: 180px;
    height: auto;
    animation: luxuryPulse 2.5s infinite ease-in-out;
    filter: drop-shadow(0px 0px 15px rgba(212, 175, 55, 0.3));
}

/* Subtle, soft loading accent line below the logo */
.gold-loader-bar {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    position: relative;
    overflow: hidden;
}

.gold-loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FFF, transparent);
    animation: goldShimmer 1.8s infinite linear;
}

/* --- Golden Animations --- */
@keyframes luxuryPulse {
    0%, 100% {
        transform: scale(0.98);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

@keyframes goldShimmer {
    100% {
        left: 100%;
    }
}





/* --- Core Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0D0D0D;    /* Deep Palace Obsidian Black */
    --bg-secondary: #161616;  /* Royal Charcoal */
    --text-light: #F5F5F7;    /* Off-White for clean reading */
    --text-muted: #A1A1A6;    /* Muted Grey */
    
    /* Golden Palace Gradients & Accents */
    --gold-bright: #F3E5AB;   /* Soft Silk Gold */
    --gold-main: #D4AF37;     /* Metallic Gold */
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base structural sizing */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Prevents awkward horizontal mobile scrolling */
}

/* --- Responsive Header & Navigation --- */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background-color: var(--bg-primary);
    border-bottom: 1px solid #332A15;
    position: relative;
    z-index: 100;
}

.site-logo {
    width: 100%;
    max-width: 200px; /* Adapts dynamically to parent sizing up to 200px */
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0px 4px 10px rgba(212, 175, 55, 0.2));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-main);
    text-shadow: 0 0 8px rgba(214, 175, 55, 0.4);
}

/* Hide responsive menu elements on desktop views */
.menu-toggle, .hamburger {
    display: none;
}

/* --- Fluid Hero Section --- */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    border-bottom: 1px solid #332A15;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: calc(2rem + 2vw); /* Fluid typography scales elegantly from mobile to desktop */
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    color: var(--gold-bright);
    padding: 1.2rem 3rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--gold-main);
    transition: var(--transition-smooth);
    width: auto;
}

.btn-primary:hover {
    color: #000000;
    background: var(--gold-gradient);
    box-shadow: 0px 0px 20px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}

.btn-secondary {
    display: inline-block;
    text-decoration: none;
    color: var(--gold-bright);
    border-bottom: 1px solid var(--gold-main);
    padding-bottom: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    letter-spacing: 4px;
}

/* --- Split Content Section --- */
.split-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2-Column desktop layout */
    min-height: 60vh;
}

.split-text {
    padding: clamp(2rem, 5vw, 6rem); /* Responsive padding values */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--bg-secondary);
}

.split-text h2 {
    font-family: var(--font-heading);
    font-size: calc(1.8rem + 1vw);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.split-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.split-image {
    background-color: var(--bg-primary);
    position: relative;
    min-height: 350px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #161616 0%, #0D0D0D 100%);
}

/* --- Footer --- */
footer {
    background-color: #050505;
    color: #555555;
    text-align: center;
    padding: 4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid #221B0D;
}

/* --- 📱 Tablet & Mobile Responsive Viewport Breakdown --- */
@media (max-width: 992px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 2rem;
    }

    .site-logo {
        margin-bottom: 0;
        max-width: 150px;
    }

    /* JavaScript-free CSS Hamburger Menu Setup */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 110;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--gold-main);
        transition: var(--transition-smooth);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hides the menu right offscreen */
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        padding: 8rem 2rem 2rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    /* When checkmarked, slide menu in and morph hamburger into an 'X' */
    .menu-toggle:checked ~ nav {
        right: 0;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr; /* Collapses 2-columns into a clean single column stacked list */
    }
    
    .split-image {
        min-height: 300px;
    }

    .btn-primary {
        width: 100%; /* Makes buttons full-width and highly tap-friendly on small mobile displays */
        text-align: center;
    }
}





/* Styling for the new image inside the split section */
.split-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    border: 1rem solid var(--bg-secondary); /* Elegant outer frame */
    overflow: hidden;
}

.responsive-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space cleanly without distortion */
    object-position: center;
    display: block;
    transition: var(--transition-smooth);
}

/* Subtle luxury hover effect */
.split-image:hover .responsive-split-img {
    transform: scale(1.03);
}




/* Add these new rules into your existing style.css file to style the new elements */

/* --- Common Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-main);
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: calc(1.8rem + 1.2vw);
    font-weight: 400;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Philosophy Section --- */
.philosophy-section {
    padding: 7rem 2rem;
    background-color: var(--bg-primary);
    border-bottom: 1px solid #332A15;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-bright);
    margin-bottom: 1rem;
    font-weight: 400;
}

.philosophy-card p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
}

/* --- Lookbook Grid --- */
.lookbook-section {
    padding: 7rem 2rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid #332A15;
}

/* --- Lookbook Grid Styling --- */
.lookbook-section {
    padding: 7rem 2rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid #332A15;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lookbook-item {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background-color: #0D0D0D; /* Image load hone tak dark placeholder base */
}

.lookbook-item.large {
    grid-row: span 2;
    min-height: 600px;
}

/* Images ko control karne ki responsive class */
.lookbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko crop karke responsive frame mein fix karega */
    object-position: center;
    display: block;
    transition: var(--transition-smooth);
}

/* Subtle Zoom effect on Hover */
.lookbook-item:hover .lookbook-img {
    transform: scale(1.05);
}

/* Text overlay effects */
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(transparent, rgba(13, 13, 13, 0.95));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.lookbook-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h4 {
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Mobile responsive settings */
@media (max-width: 768px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lookbook-item.large {
        min-height: 400px;
    }
}
.lookbook-item {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.lookbook-item.large {
    grid-row: span 2;
    min-height: 600px;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(13,13,13,0.9));
    opacity: 0;
    transition: var(--transition-smooth);
}

.lookbook-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h4 {
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* --- Contact Section & Luxury Forms --- */
.contact-section {
    padding: 7rem 2rem;
    background-color: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-details strong {
    color: var(--gold-main);
    font-weight: 400;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid #292212;
    padding: 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 10px rgba(212,175,55,0.1);
}

/* --- Image Placeholders with fallback colors --- */
.display-1 { background: #1C1A17; }
.display-2 { background: #1E1A12; }
.display-3 { background: #151518; }
.display-4 { background: #1A1915; }

/* --- Extra Mobile Customizations --- */
@media (max-width: 768px) {
    .philosophy-grid, .lookbook-grid, .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lookbook-item.large {
        min-height: 400px;
    }
    .philosophy-section, .lookbook-section, .contact-section {
        padding: 4rem 1.5rem;
    }
}



/* --- Premium Palace Footer --- */
footer {
    background-color: #050505; /* Pitch Black */
    padding: 5rem 2rem 2rem 2rem;
    border-top: 1px solid #332A15; /* Top Golden Line */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Column layout */
    align-items: center;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1); /* Thin separation line */
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0px 2px 5px rgba(212, 175, 55, 0.15));
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Social Media Section */
.footer-socials-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns content to the right on desktop */
}

.footer-socials-section h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-bright);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

/* Icon Core Styling */
.social-icon-link {
    color: var(--text-light);
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border ring */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Hover Glow Matrix Effect */
.social-icon-link:hover {
    color: #000000;
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: 0px 0px 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #555555;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Mobile Responsiveness for Footer --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        text-align: center;
        gap: 3rem;
    }

    .footer-logo-section {
        align-items: center;
    }

    .footer-socials-section {
        align-items: center; /* Center align social items on mobile */
    }
}





/* --- Dedicated Minimal Coming Soon Screen CSS --- */
.unique-minimal-mode {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coming-soon-header {
    width: 100%;
    z-index: 10;
}

/* Main Container Centering Matrix */
.minimal-cs-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px); /* Adjusts for header height */
    padding: 2rem;
    text-align: center;
}

.minimal-cs-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Extra Large Glimmer Dynamic Font */
.premium-headline-frame {
    margin: 2rem 0;
    padding: 0.5rem 0;
    position: relative;
    width: 100%;
}

.glimmer-text-headline.large-glow {
    font-size: 3.5rem !important; /* Made larger and more dramatic */
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #aa8032 0%, #d4af37 25%, #fdfbf7 50%, #d4af37 75%, #aa8032 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryGlimmer 4s linear infinite;
    text-shadow: 0px 0px 30px rgba(212, 175, 55, 0.1);
}

.centered-teaser {
    margin: 0 auto 3rem auto;
    max-width: 600px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.active-gold {
    color: #D4AF37 !important;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 5px;
}

/* Mobile adjustments for Text size */
@media (max-width: 768px) {
    .glimmer-text-headline.large-glow {
        font-size: 2.2rem !important;
        letter-spacing: 2px;
    }
}


/* ========================================== */
/* ISOLATED COLLECTIONS COMING SOON STYLES   */
/* ========================================== */

.palace-isolated-body {
    background-color: #080808 !important;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 3-Second Loader Layer */
#collections-isolated-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #080808;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

/* Floating Back Button */
.back-home-btn {
    position: absolute;
    top: 2.5rem;
    left: 3rem;
    z-index: 50;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.back-home-btn:hover {
    color: var(--gold-main);
    border-color: var(--gold-main);
    letter-spacing: 3px;
}

/* Layout Management */
.collections-coming-soon-screen {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-width: 1300px;
    width: 100%;
    gap: 5rem;
    align-items: center;
}

/* Content Entrance Setup */
.palace-isolated-body .coming-soon-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Trigger Class from JS */
.palace-isolated-body.reveal-content-now .coming-soon-content {
    opacity: 1;
    transform: translateY(0);
}

.cs-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Responsive Image Frame */
.cs-image-side .image-inner-glow-wrapper {
    width: 100%;
    height: 70vh;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1rem;
    background-color: #0d0d0d;
}

.cs-image-side .responsive-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Configurations for the Dedicated Page */
@media (max-width: 992px) {
    .coming-soon-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 6rem;
    }
    .back-home-btn {
        top: 2rem;
        left: 2rem;
    }
    .cs-image-side .image-inner-glow-wrapper {
        height: 45vh;
    }
}







/* --- About Us Page Luxury CSS Layout --- */
.unique-about-mode {
    background-color: #0c0d0e; /* Deep royal dark atmosphere */
    color: #e5e5e5;
}

.about-page-container {
    width: 100%;
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    padding: 6rem 2rem 4rem 2rem;
}

.about-inner-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.about-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.story-paragraphs {
    max-width: 750px;
    margin: 3rem auto;
    text-align: center;
}

.story-paragraphs p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
    color: #bcbcbc;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.story-paragraphs .story-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
}

.story-paragraphs .story-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #D4AF37; /* Royal Gold accent */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2.5rem 0;
}

/* Brand Signature CSS */
.brand-signature-block {
    margin: 4rem 0;
}

.signature-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 6px;
    font-weight: 400;
    color: #ffffff;
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-top: 0.5rem;
}

/* 3-Column Luxury Matrix Grid */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 4rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 3rem 1.5rem;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-5px);
}

.pillar-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #D4AF37;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.pillar-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b3b3b3;
    font-weight: 300;
}

.inline-bullet-tags {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #b3b3b3;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 2;
    display: flex;
    flex-direction: column; /* Stack beautifully inside the small card */
    gap: 0.5rem;
}

.inline-bullet-tags .gold-dot {
    display: none; /* Stack vertically for cleaner look inside grid */
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-main-title {
        font-size: 2.5rem;
    }
    .story-paragraphs .story-lead {
        font-size: 1.2rem;
    }
}










/* --- Dedicated Contact/Concierge Page Layout --- */
.unique-contact-page-mode {
    background-color: #0a0a0a !important;
}

.contact-page-wrapper {
    width: 100%;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem 2rem;
}

.contact-page-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

/* Info Panel Left */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: 1px;
}

.contact-panel-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #b3b3b3;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-luxury-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.detail-item {
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 1.5rem;
}

.detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37;
    display: block;
    margin-bottom: 0.4rem;
}

.detail-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
}

/* Form Panel Right */
.contact-form-panel {
    background: #0f1011;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.page-isolated-form .form-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.luxury-input-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
    margin-bottom: 0.6rem;
}

.page-isolated-form input,
.page-isolated-form textarea {
    width: 100%;
    background-color: #050505 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.page-isolated-form input:focus,
.page-isolated-form textarea:focus {
    outline: none;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.full-width-btn {
    width: 100%;
    padding: 1.2rem !important;
    font-size: 0.85rem !important;
    letter-spacing: 3px !important;
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
    .contact-panel-title {
        font-size: 2.3rem;
    }
}