:root {
    --wine: #3d0312;
    --gold: #c5a059;
    --bg: #0d0d0d;
    --text-dim: rgba(255,255,255,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: #fff; font-family: 'Montserrat', sans-serif; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.05); position: sticky; top: 0; background: rgba(13,13,13,0.95); z-index: 1000; backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 18px; }
.logo-icon { width: 40px; height: 40px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; border-radius: 2px; }

.nav { display: flex; align-items: center; }
.nav a { color: #fff; text-decoration: none; margin-left: 35px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.nav a:hover { color: var(--gold); }
.header-phone { color: var(--gold) !important; font-weight: 600; border-left: 1px solid rgba(197, 160, 89, 0.3); padding-left: 35px; font-size: 13px !important; }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.label { color: var(--gold); text-transform: uppercase; font-size: 10px; letter-spacing: 3px; display: block; margin-bottom: 20px; }
.title { font-family: 'Playfair Display', serif; font-size: clamp(35px, 6vw, 80px); line-height: 1.1; margin-bottom: 30px; }
.gold-text { color: var(--gold); font-style: italic; font-weight: 400; }
.descr { color: var(--text-dim); max-width: 420px; margin-bottom: 40px; font-size: 16px; }
.hero-action { display: flex; align-items: center; gap: 20px; }
.line { width: 50px; height: 1px; background: var(--gold); }
.name { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: var(--gold); }
.photo-container { border-left: 1px solid var(--gold); padding-left: 20px; }
.img-main { width: 100%; height: auto; border-radius: 2px; }

/* Services */
.services { padding: 100px 0; background: var(--wine); position: relative; }
.grid-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.1; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 42px; text-align: center; margin-bottom: 60px; position: relative; }
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.item { background: rgba(0,0,0,0.4); padding: 40px 30px; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; }
.item.active { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.num { color: var(--gold); font-size: 10px; font-weight: 700; margin-bottom: 15px; display: block; }
.item h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; }
.service-sublist { list-style: none; }
.service-sublist li { color: var(--text-dim); font-size: 14px; margin-bottom: 12px; padding-left: 15px; position: relative; }
.service-sublist li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* About & Photo FIX */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.photo-container-small { max-width: 320px; margin: 0 auto; border: 1px solid rgba(197, 160, 89, 0.3); padding: 10px; }
.img-about { width: 100%; height: auto; border-radius: 2px; display: block; filter: grayscale(10%); }
.title-serif { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 25px; }
.stats { display: flex; gap: 40px; margin-top: 30px; }
.stat-box b { display: block; font-size: 32px; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-box small { text-transform: uppercase; font-size: 9px; color: var(--text-dim); letter-spacing: 1px; }

/* SEO Content */
.seo-content { padding: 80px 0; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.seo-item h3 { font-size: 16px; color: var(--gold); margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.seo-item p { font-size: 14px; color: var(--text-dim); line-height: 1.8; }

/* Footer */
.footer { padding: 60px 0 40px; background: #080808; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-info small, .footer-links small { color: var(--gold); text-transform: uppercase; font-size: 9px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.footer-info p, .footer-info a { color: #fff; text-decoration: none; font-size: 15px; margin-bottom: 10px; display: block; }

.social-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link { text-decoration: none; color: #fff; font-size: 11px; padding: 10px 18px; border: 1px solid rgba(197, 160, 89, 0.3); transition: 0.3s; background: transparent; text-transform: uppercase; letter-spacing: 1px; }

.social-link.wa:hover { border-color: #25d366; color: #25d366; }
.social-link.ig:hover { border-color: #e1306c; color: #e1306c; }
.social-link.tg:hover { border-color: #0088cc; color: #0088cc; }

.copyright { text-align: center; margin-top: 60px; font-size: 10px; color: var(--text-dim); opacity: 0.4; }

/* Floating WhatsApp */
.whatsapp-sticky { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.4); z-index: 999; animation: pulse 2s infinite; }
.whatsapp-sticky img { width: 32px; height: 32px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

@media (max-width: 900px) {
    .hero-grid, .about-grid, .footer-grid, .seo-grid { grid-template-columns: 1fr; flex-direction: column; text-align: center; align-items: center; }
    .hero-visual { order: -1; }
    .hero-action, .stats, .social-buttons { justify-content: center; }
    .title { font-size: 32px; }
    .header-phone { border: none; padding-left: 0; margin-top: 10px; }
    .nav { flex-direction: column; gap: 10px; }
}

.is-visible { opacity: 1 !important; transform: translateY(0) !important; }