/* --- CSS VARIABLES (Unique Deep Purple Theme) --- */
:root {
    --bg-dark: #09030a;              /* Deep near-black grape */
    --bg-card: #150916;              /* Dark plum container */
    --accent-purple: #c476db;        /* Luminous lavender */
    --accent-royal: #622d6b;         /* Royal editorial amethyst */
    --accent-orchid: #eecaf2;        /* Delicate pale violet tint */
    --text-light: #faf5fc;
    --text-muted: #bda6c2;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Luxury Royal Violet Glow Highlight */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 15%;
    width: 70vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(98, 45, 107, 0.2) 0%, rgba(21, 9, 22, 0.8) 70%, rgba(9, 3, 10, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

/* --- NAVIGATION HEADER --- */
.site-header {
    background-color: rgba(9, 3, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(196, 118, 219, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--text-light);
}

.logo span {
    color: var(--accent-purple);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-purple);
}

.nav-btn {
    background-color: rgba(196, 118, 219, 0.08);
    color: var(--accent-purple);
    border: 1px solid rgba(196, 118, 219, 0.25);
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--accent-purple);
    color: var(--bg-dark);
}

/* Mobile Toggle Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: transform 0.3s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Hamburger Open Animation State */
.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6.5vw, 4.8rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-orchid);
    font-weight: 400;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- BUTTONS --- */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-purple);
    border: 1px solid var(--accent-purple);
    padding: 1.1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-purple);
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(196, 118, 219, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent-orchid);
    color: var(--accent-orchid);
}

/* --- EDITORIAL GALLERY --- */
.gallery-section {
    max-width: 1200px;
    margin: 4rem auto 8rem auto;
    padding: 0 2rem;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid rgba(196, 118, 219, 0.05);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.gallery-item:nth-child(even) {
    transform: translateY(2.5rem);
}

/* --- SOCIAL CONNECTIONS --- */
.socials-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #120613 100%);
    border-top: 1px solid rgba(196, 118, 219, 0.05);
    padding: 8rem 2rem;
    text-align: center;
}

.socials-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.socials-subtitle {
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 0.95rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.socials-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid rgba(196, 118, 219, 0.05);
    padding: 2.2rem 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.01);
}

.social-icon {
    width: 26px;
    height: 26px;
    fill: var(--accent-purple);
    transition: var(--transition);
}

.social-btn .platform {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple);
    font-weight: 500;
}

.social-btn .handle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.social-btn:hover {
    border-color: var(--accent-purple);
    background-color: rgba(196, 118, 219, 0.02);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(196, 118, 219, 0.05);
}

.social-btn:hover .social-icon {
    fill: var(--accent-orchid);
    transform: scale(1.05);
}

.social-btn:hover .handle {
    color: var(--text-light);
}

/* --- PRIVACY & DISCRETION NOTICE --- */
.discretion-notice {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
}

.notice-container {
    background-color: var(--bg-card);
    border: 1px solid rgba(196, 118, 219, 0.06);
    padding: 3rem;
    border-radius: 1px;
    text-align: center;
}

.notice-container h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-orchid);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.notice-container p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    border-top: 1px solid rgba(196, 118, 219, 0.05);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .gallery-item:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation Drawer System */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-btn {
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* Mobile Hero Scaling */
    .hero {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .socials-links {
        grid-template-columns: 1fr;
    }
    .notice-container {
        padding: 2rem 1.5rem;
    }
}