/* ═══════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Montserrat', sans-serif;
    background: #080808;
    color: #f0f0f0;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
:root {
    --gold:        #c8a96e;
    --gold-light:  #e2c488;
    --gold-dim:    rgba(200,169,110,0.15);
    --bg:          #080808;
    --bg2:         #0f0f0f;
    --bg3:         #141414;
    --bg4:         #1a1a1a;
    --border:      rgba(200,169,110,0.18);
    --text:        #f0f0f0;
    --muted:       rgba(255,255,255,0.62);
}
.container { max-width: 1260px; margin: 0 auto; padding: 0 48px; }
.gold { color: var(--gold); }

/* ═══════════════════════════════════════
   SECTION TRANSITION FADES
═══════════════════════════════════════ */
.s-fade {
    position: absolute; left: 0; right: 0;
    pointer-events: none; z-index: 10;
}
.s-fade--top {
    top: 0; height: 90px;
    background: linear-gradient(to bottom, #080808 0%, transparent 100%);
}
.s-fade--top-light {
    top: 0; height: 90px;
    background: linear-gradient(to bottom, #0f0f0f 0%, transparent 100%);
}
.s-fade--bottom {
    bottom: 0; height: 90px;
    background: linear-gradient(to top, #080808 0%, transparent 100%);
}
.s-fade--bottom-light {
    bottom: 0; height: 90px;
    background: linear-gradient(to top, #0f0f0f 0%, transparent 100%);
}

/* ═══════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════ */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(30px, 3vw, 46px); font-weight: 800; letter-spacing: -1px; }
.section-head--light h2 { color: #fff; }
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .25s, box-shadow .25s, transform .15s;
    min-height: 50px;
}
.btn-gold::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transition: left .5s;
}
.btn-gold:hover::after { left: 100%; }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(200,169,110,.4); transform: translateY(-2px); }
.btn-gold:active { transform: translateY(0); }
.btn-gold--lg { padding: 19px 56px; font-size: 14px; }
.btn-gold--full { width: 100%; text-align: center; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.3);
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: border-color .2s, color .2s;
    min-height: 50px;
    white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(8,8,8,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.header-inner {
    max-width: 1260px; margin: 0 auto; padding: 0 48px;
    height: 68px; display: flex; align-items: center; gap: 20px;
}
.logo { display: flex; align-items: stretch; flex-shrink: 0; }
.logo-sto {
    background: var(--gold); color: #000;
    font-size: 17px; font-weight: 900; letter-spacing: 2px;
    padding: 5px 10px;
}
.logo-name {
    font-size: 17px; font-weight: 900; color: #fff;
    padding: 5px 10px;
    border: 1px solid var(--border); border-left: none;
    letter-spacing: 1px;
}
.logo-icon {
    width: 36px; height: 28px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    padding: 4px;
}
.header-meta { display: none; }
.header-address, .header-hours {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: rgba(255,255,255,.5);
}
.header-nav { display: flex; gap: 18px; margin-left: auto; }
.header-nav a { font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .2s; white-space: nowrap; }
.header-nav a:hover { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.phone-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-bottom: 2px; }
.phone-number { font-size: 13px; font-weight: 700; color: #fff; display: block; transition: color .2s; line-height: 1.4; }
.phone-number:hover { color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LANG TOGGLE ── */
.lang-toggle {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,110,0.28);
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 4px;
}
.lang-indicator {
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background: var(--gold);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}
.lang-btn {
    position: relative; z-index: 1;
    padding: 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    background: none; border: none; cursor: pointer;
    transition: color 0.3s;
    min-width: 44px;
}
.lang-btn.active { color: #000; }
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker-wrap {
    margin-top: 68px;
    background: var(--gold);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-block;
    animation: ticker 35s linear infinite;
}
.ticker-inner span {
    display: inline-block;
    font-size: 10px; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: #000; padding: 0 28px;
}
.ticker-inner .dot { padding: 0 6px; opacity: .4; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: 100% center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
    z-index: 0;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(4,4,4,.97)  0%,
            rgba(4,4,4,.82)  40%,
            rgba(4,4,4,.45)  65%,
            rgba(4,4,4,.15)  100%),
        linear-gradient(to top, #0f0f0f 0%, rgba(4,4,4,0) 38%),
        linear-gradient(to bottom, #080808 0%, rgba(4,4,4,0) 18%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 0 0 120px;
    max-width: 640px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 28px;
}
.eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title {
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 900; line-height: 1.05;
    color: #fff; letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; font-weight: 800; }
.hero-sub {
    font-size: 16px; font-weight: 400; line-height: 1.75;
    color: rgba(255,255,255,.75); margin-bottom: 44px;
}
.hero-cta-row { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: nowrap; }
.hero-note { font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: .3px; }

/* AUTO.RIA badge в герое */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}
.hero-trust-divider {
    width: 36px; height: 1px;
    background: rgba(200,169,110,0.35);
    flex-shrink: 0;
}
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 14px;
    background: rgba(200,169,110,0.06);
    border: 1px solid rgba(200,169,110,0.22);
    backdrop-filter: blur(4px);
}
.htb-icon { flex-shrink: 0; display: flex; }
.htb-text { display: flex; flex-direction: column; gap: 1px; }
.htb-main {
    font-size: 9px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.htb-brand {
    font-size: 15px; font-weight: 900;
    color: var(--gold); letter-spacing: 1px;
    line-height: 1;
}
.htb-dot { color: var(--gold-light); opacity: 0.7; }
.hero-scroll-hint {
    position: absolute; bottom: 40px; right: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-hint span {
    font-size: 9px; font-weight: 700; letter-spacing: 3px;
    color: rgba(255,255,255,.3); text-transform: uppercase;
    writing-mode: vertical-rl; transform: rotate(180deg);
}
@keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
    padding: 120px 0;
    background: var(--bg2);
    position: relative; overflow: hidden;
}
.services-bg {
    position: absolute; inset: -40px; z-index: 0;
    background-size: cover; background-position: center 30%;
    filter: blur(22px);
    transform: scale(1.06);
}
.services-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to bottom, #080808 0%, rgba(4,4,4,.88) 8%, rgba(4,4,4,.88) 85%, #080808 100%),
        radial-gradient(ellipse 70% 60% at 5% 90%, rgba(200,169,110,0.06) 0%, transparent 100%),
        radial-gradient(ellipse 50% 40% at 95% 10%, rgba(200,169,110,0.04) 0%, transparent 100%);
}
.services .container { position: relative; z-index: 2; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.svc-card {
    background: var(--bg3);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 2px solid transparent;
    transition: background .3s, border-top-color .3s, transform .3s, box-shadow .3s;
}
.svc-card:hover {
    background: var(--bg4);
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.svc-num {
    font-size: 56px; font-weight: 900;
    color: rgba(200,169,110,.08); line-height: 1;
    position: absolute; top: 20px; right: 28px;
    letter-spacing: -2px;
}
.svc-icon { width: 52px; height: 52px; margin-bottom: 24px; }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.svc-price { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: .5px; }
.svc-card:nth-child(7) {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 44px;
}
.svc-card:nth-child(7) .svc-num {
    position: static;
    font-size: 72px;
    flex-shrink: 0;
    line-height: 1;
}
.svc-card:nth-child(7) .svc-icon { flex-shrink: 0; margin-bottom: 0; }
.svc-card:nth-child(7) .svc-content { flex: 1; }
.svc-card:nth-child(7) h3 { font-size: 20px; margin-bottom: 8px; }
.svc-card:nth-child(7) p { margin-bottom: 0; }
.svc-card:nth-child(7) .svc-price {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 16px;
    padding: 14px 32px;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.25);
    white-space: nowrap;
}

.services-cta { text-align: center; }
.services-cta p { margin-top: 18px; font-size: 13px; color: var(--muted); }
.services-cta a { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process { padding: 80px 0 80px; background: var(--bg); position: relative; overflow: hidden; }
.process-bg {
    position: absolute; inset: -40px; z-index: 0;
    background-size: cover; background-position: center;
    filter: blur(22px);
    transform: scale(1.06);
}
.process-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(5,5,5,0.80);
}
.process::before {
    content: '';
    display: none;
    position: absolute; top: 50%; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    transform: translateY(-50%);
    z-index: 2;
}
.process .section-head { margin-bottom: 32px; }
.process-table {
    position: relative; z-index: 3;
    margin-left: -48px;
    margin-right: -48px;
    padding-left: 48px;
    padding-right: 48px;
    border-top: 1px solid rgba(200,169,110,0.18);
    border-bottom: 1px solid rgba(200,169,110,0.18);
}
.pt-row {
    display: grid;
    grid-template-columns: 64px 56px 200px 1fr 120px;
    align-items: center;
    gap: 0 28px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(200,169,110,0.18);
    transition: background .25s;
    cursor: default;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: rgba(200,169,110,0.04); }
.pt-num {
    font-size: 32px; font-weight: 800;
    color: var(--gold); opacity: .45; line-height: 1;
    font-family: inherit;
}
.pt-icon {
    width: 44px; height: 44px;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pt-icon svg { width: 24px; height: 24px; }
.pt-title {
    font-size: 17px; font-weight: 700; color: #fff;
}
.pt-desc {
    font-size: 14px; color: var(--muted); line-height: 1.65;
}
.pt-badge {
    display: flex; align-items: center; justify-content: center;
    width: 100px; height: 30px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--gold); text-transform: uppercase;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.25);
    white-space: nowrap;
    justify-self: end;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery { padding: 56px 0 0; background: var(--bg2); position: relative; overflow: hidden; }
.gallery .container { margin-bottom: 56px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 240px 280px;
    gap: 4px;
}
/* Бенто-раскладка 8 фото */
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }      /* широкое */
.gallery-item:nth-child(2) { grid-column: 3 / 4; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 3; }  /* высокое */
.gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 3 / 4; grid-row: 2; }
.gallery-item:nth-child(7) { grid-column: 1 / 3; grid-row: 3; }      /* широкое */
.gallery-item:nth-child(8) { grid-column: 3 / 5; grid-row: 3; }      /* широкое */

.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s;
    filter: brightness(.82) saturate(.8);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 20px 22px;
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-size: 12px; font-weight: 600; letter-spacing: .5px; color: #fff;
    border-left: 2px solid var(--gold); padding-left: 10px;
}

/* ═══════════════════════════════════════
   WHY US (PARALLAX)
═══════════════════════════════════════ */
.whyus { position: relative; padding: 140px 0; overflow: hidden; }
.whyus-bg {
    position: absolute; inset: -60px;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.whyus-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to bottom,
            #080808 0%,
            rgba(6,6,6,.84) 14%,
            rgba(6,6,6,.84) 86%,
            #080808 100%);
}
.whyus .container { position: relative; z-index: 2; }
.process .container { position: relative; z-index: 3; }
.stats .container { position: relative; z-index: 2; }
.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.why-card {
    background: rgba(10,10,10,.85);
    padding: 44px 32px;
    text-align: center;
    transition: background .3s;
    backdrop-filter: blur(4px);
}
.why-card:hover { background: rgba(20,20,20,.9); }
.why-icon { width: 48px; height: 48px; margin: 0 auto 22px; }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
    padding: 80px 0; background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.stats-bg {
    position: absolute; inset: -40px; z-index: 0;
    background-size: cover; background-position: center 30%;
    filter: blur(24px);
    transform: scale(1.06);
}
.stats-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(5,5,5,0.82);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    divide: 1px solid var(--border);
    position: relative; z-index: 2;
}
.stat {
    text-align: center; padding: 40px 20px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
}
.stat:last-child { border-right: none; }
.stat-val {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900; color: var(--gold);
    line-height: 1; letter-spacing: -3px;
    display: inline-block;
}
.stat-plus { font-size: 28px; font-weight: 900; color: var(--gold); margin-top: 4px; }
.stat-label { font-size: 13px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 10px; }
.stat-val-wrap { display: flex; align-items: baseline; gap: 2px; }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews { padding: 120px 0; background: var(--bg2); position: relative; overflow: hidden; }
.reviews-bg {
    position: absolute; inset: -40px; z-index: 0;
    background-size: cover; background-position: center top;
    filter: blur(26px);
    transform: scale(1.06);
}
.reviews-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(8,8,8,0.82);
}
.reviews .container { position: relative; z-index: 2; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 2px; }
.review-card {
    background: var(--bg3);
    padding: 40px 36px;
    border: 1px solid var(--border);
    transition: border-color .3s;
    position: relative;
}
.review-card:hover { border-color: var(--gold); }
.review-card--featured {
    background: var(--bg4);
    border-color: rgba(200,169,110,.35);
    transform: translateY(-12px);
}
.review-quote {
    font-size: 72px; line-height: .8;
    color: var(--gold); opacity: .15;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.review-card p { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 48px; height: 48px; flex-shrink: 0;
    border: 2px solid var(--gold);
    overflow: hidden;
    border-radius: 50%;
}
.review-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%) brightness(0.95);
}
.review-author strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.review-author span { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; }
.cta-banner-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%;
    z-index: 0;
}
.cta-banner-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to bottom,
            #0f0f0f 0%,
            rgba(4,4,4,.80) 16%,
            rgba(4,4,4,.80) 84%,
            #080808 100%);
}
.cta-banner-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-banner-content h2 {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 800; line-height: 1.2;
    color: #fff; margin-bottom: 20px; margin-top: 16px;
    letter-spacing: -1px;
}
.cta-banner-content p { font-size: 15px; color: var(--muted); margin-bottom: 40px; }

