/* ==========================================================================
   ELYSIAN EXECUTIVE RELATIONSHIP ADVISORY - LUXURY STYLESHEET
   Aesthetics: Deep Obsidian Dark Mode (#0B0F19), Champagne Gold (#D4AF37, #E2B857), 
   Glassmorphism, High Typography Standards (Cormorant Garamond + Inter)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0B0F19;
    --bg-surface: #131926;
    --bg-surface-elevated: #1A2336;
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #AA7C11 100%);
    --gold-subtle-glow: rgba(212, 175, 55, 0.15);
    
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;

    --border-glass: rgba(212, 175, 55, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.08);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 10px 30px -10px rgba(212, 175, 55, 0.25);
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.medium {
    max-width: 800px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section-header.center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-crest {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-main);
}

.brand-sub {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gold-gradient);
    color: #0B0F19;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(212, 175, 55, 0.4);
}

.btn-gold.lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-gold.xl {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

.w-100 {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-gold:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-text-link {
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-text-link:hover {
    color: var(--gold-light);
}

.link-gold {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 11rem 0 6rem;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 10px #22C55E;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

/* Metrics Bar */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem 3rem;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Standards Section */
.standards-section {
    padding: 7rem 0;
    background: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-glass);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

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

/* Profile Showcase Grid */
.showcase-section {
    padding: 7rem 0;
    background: var(--bg-surface);
    position: relative;
}

.showcase-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.profile-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.profile-card:hover {
    border-color: var(--border-glass);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #1E293B;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.badge-verified {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
}

.profile-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.profile-header-info {
    margin-bottom: 0.75rem;
}

.profile-name {
    font-size: 1.4rem;
    color: var(--text-main);
}

.profile-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--gold-light);
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-profile:hover {
    background: var(--gold-gradient);
    color: #0B0F19;
}

.showcase-cta {
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 7rem 0;
    background: var(--bg-dark);
}

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

.process-step {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 1.75rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.75rem;
}

.accordion-item.active .accordion-content {
    padding: 0 1.75rem 1.5rem;
    max-height: 200px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Banner Section */
.banner-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, var(--bg-dark) 70%);
}

.banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.text-center {
    text-align: center;
}

/* Footer */
.site-footer {
    background: #070911;
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-email {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-link-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.footer-link-btn:hover, .footer-link:hover {
    color: var(--gold-primary);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dim);
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
}

/* Modal Overlay & Guest Pass Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.modal-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    width: 90%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.guest-pass-card {
    background: linear-gradient(145deg, #131926 0%, #0D121D 100%);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(212, 175, 55, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}

.border-none {
    border-bottom: none !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.gate-header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gate-header-brand .brand-name {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold-primary);
}

.gate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.gate-title {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.gate-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gate-spec-box {
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    padding-bottom: 0.5rem;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: var(--text-dim);
}

.spec-value {
    color: var(--text-main);
    font-weight: 500;
}

.spec-value.gold {
    color: var(--gold-primary);
    font-weight: 600;
}

.gate-subtext {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3, .process-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .metric-divider {
        width: 100%;
        height: 1px;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .footer-top, .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .profiles-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
