/* --- LUXURY COLOR PALETTE --- */
:root {
    --gold-leaf: #c5a059;
    --gold-dust: rgba(197, 160, 89, 0.4);
    --void-black: #050505;
    --obsidian: #0a0a0a;
    --marble-white: #ffffff;
    --tech-gray: #1a1a1a;
    --glass-effect: rgba(255, 255, 255, 0.03);
    --transition-luxe: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- THE PRELOADER (Wait for Perfection) --- */
#loader {
    position: fixed;
    inset: 0;
    background: var(--void-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: var(--gold-leaf);
    font-family: 'Cinzel', serif;
    letter-spacing: 10px;
    animation: fadeOut 1.5s forwards 1s;
}

/* --- THE ICE BOX BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--void-black);
    color: var(--marble-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- WHATSAPP FLOATING ACTION --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-luxe);
}
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); }
.whatsapp-float img { width: 25px; }
.wa-text { font-family: 'Inter', sans-serif; font-size: 0.8rem; margin-right: 12px; font-weight: 400; }

/* --- HEADER (The Monolith Nav) --- */
.atelier-header {
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-wrap { text-align: center; }
.since { font-size: 0.6rem; letter-spacing: 5px; color: var(--gold-leaf); display: block; }
.logo { font-family: 'Cinzel Decorative', cursive; font-size: 2rem; font-weight: 700; letter-spacing: 6px; }
.sub-logo { font-size: 0.6rem; letter-spacing: 3px; opacity: 0.6; display: block; }

.main-nav a {
    text-decoration: none;
    color: var(--marble-white);
    margin-left: 30px;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: var(--transition-luxe);
}

.main-nav a:hover { color: var(--gold-leaf); }
.btn-inquiry { border: 1px solid var(--gold-leaf); padding: 10px 22px; color: var(--gold-leaf) !important; }

/* --- HERO SECTION --- */
.monolith-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.monolith-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
}

.monolith-hero h1 span { font-family: 'Cormorant Garamond', serif; font-style: italic; display: block; }

.hero-subtitle {
    max-width: 700px;
    margin: 25px auto;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.gold-link {
    color: var(--gold-leaf);
    text-decoration: none;
    font-family: 'Cinzel';
    border-bottom: 1px solid var(--gold-leaf);
    padding-bottom: 5px;
    letter-spacing: 3px;
    transition: var(--transition-luxe);
}
.gold-link:hover { letter-spacing: 6px; }

.hero-footer-stats {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 60px;
    font-family: 'Cinzel';
    font-size: 0.6rem;
    letter-spacing: 2px;
}
.stat span { color: var(--gold-leaf); display: block; font-size: 1.1rem; margin-bottom: 5px; }

/* --- THE VAULT (Gallery) --- */
.vault { padding: 100px 5%; border-top: 1px solid #1a1a1a; }
.vault-header { text-align: center; margin-bottom: 60px; }
.vault-header h2 { font-family: 'Cinzel'; letter-spacing: 8px; margin-bottom: 30px; text-transform: uppercase; }

.vault-tabs { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.tab-btn {
    background: none; border: 1px solid #222; color: #888;
    padding: 10px 25px; font-family: 'Cinzel'; font-size: 0.65rem;
    cursor: pointer; transition: var(--transition-luxe);
    letter-spacing: 1px;
}
.tab-btn.active, .tab-btn:hover { border-color: var(--gold-leaf); color: var(--gold-leaf); background: var(--glass-effect); }

.vault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.vault-cell {
    background: var(--void-black);
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.cell-inner img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: var(--transition-luxe);
}

.vault-cell:hover img { filter: brightness(1) contrast(1); transform: scale(1.08); }

.cell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-luxe);
}
.vault-cell:hover .cell-overlay { opacity: 1; }
.serial { font-family: 'Inter', sans-serif; font-size: 9px; color: var(--gold-leaf); letter-spacing: 2px; margin-bottom: 5px; }
.label { font-family: 'Cinzel'; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 5%; background: var(--obsidian); text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.testimonial-card {
    padding: 50px 30px;
    background: var(--glass-effect);
    border: 1px solid #151515;
    transition: var(--transition-luxe);
}
.testimonial-card:hover { border-color: var(--gold-leaf); transform: translateY(-10px); }
.quote { font-style: italic; font-size: 1.2rem; color: #ddd; }
.client-name { display: block; margin-top: 25px; font-family: 'Cinzel'; font-size: 0.7rem; color: var(--gold-leaf); letter-spacing: 2px; }

/* --- LOGISTICS & TERMS --- */
.logistics { padding: 100px 5%; }
.logistics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.log-text h2 { font-family: 'Cinzel'; font-size: 2.5rem; margin-bottom: 30px; }
.log-list { list-style: none; margin-top: 30px; }
.log-list li { margin-bottom: 15px; padding-left: 20px; position: relative; border-left: 1px solid var(--gold-leaf); }
.log-list li strong { color: var(--gold-leaf); font-family: 'Cinzel'; font-size: 0.8rem; letter-spacing: 1px; }

.map-placeholder {
    height: 450px;
    border: 1px solid #222;
    background: radial-gradient(circle, #111 0%, #050505 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cinzel';
    letter-spacing: 8px;
    font-size: 0.8rem;
    color: #333;
}

/* --- THE CONCIERGE FORM --- */
.concierge { padding: 120px 5%; background: var(--obsidian); }
.container.narrow { max-width: 900px; margin: 0 auto; text-align: center; }
.luxe-form { display: grid; gap: 30px; margin-top: 60px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
input, select, textarea {
    background: transparent; border: none; border-bottom: 1px solid #222;
    color: white; padding: 15px 0; font-family: 'Cormorant Garamond';
    font-size: 1.2rem; outline: none; transition: 0.3s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold-leaf); }
option { background: var(--void-black); color: white; }

.file-input-wrapper { margin-top: 20px; padding: 30px; border: 1px dashed #222; text-align: center; cursor: pointer; }
.file-input-wrapper label { font-family: 'Inter'; font-size: 0.8rem; color: #666; cursor: pointer; }

.gold-submit {
    background: var(--gold-leaf); color: white; border: none;
    padding: 22px; font-family: 'Cinzel'; letter-spacing: 5px;
    cursor: pointer; transition: var(--transition-luxe); margin-top: 20px;
}
.gold-submit:hover { letter-spacing: 10px; background: #b48d48; }

/* --- FOOTER --- */
.luxe-footer { padding: 80px 5%; border-top: 1px solid #1a1a1a; text-align: center; }
.footer-top { margin-bottom: 40px; }
.social-links a {
    color: var(--gold-leaf); text-decoration: none; font-family: 'Cinzel';
    font-size: 0.7rem; letter-spacing: 3px; margin: 0 15px;
}
.footer-bottom { font-size: 0.7rem; opacity: 0.5; letter-spacing: 1px; }

/* --- UTILITIES --- */
.section.dark { background: var(--obsidian); }
.label { color: var(--gold-leaf); font-family: 'Cinzel'; font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; display: block; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .vault-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .logistics-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .atelier-header { padding: 20px; flex-direction: column; gap: 20px; position: relative; }
    .main-nav a { margin: 0 10px; font-size: 0.6rem; }
}

@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }
