*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream: #F5F0E8;
    --warm-white: #FAF7F2;
    --gold: #C9A96E;
    --gold-light: #D4B88A;
    --gold-dark: #A8854A;
    --sand: #E8DCC8;
    --taupe: #9E8E7A;
    --dark: #2C2416;
    --mid: #6B5B45;
    --yellow-bg: #D4C17A;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; /* Добавили сюда */
    width: 100%;        /* Добавили сюда */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
    width: 100%;        /* Добавили сюда */
}
/* ============================================
   NAV
   ============================================ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.3;
}

.nav-logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--taupe);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mid);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 10px 24px;
    letter-spacing: 1.5px;
    font-size: 11px !important;
    text-transform: uppercase;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* Бургер-кнопка */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--sand);
    cursor: pointer;
    padding: 0;
    z-index: 110;
    transition: border-color 0.2s;
}

.nav-burger:hover { border-color: var(--gold); }

.nav-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-burger.active span:nth-child(2) { opacity: 0; }

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-links a {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 2px;
    transition: color 0.2s;
}

.mobile-menu-links a:hover { color: var(--gold); }

.mobile-menu-cta {
    display: inline-block;
    background: var(--gold);
    color: #fff !important;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
    transition: background 0.2s;
}

.mobile-menu-cta:hover {
    background: var(--gold-dark);
    color: #fff !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 80px;
    gap: 60px;
    background: var(--warm-white);
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--taupe);
    margin-bottom: 44px;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-visual {
    position: relative;
    height: 580px;
}

.hero-img-main {
    position: absolute;
    right: 0; top: 0;
    width: 75%;
    height: 90%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    left: 0; bottom: 0;
    width: 45%;
    height: 55%;
    object-fit: cover;
    border: 6px solid var(--warm-white);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 60px;
    background: var(--cream);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.15;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 120px 220px;
    gap: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--sand);
}

.service-card:nth-child(1) { grid-column: 1; grid-row: 1 / 4; }
.service-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.service-card:nth-child(3) { grid-column: 2; grid-row: 3; }
.service-card:nth-child(4) { grid-column: 3; grid-row: 1; }
.service-card:nth-child(5) { grid-column: 3; grid-row: 2 / 4; }

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,36,22,0.68) 0%, rgba(44,36,22,0.18) 48%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.service-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ============================================
   WHY US
   ============================================ */
.why {
    padding: 100px 60px;
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image { position: relative; }

.why-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.why-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 14px;
}

.why-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.why-item-desc {
    font-size: 13px;
    color: var(--taupe);
    line-height: 1.6;
}

.why-actions {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

/* ============================================
   REVIEWS — БЕЗ СЛАЙДЕРА, СЕТКА/РЯД ПО ЦЕНТРУ
   ============================================ */
.reviews {
    padding: 100px 60px;
    background: var(--cream);
}

.reviews-track-wrap {
    overflow: visible;
    margin-top: 48px;
    position: relative;
}

.reviews-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* Убираем transition и transform для слайдера */
}

.review-card {
    background: var(--warm-white);
    padding: 32px;
    width: calc(33.333% - 40px);
    min-width: 280px;
    flex: 1 1 300px;
    border: 1px solid var(--sand);
    transition: all 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(44,36,22,0.06);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: var(--gold);
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
    flex-shrink: 0;
}

.review-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.review-date {
    font-size: 11px;
    color: var(--taupe);
    margin-top: 2px;
}

/* Скрываем кнопки навигации слайдера на всех экранах */
.reviews-nav {
    display: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 60px;
    background: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(180px, 18vw, 260px);
    gap: 12px;
    margin-top: 48px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    min-height: 0;
}

.gallery-item:first-child { grid-row: span 2; }


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* ============================================
   BRANDS
   ============================================ */
.brands {
    padding: 80px 60px;
    background: var(--cream);
    text-align: center;
}

.brands-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 48px;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--taupe);
    transition: color 0.2s;
}

.brand-item:hover { color: var(--gold); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 60px;
    background: var(--dark);
    text-align: center;
}

.cta-banner .section-eyebrow { color: var(--gold-light); text-align: center; }
.cta-banner .section-title { color: #fff; text-align: center; }

.cta-banner p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin: 20px auto 44px;
    max-width: 480px;
    line-height: 1.7;
}

.cta-phone {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.25s;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding-bottom: 4px;
}

.cta-phone:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts {
    padding: 100px 60px;
    background: var(--warm-white);
}

.contacts-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
}

.contacts-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contacts-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.contacts-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 4px;
}

.contacts-value {
    font-size: 15px;
    color: var(--dark);
    font-weight: 400;
}

.contacts-value a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.contacts-value a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}