/* ═══════════════════════════════════════
   CONTACTS
═══════════════════════════════════════ */
.contacts {
    padding: 90px 0 100px;
    background: var(--bg);
    position: relative; overflow: hidden;
}
.contacts-bg {
    position: absolute; inset: -40px; z-index: 0;
    background-size: cover; background-position: center 40%;
    filter: blur(26px);
    transform: scale(1.06);
}
.contacts-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(4,4,4,.93) 0%, rgba(8,8,8,.88) 50%, rgba(4,4,4,.93) 100%);
}
.contacts-decor {
    position: absolute; right: -30px; top: 50%;
    transform: translateY(-50%);
    font-size: clamp(100px, 13vw, 190px);
    font-weight: 900; letter-spacing: -8px; line-height: 1;
    color: rgba(200,169,110,0.045);
    z-index: 2; pointer-events: none; user-select: none;
}
.contacts .container { position: relative; z-index: 3; }
.contacts-head { text-align: center; margin-bottom: 56px; }
.contacts-head .section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contacts-head h2 { font-size: clamp(30px, 3vw, 46px); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.contacts-head-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}
.contacts-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; align-items: center; }
.contacts-info { display: flex; flex-direction: column; }
.ci {
    display: flex; align-items: center; gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
    position: relative;
}
.ci:first-child { border-top: 1px solid rgba(200,169,110,0.12); }
.ci-accent {
    position: absolute; left: -24px; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 28px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 2px;
}
.ci-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.25);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, border-color .3s;
}
.ci:hover .ci-icon { background: rgba(200,169,110,0.15); border-color: var(--gold); }
.ci-icon svg { width: 24px; height: 24px; }
.ci-text {}
.ci-label { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.ci-val { font-size: 18px; font-weight: 600; color: #fff; }
.ci-link { transition: color .2s; }
.ci-link:hover { color: var(--gold); }
.contacts-info .btn-gold { margin-top: 32px; }
.contacts-visual { position: relative; height: 500px; display: flex; flex-direction: column; }
.contacts-map-wrap {
    width: 100%;
    height: calc(100% - 56px);
    overflow: hidden;
    border: 1px solid rgba(200,169,110,0.3);
    box-shadow: 0 0 40px rgba(200,169,110,0.08), 0 0 80px rgba(0,0,0,0.6);
    position: relative;
}
.contacts-map-wrap::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.4);
    pointer-events: none;
}
.contacts-map-bottom {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 15px 0 0;
}
.contacts-badge {
    display: inline-block;
    background: var(--gold); color: #000;
    font-size: 10px; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; padding: 8px 16px;
}
.contacts-map-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--gold);
    letter-spacing: 0.3px; transition: opacity .2s;
}
.contacts-map-link:hover { opacity: .75; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--bg); }

