/* ОБНУЛЕНИЕ И БАЗА */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .site-name, .btn-dark, .btn-light, .btn-outline, .price-tag {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.accent-text {
    color: #b08d57;
    font-weight: 700;
}

/* ШАПКА */
.header {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    backdrop-filter: blur(5px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.site-name { font-weight: 700; font-size: 0.9rem; }

.contacts a {
    display: block;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
}

/* Стили для ссылок в контактах (телефон и почта) */
.contacts a {
    display: block;
    text-decoration: none;
    color: #000;      /* Черный цвет */
    font-weight: bold; /* Жирный шрифт */
    margin-bottom: 5px;
    transition: 0.2s;
}

/* Цвет при наведении */
.contacts a:hover {
    color: #555;      /* Становится серым при наведении */
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 5px;
    justify-content: flex-end;
}

.socials a {
    font-size: 0.7rem;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    transition: 0.3s;
}

.socials a:hover { background: #111; color: #fff; }

.breadcrumbs {
    padding: 30px 0 15px; /* Отступ сверху */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about h1 {
    margin-top: 10px;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: #000;
    text-decoration: underline;
}

.breadcrumbs span {
    color: #ccc; /* Цвет разделителя и текущей страницы */
    margin-left: 5px;
}

/* ИНТРО */
.intro { padding: 80px 0 40px; }
.intro h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 25px; }
.lead { font-size: 1.25rem; color: #444; margin-bottom: 20px; border-left: 4px solid #b08d57; padding-left: 20px; }
.tags { margin-top: 30px; font-family: 'Montserrat'; font-size: 0.8rem; color: #888; }
.tags span { margin-right: 15px; }

/* СПЕЦПРЕДЛОЖЕНИЕ 2 В 1 */
.special-offer { padding: 40px 0; }
.offer-card {
    background: #1a1a1a;
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #b08d57;
}

.offer-header h2 { font-size: 1.8rem; margin-bottom: 10px; color: #f0f0f0; }
.offer-body { margin: 30px 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.benefit { font-size: 0.95rem; line-height: 1.4; }

.offer-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.price-tag { font-size: 1.8rem; font-weight: 700; color: #b08d57; }

/* УСЛУГИ */
.services { padding: 80px 0; background: #fafafa; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-column { background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.service-column.highlight { border: 1px dashed #b08d57; background: #fff9f0; }

.service-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.service-header .icon { font-size: 2rem; }
.service-header h3 { font-size: 1.2rem; }

.service-list { list-style: none; }
.service-list li { 
    margin-bottom: 12px; 
    padding-left: 20px; 
    position: relative; 
    font-size: 0.95rem;
}
.service-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #b08d57;
}

/* ЦЕНЫ */
.pricing { padding: 100px 0; text-align: center; }
.section-title { margin-bottom: 50px; font-size: 2rem; }

.price-table { max-width: 800px; margin: 0 auto; }
.price-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.price-item.featured { color: #b08d57; font-weight: 700; }
.dots { flex: 1; border-bottom: 1px dotted #ccc; margin: 0 15px; }

.info-box { background: #f0f0f0; padding: 25px; border-radius: 10px; display: inline-block; margin-top: 40px; font-size: 0.9rem; }

.cta-buttons { margin-top: 50px; display: flex; justify-content: center; gap: 20px; }

/* КНОПКИ */
.btn-dark, .btn-light, .btn-outline {
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
    border-radius: 50px;
    display: inline-block;
}

.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #b08d57; transform: translateY(-3px); }

.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: #b08d57; color: #fff; }

.btn-outline { border: 1px solid #111; color: #111; }
.btn-outline:hover { background: #111; color: #fff; }

/* ФУТЕР */
.footer { background: #111; color: #777; padding: 60px 0 30px; font-size: 0.8rem; }
.footer-content { 
    display: flex; 
    justify-content: space-between; 
    border-bottom: 1px solid #222; 
    padding-bottom: 30px; 
    margin-bottom: 30px; 
}
.maps-links a { color: #fff; text-decoration: none; margin-left: 20px; }
.seo-text {
    width: 100%;
    margin-top: 10px;
    padding-top: 0;
    /* Убираем border-top, если он дублируется */
    border-top: 1px solid #1a1a1a; 
    
    font-family: 'Montserrat', sans-serif; /* Тэг лучше смотрится без засечек */
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: left;
    
    /* Баланс: читаемо, но не отвлекает */
    color: #555; 
    opacity: 0.8;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; }
    .contacts { text-align: center; }
    .intro h1 { font-size: 1.8rem; }
    .offer-card { padding: 30px 20px; }
    .offer-footer { flex-direction: column; text-align: center; gap: 20px; }
    .price-item { flex-direction: column; gap: 5px; margin-bottom: 30px; }
    .dots { display: none; }
    .cta-buttons { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .maps-links a { margin: 0 10px; }
}