.footer-logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.service-card:nth-child(1) img { object-position: center; }
.service-card:nth-child(2) img { object-position: center 45%; }
.service-card:nth-child(3) img { object-position: center 48%; }
.service-card:nth-child(4) img { object-position: center 42%; }
.service-card:nth-child(5) img { object-position: center 36%; }


/* ============================================
   УПРАВЛЕНИЕ ПОЛОЖЕНИЕМ КАРТИНОК ВНУТРИ БЛОКОВ
   ============================================ */

/* --- HERO: главное фото — фокус выше центра, чтобы лицо не обрезалось --- */
.hero-img-main {
    object-position: center 40%;
}

/* Акцентное фото — фокус по центру (можно менять) */
.hero-img-accent {
    object-position: center 90%;
}

/* --- SERVICES: каждая карточка получает свой фокус --- */
/* Карточка 1 (уход за волосами)(комплексные услуги) */
.service-card:nth-child(1) img {
    object-position: center 80%;
}

/* Карточка 2 (комплексные услуги) */
.service-card:nth-child(2) img {
    object-position: center 60%;
}

/* Карточка 3 (маникюр) */
.service-card:nth-child(3) img {
    object-position: center 20%;
}

/* Карточка 4 (педикюр) */
.service-card:nth-child(4) img {
    object-position: center 15%;
}

/* Карточка 5 (макияж) */
.service-card:nth-child(5) img {
    object-position: center 15%;
}

/* --- WHY US: фото салона — фокус чуть выше центра --- */
.why-image img {
    object-position: center 70%;
}

/* --- GALLERY: все фото галереи — фокус по центру (можно менять индивидуально) --- */
.gallery-item img {
    object-position: center;
}

/* --- GALLERY: индивидуальное положение каждой картинки --- */
.gallery-item:nth-child(1) img {
    object-position: center 30%;
}

.gallery-item:nth-child(2) img {
    object-position: center 10%;
}

.gallery-item:nth-child(3) img {
    object-position: center 25%;
}

.gallery-item:nth-child(4) img {
    object-position: center 35%;
}

.gallery-item:nth-child(5) img {
    object-position: center 45%;
}

.gallery-item:nth-child(6) img {
    object-position: center 12%;
}

/* Если хочешь точечно поправить конкретные фото в галерее,
   добавь им классы в HTML и пропиши object-position здесь */

/* ============================================
   RESPONSIVE — ПЛАНШЕТ (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    nav { padding: 16px 32px; }
    .nav-links { gap: 24px; }
    .nav-links a { font-size: 11px; letter-spacing: 1px; }

    .hero { padding: 120px 32px 60px; gap: 40px; }
    .hero-visual { height: 480px; }

    .services { padding: 80px 32px; }

    .why { padding: 80px 32px; gap: 48px; }
    .why-image img { height: 460px; }

    .reviews { padding: 80px 32px; }

    .gallery { padding: 80px 32px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .brands { padding: 60px 32px; }
    .brands-row { gap: 40px; }

    .cta-banner { padding: 80px 32px; }
    .contacts { padding: 80px 32px; }

    footer { padding: 48px 32px; }
    .footer-bottom { padding: 16px 32px; }
}

/* ============================================
   RESPONSIVE — МАЛЕНЬКИЙ ПЛАНШЕТ (≤900px)
   ============================================ */