.footer-top {
    border-top: 1px solid var(--border);
    padding: 64px 0 56px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 60px;
}

/* Колонка бренда */
.footer-col--brand .logo { margin-bottom: 20px; }
.footer-tagline {
    font-size: 13px; color: var(--muted);
    line-height: 1.8; margin-bottom: 24px;
    max-width: 300px;
}
.footer-autoria {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    background: rgba(200,169,110,0.07);
    border: 1px solid rgba(200,169,110,0.22);
    font-size: 12px; color: rgba(255,255,255,0.75);
}
.footer-autoria strong { color: var(--gold); font-weight: 800; }

/* Заголовки колонок */
.footer-col-title {
    font-size: 10px; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

/* Контакты */
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px; color: var(--muted);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item div { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-item a {
    color: rgba(255,255,255,0.85); font-weight: 600;
    font-size: 14px; transition: color .2s; display: block;
}
.footer-contact-item a:hover { color: var(--gold); }

/* Навигация */
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col a {
    font-size: 13px; font-weight: 500;
    color: var(--muted); transition: color .2s, padding-left .2s;
    display: flex; align-items: center; gap: 8px;
}
.footer-nav-col a::before {
    content: '';
    display: block; width: 0; height: 1px;
    background: var(--gold);
    transition: width .25s;
    flex-shrink: 0;
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-nav-col a:hover::before { width: 12px; }

/* Нижняя полоса */
.footer-bottom {
    border-top: 1px solid rgba(200,169,110,0.1);
    padding: 20px 0;
    background: rgba(0,0,0,0.3);
}
.footer-bottom-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-partner {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: rgba(255,255,255,.5);
}
.footer-bottom-partner strong { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-wrap {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.88);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(6px);
}
.modal-wrap.open { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 52px 48px;
    max-width: 480px; width: 94%;
    position: relative;
    transform: translateY(28px) scale(.97);
    transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.modal-wrap.open .modal-box { transform: none; }
.modal-close {
    position: absolute; top: 18px; right: 18px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.6); transition: color .2s;
    padding: 6px;
}
.modal-close:hover { color: var(--gold); }
.modal-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-box h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.modal-box p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.modal-box form { display: flex; flex-direction: column; gap: 12px; }
.modal-box input,
.modal-box select {
    background: var(--bg4);
    border: 1px solid var(--border);
    color: #fff;
    padding: 15px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
    appearance: none;
    min-height: 52px;
}
.modal-box input:focus,
.modal-box select:focus { border-color: var(--gold); }
.modal-box input::placeholder,
.modal-box select { color: var(--muted); }
.modal-box select option { background: var(--bg3); color: #fff; }

/* ═══════════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════════ */
.mobile-cta-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
    background: rgba(5,5,5,0.98);
    border-top: 1px solid rgba(200,169,110,0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 8px;
}

/* Звонок */
.mobile-cta-bar .mcta-call {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(200,169,110,0.07);
    border: 1px solid rgba(200,169,110,0.28);
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
}
.mobile-cta-bar .mcta-call:active { background: rgba(200,169,110,0.15); }
.mcta-call-inner {
    display: flex; flex-direction: column; gap: 1px;
}
.mcta-call-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(200,169,110,0.6);
    line-height: 1;
}
.mcta-call-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Записаться */
.mobile-cta-bar .mcta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    transition: background .2s;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-appearance: none;
    appearance: none;
    text-decoration: none;
}
.mobile-cta-bar .mcta-book:active { background: var(--gold-light); }
@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 72px; }
}

