*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
    --orange:       #f07010;
    --orange-bright:#ff8c1a;
    --orange-dark:  #c05a00;
    --black:        #0d0d0d;
    --dark:         #141414;
    --dark2:        #1c1c1c;
    --dark3:        #232323;
    --white:        #ffffff;
    --muted:        #aaaaaa;
    --border:       rgba(255,255,255,0.07);
    --radius:       6px;
    --transition:   0.3s ease;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --font-geo:     'Noto Sans Georgian', sans-serif;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-geo);
    line-height: 1.6;
    overflow-x: hidden;
}

body.lang-en, body.lang-ru {
    font-family: var(--font-body);
}

body.lang-en h1, body.lang-en h2, body.lang-en h3,
body.lang-en .hero-badge, body.lang-en nav a,
body.lang-en .mobile-nav a, body.lang-en .btn-primary,
body.lang-en .btn-secondary, body.lang-en .section-label,
body.lang-en .stat-label, body.lang-en .service-tag,
body.lang-en .float-call,
body.lang-ru h1, body.lang-ru h2, body.lang-ru h3,
body.lang-ru .hero-badge, body.lang-ru nav a,
body.lang-ru .mobile-nav a, body.lang-ru .btn-primary,
body.lang-ru .btn-secondary, body.lang-ru .section-label,
body.lang-ru .stat-label, body.lang-ru .service-tag,
body.lang-ru .float-call {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== HEADER ===== */
header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px; height: 70px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hero-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.hero-logo {
    width: min(45vw, 520px);
    opacity: 0.85;
    filter: brightness(1.2);
    transform: translateX(35%);
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.header-right { display: flex; align-items: center; gap: 10px; }

nav { display: flex; gap: 4px; align-items: center; }

nav a {
    font-family: var(--font-display);
    font-weight: 600; font-size: 0.92rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 8px 13px; border-radius: var(--radius);
    color: var(--muted);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-cta {
    font-weight: 700 !important;
    padding: 10px 18px !important;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    color: var(--white) !important;
    border-radius: var(--radius);
    transition: opacity var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex; align-items: center; gap: 2px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 2px);
    padding: 4px; flex-shrink: 0;
}

.lang-btn {
    display: flex; align-items: center; gap: 5px;
    font-family: var(--font-display);
    font-weight: 700; font-size: 0.75rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 9px; border-radius: var(--radius);
    border: none; background: transparent;
    color: var(--muted); cursor: pointer;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.lang-btn .flag { width: 1vw; }
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.lang-btn.active {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; border: none;
    background: none; flex-shrink: 0;
}
.hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none; flex-direction: column; gap: 4px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border);
    background: rgba(13,13,13,0.98);
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-display);
    font-weight: 600; font-size: 1.1rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 12px 16px; border-radius: var(--radius);
    color: var(--muted);
    transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.mobile-lang-row {
    display: flex; gap: 6px;
    padding: 10px 16px 4px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

/* ===== HERO ===== */
#home {
    position: relative;
    min-height: calc(100svh - 70px);
    display: flex; align-items: center; overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200,80,0,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(240,112,16,0.08) 0%, transparent 60%),
    var(--black);
}
.hero-bg::after {
    content: ''; position: absolute;
    top: 0; right: -10%; width: 55%; height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(240,112,16,0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px
    );
}

.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 24px; width: 100%;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(240,112,16,0.12);
    border: 1px solid rgba(240,112,16,0.3);
    border-radius: 100px; padding: 6px 16px;
    font-weight: 600; font-size: 0.85rem;
    color: var(--orange-bright); margin-bottom: 28px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
    font-family: var(--font-geo);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    max-width: 800px;
}
body.lang-en h1, body.lang-ru h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

h1 .accent {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 60%, #ffb347 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 44px; line-height: 1.75; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1rem;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    color: var(--white); border-radius: var(--radius);
    border: none; cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 24px rgba(240,112,16,0.3);
    white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,112,16,0.45); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 0.95rem;
    padding: 14px 26px; background: transparent; color: var(--white);
    border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer; transition: background var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