@media (max-width: 900px) {
    nav { padding: 16px 24px; }

    .nav-links { display: none; }
    .nav-burger { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        min-height: auto;
    }
    .hero-content { max-width: 100%; }
    .hero-visual { height: 360px; order: -1; }
    .hero-img-main { width: 70%; height: 85%; }
    .hero-img-accent { width: 40%; height: 50%; }

    .services { padding: 60px 24px; }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 220px;
    }
    .service-card:nth-child(n) { grid-column: auto; grid-row: auto; }
    .service-card:nth-child(1) { grid-column: span 2; }

    .why { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .why-image img { height: 320px; }

    .reviews { padding: 60px 24px; }

    /* ИСПРАВЛЕНО: карточки отзывов на планшете */
    .review-card {
        min-width: 280px;
        max-width: 340px;
        padding: 28px;
    }

    .gallery { padding: 60px 24px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(160px, 38vw, 240px);
    }
    .gallery-item { grid-row: span 1; }

    .brands { padding: 60px 24px; }
    .brands-row { gap: 32px; }
    .brand-item { font-size: 16px; letter-spacing: 2px; }

    .cta-banner { padding: 60px 24px; }
    .contacts { padding: 60px 24px; }
    .contacts-grid { grid-template-columns: 1fr; gap: 24px; }

    footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   RESPONSIVE — МОБИЛЬНЫЙ (≤600px)
   ============================================ */
@media (max-width: 600px) {
    nav { padding: 14px 16px; }

    .nav-logo-icon { width: 36px; height: 36px; font-size: 15px; }
    .nav-logo-text { font-size: 12px; letter-spacing: 1.5px; }
    .nav-logo-sub { font-size: 8px; letter-spacing: 2px; }

    /* Hero */
    .hero { padding: 90px 16px 40px; gap: 32px; }
    .hero-eyebrow { font-size: 10px; margin-bottom: 16px; }
    .hero-title { font-size: clamp(36px, 8vw, 48px); margin-bottom: 16px; }
    .hero-desc { font-size: 14px; margin-bottom: 32px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { text-align: center; width: 100%; }
    .hero-visual { height: 280px; }
    .hero-img-main { width: 65%; height: 80%; }
    .hero-img-accent { width: 45%; height: 50%; border-width: 4px; }

    /* Section headers */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }
    .section-title { font-size: clamp(28px, 6vw, 36px); }

    /* Services — одна колонка */
    .services { padding: 48px 16px; }
    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .service-card:nth-child(n) { grid-column: auto; grid-row: auto; }
    .service-label { font-size: 18px; }
    .service-card { max-height: 400px; }
    .service-card:nth-child(2) img {object-position: center 75%;}
    .service-card:nth-child(1) img {object-position: center 15%;}
    /* Why */
    .why { padding: 48px 16px; gap: 32px; }
    .why-image img { height: 360px; }
    .why-list { margin-top: 28px; gap: 20px; }
    .why-item { gap: 14px; }
    .why-icon { width: 36px; height: 36px; font-size: 12px; }
    .why-item-title { font-size: 13px; }
    .why-item-desc { font-size: 12px; }
    .why-actions { flex-direction: column; gap: 12px; margin-top: 32px; }
    .why-actions .btn-primary,
    .why-actions .btn-outline { text-align: center; width: 100%; }

        /* REVIEWS — ВЕРТИКАЛЬНЫЙ СПИСОК ДЛЯ МОБИЛЬНЫХ */
    .reviews {
        padding: 48px 16px;
    }

    .reviews-track-wrap {
        overflow: visible;
        margin-top: 32px;
        width: 100%;
    }

    .reviews-track {
        flex-direction: column;
        gap: 16px;
        align-items: center; /* Центрируем карточки по горизонтали */
        justify-content: center;
        width: 100%;
    }

    .review-card {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        flex: none; /* Убираем растягивание */
        padding: 24px 20px;
        margin: 0; /* Убираем лишние отступы */
        box-sizing: border-box;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .review-stars {
        margin-bottom: 14px;
    }

    .review-stars i {
        font-size: 13px;
    }

    .review-author {
        gap: 12px;
    }

    .review-avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .review-name {
        font-size: 13px;
    }

    .review-date {
        font-size: 11px;
    }

    /* Gallery */
    .gallery { padding: 48px 16px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: clamp(140px, 40vw, 200px);
        gap: 8px;
        margin-top: 32px;
    }

    /* Brands */
    .brands { padding: 48px 16px; }
    .brands-title { font-size: 22px; margin-bottom: 32px; }
    .brands-row { gap: 20px 32px; }
    .brand-item { font-size: 14px; letter-spacing: 1.5px; }

    /* CTA */
    .cta-banner { padding: 48px 16px; }
    .cta-banner p { font-size: 14px; margin: 16px auto 32px; }

    /* Contacts */
    .contacts { padding: 48px 16px; }
    .contacts-grid { gap: 20px; }
    .contacts-icon { width: 36px; height: 36px; font-size: 12px; }
    .contacts-value { font-size: 14px; }

    /* Footer */
    footer {
        grid-template-columns: 1fr 1fr; /* Две равные колонки */
        padding: 36px 16px;
        gap: 28px 16px; /* Отступы между колонками */
    }

    /* Первый блок (логотип и описание) — на всю ширину */
    footer > div:first-child {
        grid-column: span 2; /* Растягиваем на две колонки */
        text-align: center; /* Центрируем контент, опционально */
    }

    /* Mobile menu */
    .mobile-menu-links a { font-size: 20px; }
    .mobile-menu-links { gap: 22px; }
}


/* ============================================
   ОБНОВЛЁННЫЕ СТИЛИ — добавь в КОНЕЦ style.css
   (они переопределят базовые, адаптив не трогаем)
   ============================================ */

:root {
    --gold-grad: linear-gradient(135deg, #C9A96E 0%, #D4B88A 50%, #A8854A 100%);
    --shadow-soft: 0 20px 50px -20px rgba(44, 36, 22, 0.18);
    --shadow-card: 0 10px 30px -12px rgba(44, 36, 22, 0.12);
}

/* --- Тонкая текстура фона страницы --- */
body {
    background:
        radial-gradient(circle at 15% 10%, rgba(201,169,110,0.06), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201,169,110,0.05), transparent 40%),
        var(--warm-white);
}

/* ============================================
   NAV — чище, с подсветкой ссылок
   ============================================ */
.nav-logo-icon {
    background: var(--gold-grad);
    border: none;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 14px -4px rgba(168,133,74,0.5);
    transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-4deg) scale(1.05); }

.nav-links a:not(.nav-cta) {
    position: relative;
    padding-bottom: 4px;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--gold-grad) !important;
    border-radius: 2px;
    box-shadow: 0 6px 18px -6px rgba(168,133,74,0.55);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(168,133,74,0.7); }

