:root {
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --bg-dark: #050505;
    --bg-darker: #020202;
    --text-main: #EAEAEA;
    --text-muted: #888;
    --glass: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Background Texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://i.ibb.co/6JqhwGxP/photo-2025-12-30-15-37-35.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -2;
    filter: grayscale(100%);
    pointer-events: none;
}

/* Typography */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; color: #fff; line-height: 1.2; }
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold); /* Fallback */
}
.text-link { color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: 0.3s; }
.text-link:hover { border-bottom: 1px solid var(--gold); }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 2px; color: #fff; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { 
    color: #fff; text-decoration: none; font-size: 0.85rem; 
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
    opacity: 0.8;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: #000 !important; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(circle at center, rgba(30,30,30,0.4), transparent 70%);
}
.hero-title { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -2px; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 1rem; }
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite; color: var(--text-muted);
}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform:translate(-50%,0);} 40% {transform:translate(-50%,-10px);} 60% {transform:translate(-50%,-5px);} }

/* Layout Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 6rem 0; }
.bg-darker { background: var(--bg-darker); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.center { text-align: center; }
.center-text { text-align: center; max-width: 600px; margin: 0 auto; color: var(--text-muted); }

/* About Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-image {
    flex: 1;
    height: 550px;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: grayscale(20%);
    transition: 0.5s;
}
.about-image:hover img { filter: grayscale(0%); transform: scale(1.02); }
.about-text { flex: 1; }
.about-text h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #fff; }
.about-text p { margin-bottom: 1.5rem; color: #ccc; font-size: 1.05rem; }
.section-title { font-size: 2.5rem; margin-bottom: 2rem; }
.text-left { text-align: left; }

/* Cards & Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.narrow { max-width: 900px; margin: 0 auto; }

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: 0.4s;
}
.card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); border-color: var(--gold); }
.card h3 { margin: 1.5rem 0 1rem; font-size: 1.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.icon-gold { font-size: 2rem; color: var(--gold); }
.icon-gold.large { font-size: 3rem; }

/* CTA Banner */
.cta-banner {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(90deg, rgba(212,175,55,0.05), transparent, rgba(212,175,55,0.05));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; }

/* Reviews Marquee */
.marquee-wrapper { overflow: hidden; white-space: nowrap; padding: 2rem 0; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-content { display: inline-flex; animation: scroll 40s linear infinite; }
.review-card {
    width: 350px; white-space: normal; background: #111;
    margin: 0 1rem; padding: 2rem; border-radius: var(--radius);
    border: 1px solid #222;
}
.review-text { font-style: italic; color: #bbb; margin-bottom: 1rem; }
.review-author { color: var(--gold); font-weight: bold; text-align: right; }

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Buttons */
.telegram-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 0.9rem;
}
.telegram-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212,175,55,0.2); }
.telegram-btn.small { padding: 12px 24px; font-size: 0.8rem; background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.telegram-btn.small:hover { background: var(--gold); color: #000; }

/* Contact Section */
.contact-section { padding: 8rem 0; text-align: center; background: radial-gradient(circle at bottom, #111, #050505); }
.contact-card { display: inline-block; width: 100%; max-width: 800px; padding: 0 2rem; }

/* Footer */
footer { padding: 4rem 0; text-align: center; border-top: 1px solid #111; font-size: 0.8rem; color: #444; }

/* Scroll Top */
#scrollTopBtn {
    position: fixed; bottom: 30px; right: 30px; 
    width: 50px; height: 50px; background: var(--gold); 
    color: #000; border: none; border-radius: 50%;
    cursor: pointer; display: none; font-size: 1.2rem;
    z-index: 999;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile Responsive */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.bar { width: 25px; height: 2px; background: #fff; transition: 0.3s; }

@media (max-width: 900px) {
    .split-layout { flex-direction: column; gap: 3rem; }
    .about-image { width: 100%; height: 400px; }
    .hero-title { font-size: 3.5rem; }
    
    .menu-toggle { display: flex; z-index: 1001; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: #000; flex-direction: column;
        justify-content: center; transition: 0.4s;
    }
    .nav-links.active { right: 0; }
}