/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a2e28;
    background: #fafaf7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

:root {
    --primary: #2d7a5f;
    --primary-dark: #1f5a45;
    --primary-light: #e8f3ee;
    --accent: #d4a574;
    --text: #1a2e28;
    --text-muted: #6b7c76;
    --bg: #fafaf7;
    --bg-alt: #f0ede5;
    --border: #e0ddd3;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45, 122, 95, 0.08);
    --shadow-lg: 0 10px 40px rgba(45, 122, 95, 0.12);
    --radius: 12px;
}

/* ===== HEADER ===== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 15px; line-height: 1.2; }
.logo-text small { color: var(--text-muted); font-weight: 500; font-size: 12px; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.nav a:hover { color: var(--primary); }
.header-phone { font-weight: 600; font-size: 15px; white-space: nowrap; }
.burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 32px; position: relative;
}
.burger span {
    display: block; position: absolute; left: 4px; right: 4px; height: 2px;
    background: var(--text); transition: .3s;
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 15px; }
.burger span:nth-child(3) { top: 21px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: 10px; font-weight: 600;
    font-size: 15px; cursor: pointer; transition: all .2s; border: none;
    text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--primary-light); color: var(--primary-dark); }
.btn-secondary:hover { background: #dcebe3; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===== HERO ===== */
.hero { padding: 60px 0 80px; background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg) 100%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-block; background: var(--white); padding: 8px 16px;
    border-radius: 20px; font-size: 14px; font-weight: 600;
    color: var(--primary-dark); margin-bottom: 20px; box-shadow: var(--shadow);
}
.hero h1 { font-size: 48px; line-height: 1.1; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-features { display: flex; gap: 24px; flex-wrap: wrap; }
.feature { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.feature span { font-size: 20px; }
.hero-image { position: relative; }
.hero-image-placeholder, .specialist-photo-placeholder {
    background: var(--white); border: 2px dashed var(--primary);
    border-radius: var(--radius); padding: 60px 20px; text-align: center;
    color: var(--primary); min-height: 400px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-image-placeholder span, .specialist-photo-placeholder span { font-size: 64px; margin-bottom: 12px; }
.hero-image-placeholder p, .specialist-photo-placeholder p { font-weight: 600; font-size: 15px; }
.hero-image-placeholder small, .specialist-photo-placeholder small { color: var(--text-muted); font-size: 13px; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-title { font-size: 36px; font-weight: 800; margin-bottom: 12px; text-align: center; letter-spacing: -0.01em; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 16px; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.lead { font-size: 18px; line-height: 1.6; margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; color: var(--text-muted); }
.notice {
    background: #fff8ec; border-left: 3px solid var(--accent);
    padding: 14px 18px; border-radius: 8px; font-size: 14px; color: #6b4a1f;
}
.about-advantages { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.advantage {
    background: var(--bg); padding: 24px; border-radius: var(--radius);
    transition: transform .2s, box-shadow .2s;
}
.advantage:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.advantage-icon { font-size: 32px; margin-bottom: 12px; }
.advantage h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.advantage p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white); padding: 32px 28px; border-radius: var(--radius);
    border: 1px solid var(--border); transition: all .25s; position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card.featured { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); border-color: transparent; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.85); }
.service-badge {
    position: absolute; top: 16px; right: 16px; background: var(--accent);
    color: var(--white); padding: 4px 12px; border-radius: 12px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; min-height: 60px; }
.service-price { font-size: 26px; font-weight: 800; color: var(--primary); }
.service-card.featured .service-price { color: var(--white); }

/* ===== SPECIALIST ===== */
.specialist { background: var(--white); }
.specialist-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.specialist-photo-placeholder { min-height: 500px; }
.specialist-badge {
    display: inline-block; background: var(--primary-light); color: var(--primary-dark);
    padding: 6px 14px; border-radius: 16px; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.specialist-info h2 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.specialist-role { font-size: 17px; color: var(--primary); font-weight: 600; margin-bottom: 20px; }
.specialist-info > p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }
.specialist-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.specialist-tags span {
    background: var(--bg); padding: 6px 14px; border-radius: 16px;
    font-size: 13px; font-weight: 500; color: var(--text);
}

/* ===== REVIEWS ===== */
.reviews { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: var(--white); padding: 28px; border-radius: var(--radius);
    border: 1px solid var(--border); display: flex; flex-direction: column;
}
.review-stars { color: #f5b301; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--text); flex: 1; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 13px; color: var(--text-muted); }

/* ===== CONTACTS ===== */
.contacts { background: var(--white); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { font-size: 28px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item p { font-size: 16px; margin-bottom: 2px; }
.contact-item a:hover { color: var(--primary); }
.contact-hint { font-size: 13px; color: var(--text-muted); }
.messengers { display: flex; gap: 10px; margin-top: 8px; }
.messenger-btn {
    padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 14px; color: var(--white);
}
.messenger-btn.whatsapp { background: #25d366; }
.messenger-btn.telegram { background: #2aabee; }
.messenger-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.contacts-map { border-radius: var(--radius); overflow: hidden; min-height: 480px; background: var(--bg-alt); }
.contacts-map iframe { display: block; }

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); text-align: center;
}
.cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: var(--white); }
.cta p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: var(--white); color: var(--primary-dark); }
.cta .btn-primary:hover { background: var(--bg); }
.cta .btn-secondary { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.cta .btn-secondary:hover { background: rgba(255,255,255,0.25); }
.cta .btn-outline { border-color: var(--white); color: var(--white); }
.cta .btn-outline:hover { background: var(--white); color: var(--primary-dark); }

/* ===== FOOTER ===== */
.footer { background: #1a2e28; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer .logo-text { color: var(--white); }
.footer .logo-text small { color: rgba(255,255,255,0.6); }
.footer-col p { font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero-inner, .about-grid, .specialist-inner, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 28px; }
}
@media (max-width: 640px) {
    .nav, .header-phone { display: none; }
    .burger { display: block; }
    .nav.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: var(--white);
        padding: 20px; gap: 16px; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .hero { padding: 40px 0 60px; }
    .hero h1 { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .services-grid, .reviews-grid, .about-advantages, .footer-inner { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .cta h2 { font-size: 26px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
}
/* Стили для реального фото студии */
.hero-image-real {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(45, 122, 95, 0.15);
}
