.logo-link { text-decoration: none; display: block; }

.nav-btn:hover, .nav-btn.active {
            background: var(--gold);
            color: var(--dark) !important;
        }

.header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            border: 1px solid var(--gold);
            padding: 8px 18px;
            border-radius: 4px;
            color: var(--gold) !important;
            transition: 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            margin-left: 10px;
            white-space: nowrap;
        }

.header-phone svg { fill: var(--gold); transition: 0.3s; }

.header-phone:hover svg { fill: var(--dark); }

.hero-mini {
            padding: 100px 0 60px;
            position: relative;
            background:
                linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%),
                url("../../images/granitnye-pamyatniki-murom.webp") center center/cover no-repeat;
            color: var(--white);
            text-align: center;
        }

.header-phone svg { fill: var(--gold); transition: 0.3s; }

.header-phone:hover svg { fill: var(--dark); }

.hero-mini h1 {
            font-family: "Playfair Display", serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 15px;
        }

.btn-main {
            display: inline-block;
            background: transparent;
            color: var(--gold);
            padding: 14px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: .3s;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 1px solid var(--gold);
            cursor: pointer;
        }

.btn-main:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-2px);
        }

section { padding: 60px 0; }

.section-title {
            font-family: "Playfair Display", serif;
            font-size: 36px;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }

.section-title::after {
            content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 80px; height: 3px; background: var(--gold);
        }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; margin-bottom: 50px; }

.card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

.card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: .3s;
            border-top: 4px solid var(--gold);
            height: 100%;
        }

.card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.card-content { padding: 25px; }

.card h3 { font-family: "Playfair Display", serif; margin-bottom: 10px; font-size: 1.4rem; color: var(--dark); }

.card p { font-size: 0.95rem; color: #555; }

.service-detail {
            background: white;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            scroll-margin-top: 100px;
        }

.service-detail h3 {
            font-family: "Playfair Display", serif;
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

.retouch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

.comparison-slider {
            position: relative;
            width: 100%;
            aspect-ratio: 4/5;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            cursor: ew-resize;
            user-select: none;
            touch-action: pan-y; 
        }

.comparison-slider img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none; 
        }

.img-before {
            z-index: 2;
            clip-path: inset(0 50% 0 0);
        }

.img-after {
            z-index: 1;
        }

.slider-handle {
            position: absolute;
            z-index: 3;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: var(--gold);
            transform: translateX(-50%);
            pointer-events: none;
        }

.slider-handle::after {
            content: "↔";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 34px;
            height: 34px;
            background: var(--gold);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

.retouch-label-tag {
            position: absolute;
            bottom: 10px;
            padding: 4px 10px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 4;
            pointer-events: none;
            border-radius: 4px;
        }

.label-before { left: 10px; }

.label-after { right: 10px; }

.video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            background: #000;
        }

.video-container video {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
        }

footer {
            background: var(--dark);
            color: #bbb;
            padding: 70px 0 35px;
            margin-top: 80px;
        }

@media (max-width: 1024px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            nav.active { display: block; }
            nav ul { flex-direction: column; gap: 15px; }
            .burger { display: flex; }
            .hero-mini { padding: 80px 0 50px; }
            .callback-bt span { display: none; }
            .callback-bt { padding: 15px; border-radius: 50%; }
        }

/* --- УНИФИЦИРОВАННАЯ МОБИЛЬНАЯ АДАПТАЦИЯ --- */

@media (max-width: 768px) {
            .container {
                width: calc(100% - 32px);
            }

            .header-inner {
                flex-wrap: nowrap;
                align-items: center;
            }

            .logo {
                font-size: 18px;
                letter-spacing: 1px;
            }

            .logo-subtext {
                font-size: 8px;
                letter-spacing: 3px;
            }

            .header-phone {
                min-width: 0;
                white-space: nowrap;
                padding: 7px 10px;
                font-size: 0.78rem;
                flex-shrink: 0;
            }

            .nav-btn {
                width: 100%;
                text-align: center;
            }

            .callback-bt {
                right: 15px;
                bottom: 15px;
            }

            .callback-bt span {
                display: none;
            }

            .callback-bt {
                padding: 14px;
                border-radius: 50%;
            }

            .form-container {
                width: calc(100vw - 24px);
                right: 12px;
                left: 12px;
                bottom: 80px;
            }

            .btn-main,
            .btn-send {
                width: 100%;
            }
        }

.faq-page {
            padding: 70px 0 35px;
        }

.faq-intro {
            max-width: 820px;
            margin: 0 auto 40px;
            text-align: center;
            color: #555;
            font-size: 1.05rem;
        }

.faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

.faq-item {
            border-top: 1px solid rgba(184, 151, 120, 0.35);
            padding: 22px 0;
            scroll-margin-top: 95px;
        }

.faq-item:last-child {
            border-bottom: 1px solid rgba(184, 151, 120, 0.35);
        }

.faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            font-family: "Playfair Display", serif;
            font-size: 1.28rem;
            color: #222;
            line-height: 1.35;
        }

.faq-item summary::-webkit-details-marker {
            display: none;
        }

.faq-item summary::after {
            content: "+";
            flex-shrink: 0;
            color: var(--gold);
            font-family: "Roboto", sans-serif;
            font-size: 1.55rem;
            font-weight: 300;
            line-height: 1;
            margin-top: 2px;
        }

.faq-item[open] summary::after {
            content: "−";
        }

.faq-answer {
            max-width: 760px;
            padding-top: 22px;
            color: #3f3f3f;
            font-size: 1rem;
            line-height: 1.75;
        }

.faq-answer p {
            margin-bottom: 14px;
            
        }

.faq-answer ol {
            padding-left: 22px;
            margin: 16px 0;
        }

.faq-links {
            max-width: 900px;
            margin: 55px auto 0;
            padding-top: 28px;
            border-top: 1px solid rgba(184, 151, 120, 0.3);
            text-align: center;
        }

.faq-links-title {
            font-family: "Playfair Display", serif;
            color: var(--dark);
            font-size: 1.35rem;
            margin-bottom: 18px;
        }

.faq-links-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px 28px;
        }

.faq-links-list a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: .3s;
        }

.faq-links-list a:hover {
            border-bottom-color: var(--gold);
            color: var(--gold-hover);
        }

@media (max-width: 768px) {
            .faq-page { padding: 50px 0 20px; }
            .faq-intro { text-align: left; font-size: 1rem; }
            .faq-item { padding: 19px 0; }
            .faq-item summary { font-size: 1.12rem; gap: 16px; }
            .faq-answer { font-size: 0.96rem; }
            .faq-links-list { justify-content: flex-start; gap: 12px 22px; }
            .faq-links { text-align: left; }
        }