.hero-stats {
    display: flex; flex-wrap: wrap; gap: 40px;
    margin-top: 64px; padding-top: 48px;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-family: var(--font-display); font-weight: 900; font-size: 2.5rem; line-height: 1;
    padding: 8px 0;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ===== SHARED SECTION STYLES ===== */
#benefits { background: var(--dark); padding: 96px 24px; }
#services { padding: 96px 24px; background: var(--black); }
#contact { background: var(--dark); padding: 96px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.interior {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16/7
}

.interior img{
    width: 100inh !important;
}

/* ===== GALLERY ===== */
#gallery { padding: 96px 24px; background: var(--black); }
.gallery-intro { color: var(--muted); font-size: 1rem; max-width: 600px; margin-bottom: 48px; line-height: 1.7; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 10px;
}
.gallery-item {
    overflow: hidden; border-radius: var(--radius);
    position: relative; cursor: pointer;
    background: var(--dark2);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.1); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(240,112,16,0) 60%, rgba(240,112,16,0.15) 100%);
    opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Grid layout */
.gi-1  { grid-column: 1 / 7;  grid-row: 2; aspect-ratio: 4/3; }
.gi-2  { grid-column: 7 / 13; grid-row: 2; aspect-ratio: 4/3; }
.gi-3  { grid-column: 1 / 5;  grid-row: 3; aspect-ratio: 4/3; }
.gi-4  { grid-column: 5 / 9;  grid-row: 3; aspect-ratio: 4/3; }
.gi-5  { grid-column: 9 / 13; grid-row: 3; aspect-ratio: 4/3; }
.gi-6  { grid-column: 1 / 5;  grid-row: 4; aspect-ratio: 4/3; }
.gi-7  { grid-column: 5 / 9;  grid-row: 4; aspect-ratio: 4/3; }
.gi-8  { grid-column: 9 / 13; grid-row: 4; aspect-ratio: 4/3; }
.gi-9  { grid-column: 1 / 7;  grid-row: 5; aspect-ratio: 16/7; }
.gi-10 { grid-column: 7 / 13; grid-row: 5; aspect-ratio: 16/7; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 0 60px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; cursor: pointer; color: var(--muted); transition: color var(--transition); line-height: 1; background: none; border: none; }
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; cursor: pointer; color: var(--muted); transition: color var(--transition); background: none; border: none; padding: 12px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--orange-bright); }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--muted); font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.1em; }

.section-label {
    font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--orange-bright); margin-bottom: 12px;
    display: block;
}

h2 {
    font-family: var(--font-geo); font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15; margin-bottom: 56px;
}
body.lang-en h2, body.lang-ru h2 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05; letter-spacing: -0.01em; text-transform: uppercase;
}

.hl {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Benefits */
.benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px; background: var(--border);
    border-radius: calc(var(--radius) + 2px); overflow: hidden;
}
.benefit-card {
    background: var(--dark2); padding: 40px 32px;
    transition: background var(--transition);
    position: relative; overflow: hidden; cursor: pointer;
}
.benefit-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange-bright));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.benefit-card:hover { background: var(--dark3); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.benefit-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

body.lang-en .benefit-card h3,
body.lang-ru .benefit-card h3 {
    font-family: var(--font-display); font-size: 1.25rem;
    letter-spacing: 0.02em; text-transform: uppercase;
}

/* Services */
/* ===== SERVICES ===== */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; }
    .service-card {
      background: var(--dark2); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .service-card:hover { transform: translateY(-4px); border-color: rgba(240,112,16,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
    .service-img-wrap { position: relative; height: 200px; overflow: hidden; }
    .service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .service-card:hover .service-img-wrap img { transform: scale(1.07); }
    .service-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(28,28,28,1) 0%, transparent 100%); }
    .service-num { position: absolute; top: 12px; right: 16px; z-index: 1; font-family: var(--font-display); font-weight: 900; font-size: 2.5rem; color: rgba(255,255,255,0.5); letter-spacing: -0.04em; line-height: 1; }
    .service-body { padding: 24px 28px 28px; position: relative; } .service-body:nth-child(2) { height: 100%; }
    .service-body::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--orange-dark), var(--orange-bright)); opacity: 0; transition: opacity var(--transition); }
    .service-card:hover .service-body::before { opacity: 1; }
    .service-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
    .service-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
    body.lang-en .service-card h3, body.lang-ru .service-card h3 { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em; }
    .service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
    .service-tag { display: inline-block; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.06em; padding: 3px 11px; background: rgba(240,112,16,0.1); border: 1px solid rgba(240,112,16,0.2); border-radius: 100px; color: var(--orange-bright); }
