:root {
    --primary: #00ffff;
    --dark: #0d0d0d;
    --bg-accent: #1a1c1e;
    --silver: #C0C0C0;
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1c1e 0%, #0d0d0d 100%);
    text-align: center;
}

.ambient-glow {
    position: absolute;
    top: 20%; right: 10%;
    width: 35vw; height: 35vw;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-style: italic;
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.divider {
    width: 60px; height: 1px;
    background: var(--silver);
    margin: 20px auto;
}

.slogan {
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 200;
}

.sub-text {
    font-weight: 200;
    opacity: 0.6;
    max-width: 500px;
    margin: 15px auto 40px;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
}

.glass-distortion {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(255,255,255,0.02) 5px);
    pointer-events: none;
    z-index: 1;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.card p { font-weight: 200; opacity: 0.7; position: relative; z-index: 2; }

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
}

/* Gallery */
.gallery { padding: 100px 20px; text-align: center; background: #080808; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; margin-bottom: 50px; }

.filter-btn {
    padding: 10px 25px;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--silver);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin: 5px;
    transition: 0.3s;
}

.filter-btn.active { border-color: var(--primary); color: var(--primary); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.gallery-item { position: relative; overflow: hidden; height: 400px; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.05); }

.mirror-halo {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70%; height: 70%;
    box-shadow: 0 0 40px var(--cyan-glow);
    z-index: 2;
    pointer-events: none;
}

/* Form */
.contact-section { padding: 120px 20px; }
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
}

input:focus { border-color: var(--primary); outline: none; }

.btn {
    background: transparent;
    border: 1px solid var(--silver);
    color: white;
    padding: 20px 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    transition: 0.4s;
}

.btn:hover { background: #fff; color: #000; box-shadow: 0 0 30px var(--primary); }

footer { text-align: center; padding: 50px; color: #444; font-size: 0.8rem; border-top: 1px solid #1a1c1e; }
.hide { display: none; }