/* ═══════════════════════════════════════
   SCROLL TOP
═══════════════════════════════════════ */
.scroll-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 100;
    width: 44px; height: 44px;
    background: var(--gold); color: #000;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .2s;
    transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: none; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .container { padding: 0 32px; }
    .header-inner { padding: 0 32px; gap: 20px; }
    .hero-content { padding-left: 64px; }
    .hero-scroll-hint { right: 32px; left: auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .whyus-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        grid-auto-rows: 240px;
    }
    .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col--brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
    /* ── БАЗОВОЕ ── */
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; }
    .header-meta, .header-nav, .header-right { display: none; }
    .burger { display: flex; margin-left: auto; }

    /* ── HERO ── */
    .hero { min-height: 100svh; align-items: flex-start; }
    .hero-bg { background-position: center center; }
    .hero-overlay {
        background:
            linear-gradient(to bottom, rgba(4,4,4,.92) 0%, rgba(4,4,4,.72) 55%, rgba(4,4,4,.95) 100%);
    }
    .hero-content {
        padding: 126px 16px 48px; /* 68px header + 38px ticker + 20px отступ */
        max-width: 100%;
    }
    .hero-title { font-size: clamp(34px, 10vw, 52px); letter-spacing: -1.5px; margin-bottom: 16px; }
    .hero-sub { font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
    .hero-cta-row { flex-direction: column; gap: 10px; margin-bottom: 14px; }
    .hero-cta-row .btn-gold,
    .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
    .hero-note { font-size: 12px; }
    .hero-trust { margin-top: 20px; }
    .hero-trust-badge { padding: 8px 14px; }
    .htb-brand { font-size: 13px; }
    .hero-scroll-hint { display: none; }

    /* ── SECTION HEADS ── */
    .section-head { margin-bottom: 36px; }

    /* ── SERVICES ── */
    .services { padding: 56px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .svc-card { padding: 28px 20px; }
    /* 7-я карточка — вертикальная на мобильном */
    .svc-card:nth-child(7) {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 28px 20px;
    }
    .svc-card:nth-child(7) .svc-num {
        position: absolute; top: 16px; right: 16px;
        font-size: 52px;
    }
    .svc-card:nth-child(7) .svc-price {
        margin-left: 0;
        align-self: flex-start;
        padding: 10px 20px;
        font-size: 14px;
    }
    .services-cta p { font-size: 12px; }

    /* ── PROCESS ── */
    .process { padding: 56px 0; }
    .pt-row {
        grid-template-columns: 36px 40px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 10px;
        padding: 18px 0;
    }
    .pt-badge { display: none; }
    .pt-desc { grid-column: 1 / -1; font-size: 13px; }
    .pt-title { font-size: 15px; }
    .pt-num { font-size: 26px; }

    /* ── GALLERY ── */
    .gallery { padding: 48px 0 0; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 3px;
    }
    .gallery-item { height: 180px; }
    .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
    /* Подписи всегда видны на touch-устройствах */
    .gallery-overlay { opacity: 1; }
    .gallery-item img { filter: brightness(0.68) saturate(0.8); }

    /* ── WHY US ── */
    .whyus { padding: 60px 0; }
    .whyus-bg { background-attachment: scroll; }
    .whyus-grid { grid-template-columns: 1fr 1fr; }
    .why-card { padding: 28px 16px; }
    .why-card h3 { font-size: 14px; }
    .why-card p { font-size: 13px; }

    /* ── STATS ── */
    .stats { padding: 48px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 24px 10px; }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--border); }
    .stat-label { font-size: 11px; letter-spacing: 0.5px; }

    /* ── REVIEWS ── */
    .reviews { padding: 60px 0; }
    .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
    .review-card { padding: 28px 20px; }
    .review-card--featured { transform: none; }

    /* ── CTA BANNER ── */
    .cta-banner { padding: 60px 0; }
    .cta-banner-content h2 { font-size: clamp(22px, 7vw, 32px); letter-spacing: -0.5px; }
    .cta-banner-content p { font-size: 14px; margin-bottom: 28px; }

    /* ── CONTACTS ── */
    .contacts { padding: 56px 0 80px; }
    .contacts-grid { grid-template-columns: 1fr; gap: 32px; }
    .contacts-visual { height: 260px; }
    .contacts-decor { display: none; }
    .ci { padding: 18px 0; gap: 16px; }
    .ci-icon { width: 44px; height: 44px; }
    .ci-val { font-size: 15px; }
    .contacts-info { padding-left: 0 !important; }
    .ci-accent { display: none; }

    /* ── FOOTER ── */
    .footer-top { padding: 40px 0 32px; }
    .footer-cols { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }

    /* ── МОДАЛКА — снизу как шторка ── */
    .modal-wrap { align-items: flex-end; }
    .modal-box {
        max-width: 100%;
        width: 100%;
        border-left: none; border-right: none; border-bottom: none;
        padding: 28px 20px 44px;
        max-height: 92vh;
        overflow-y: auto;
        transform: translateY(100%);
        border-radius: 0;
    }
    .modal-wrap.open .modal-box { transform: translateY(0); }
    .modal-box h3 { font-size: 22px; }
    .modal-box p { font-size: 13px; margin-bottom: 24px; }
    .modal-box form { gap: 10px; }

    /* ── МОБИЛЬНОЕ МЕНЮ ── */
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0; right: 0;
        background: rgba(4,4,4,0.98);
        padding: 20px 16px 28px;
        gap: 4px;
        z-index: 9000;
        border-top: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }
    .header-nav.open a {
        font-size: 15px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(200,169,110,0.1);
        display: block;
    }
    .header-nav.open a:last-child { border-bottom: none; }

    /* ── КНОПКА НАВЕРХ ── */
    .scroll-top { bottom: 88px; right: 14px; width: 40px; height: 40px; }

    /* ── MOBILE CTA BAR ── */
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 80px; }
}