/* ============================================
   HERO — больше глубины
   ============================================ */
.hero {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(232,220,200,0.5), transparent 60%),
        var(--warm-white);
    position: relative;
}

.hero-title em {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: var(--gold-grad);
    border-radius: 2px;
    box-shadow: 0 8px 22px -8px rgba(168,133,74,0.5);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.6s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(168,133,74,0.65); }
.btn-primary:hover::before { left: 120%; }

.btn-outline { border-radius: 2px; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.hero-img-main {
    box-shadow: var(--shadow-soft);
    border-radius: 2px;
}
.hero-img-accent {
    box-shadow: 0 16px 36px -16px rgba(44,36,22,0.3);
    border-radius: 2px;
}

/* ============================================
   SECTION TITLE — декоративный штрих
   ============================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
}

/* ============================================
   SERVICES — мягче overlay, акцент при наведении
   ============================================ */
.service-card {
    border-radius: 3px;
    box-shadow: var(--shadow-card);
}
.service-overlay {
    background: linear-gradient(to top, rgba(44,36,22,0.78) 0%, rgba(44,36,22,0.12) 55%, transparent 100%);
    transition: background 0.4s ease;
}
.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(168,133,74,0.82) 0%, rgba(44,36,22,0.15) 60%, transparent 100%);
}
.service-label {
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.service-card:hover .service-label { transform: translateY(-4px); }
.service-label::after {
    content: '';
    display: block;
    width: 0; height: 1px;
    background: rgba(255,255,255,0.7);
    margin-top: 6px;
    transition: width 0.4s ease 0.05s;
}
.service-card:hover .service-label::after { width: 40px; }

/* ============================================
   WHY US — карточки иконок оживают
   ============================================ */
.why-image img {
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
}
.why-image::before {
    content: '';
    position: absolute;
    top: 18px; left: 18px;
    right: -18px; bottom: -18px;
    border: 1px solid var(--gold);
    z-index: -1;
    border-radius: 3px;
    opacity: 0.5;
}
.why-item {
    transition: transform 0.3s ease;
}
.why-item:hover { transform: translateX(6px); }
.why-icon {
    border-radius: 50%;
    transition: all 0.3s ease;
}
.why-item:hover .why-icon {
    background: var(--gold-grad);
    border-color: transparent;
    color: #fff;
    transform: rotate(8deg);
}

/* ============================================
   REVIEWS — изящные карточки с кавычкой
   ============================================ */
.review-card {
    border-radius: 3px;
    border-color: transparent;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    color: rgba(201,169,110,0.18);
    line-height: 1;
}
.review-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold-grad);
    transition: height 0.4s ease;
}
.review-card:hover::after { height: 100%; }
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -16px rgba(44,36,22,0.18);
}
.review-avatar {
    background: var(--gold-grad);
    color: #fff;
}

/* ============================================
   GALLERY — рамка-акцент при наведении
   ============================================ */
.gallery-item {
    border-radius: 3px;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0 solid var(--gold);
    transition: border-width 0.3s ease, background 0.4s ease;
    background: rgba(44,36,22,0);
    pointer-events: none;
}
.gallery-item:hover::after {
    border-width: 6px;
    background: rgba(168,133,74,0.08);
}

/* ============================================
   BRANDS — разделители
   ============================================ */
.brands-title::after {
    content: '';
    display: block;
    width: 50px; height: 1px;
    background: var(--gold);
    margin: 18px auto 0;
}
.brand-item { position: relative; }

/* ============================================
   CTA BANNER — теплее, с виньеткой
   ============================================ */
.cta-banner {
    background:
        radial-gradient(circle at 50% 0%, rgba(201,169,110,0.14), transparent 55%),
        var(--dark);
    position: relative;
}

/* ============================================
   CONTACTS — иконки в кружках
   ============================================ */
.contacts-item { transition: transform 0.3s ease; }
.contacts-item:hover { transform: translateY(-3px); }
.contacts-icon {
    border-radius: 50%;
    transition: all 0.3s ease;
}
.contacts-item:hover .contacts-icon {
    background: var(--gold-grad);
    border-color: transparent;
    color: #fff;
}

/* ============================================
   FOOTER — акцент на соцкнопке
   ============================================ */
.social-btn {
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-btn:hover {
    background: var(--gold-grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}
.footer-links a { transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-links a:hover { padding-left: 6px; }