/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block h3 {
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em;
    color: var(--orange-bright); margin-bottom: 10px; display: block;
}
body.lang-en .contact-block h3, body.lang-ru .contact-block h3 { font-family: var(--font-display); text-transform: uppercase; }
.contact-block p, .contact-block a { font-size: 1rem; color: var(--white); line-height: 1.6; }
.contact-block a { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; transition: color var(--transition); }
.contact-block a:hover { color: var(--orange-bright); }
.hours-list { list-style: none; }
.hours-list li {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; color: var(--muted);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { color: var(--white); font-weight: 500; }
.map-wrap {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(80%) contrast(1.1); }

/* Footer */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: space-between; align-items: center;
}
.footer-inner p { color: var(--muted); font-size: 0.88rem; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-logo span {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Float call */
.float-call {
    display: none; position: fixed; bottom: 24px; right: 20px; z-index: 999;
    align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
    color: var(--white); border-radius: 100px;
    box-shadow: 0 4px 24px rgba(240,112,16,0.45);
    animation: float-pulse 3s ease-in-out infinite;
}
@keyframes float-pulse {
    0%,100%{box-shadow:0 4px 24px rgba(240,112,16,0.45)}
    50%{box-shadow:0 8px 36px rgba(240,112,16,0.65)}
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(240,112,16,0.4), transparent); }

/* ─── COOKIE BANNER ─── */
.cookie {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 300px;
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255,106,0,0.3);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px var(--orange-glow);
    display: none;
    z-index: 1000;
    animation: slideUp 0.4s ease;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cookie-icon {
    font-size: 18px;
}

.cookie-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
}

.cookie p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.accept {
    flex: 1;
    background: var(--orange);
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.accept:hover {
    background: var(--orange-dark);
}

.decline {
    flex: 1;
    background: transparent;
    color: var(--gray);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.decline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1700px) {
    .hero-logo-wrap {
        opacity: 0;
        visibility: hidden;
    }
}
@media (max-width: 1024px) {
    .gi-1  { grid-column: 1 / 7; }
    .gi-2  { grid-column: 7 / 13; }
    .gi-3  { grid-column: 1 / 7; grid-row: 2; }
    .gi-4  { grid-column: 7 / 13; grid-row: 2; }
    .gi-5  { grid-column: 1 / 7; grid-row: 3; }
    .gi-6  { grid-column: 7 / 13; grid-row: 3; }
    .gi-7  { grid-column: 1 / 7; grid-row: 4; }
    .gi-8  { grid-column: 7 / 13; grid-row: 4; }
    .gi-9  { grid-column: 1 / 7; grid-row: 5; }
    .gi-10 { grid-column: 7 / 13; grid-row: 5; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
}
@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; }
    .map-wrap { height: 280px; }
}
@media (max-width: 900px) {
    .lang-btn .flag { width: 2vw; }
    .cookie {
        left: 16px;
        right: 16px;
        width: auto;
        bottom: 16px;
    }
}
@media (max-width: 700px) {
    .lang-btn .flag { width: 4vw; }
    nav { display: none; }
    .hamburger { display: flex; }
    .float-call { display: flex; }
    .hero-inner { padding: 60px 24px; }
    h1 { font-size: 2.4rem; }
    body.lang-en h1, body.lang-ru h1 { font-size: 2.8rem; }
    .lang-btn .lang-label { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6,.gi-7,.gi-8 { grid-column: span 1 !important; grid-row: auto !important; aspect-ratio: 4/3 !important; }
    .gi-9,.gi-10 { grid-column: span 2 !important; grid-row: auto !important; aspect-ratio: 16/7 !important; }
    .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .lang-btn .flag { width: 5vw; }
    .hero-stats { gap: 24px; }
    .stat-num { font-size: 2rem; }
    .benefit-card, .service-card { padding: 28px 20px; }
    h1 { font-size: 2rem; }
}