/* ლადანი — public site stylesheet (adapted from approved design) */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --border: #e8e8e8;
    --text-dark: #0f0f0f;
    --text-body: #4a4a4a;
    --text-muted: #999999;
    --accent: #28323C;
    --accent-light: #4B545D;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

html[data-theme="dark"] {
    --white: #0f0f0f;
    --off-white: #161616;
    --light-gray: #1a1a1a;
    --border: #2a2a2a;
    --text-dark: #f5f5f5;
    --text-body: #b0b0b0;
    --text-muted: #6a6a6a;
    --accent: #c9a978;
    --accent-light: #d9be8e;
    --bg-primary: #0f0f0f;
    --bg-secondary: #161616;
    --bg-tertiary: #1a1a1a;
}

@font-face {
    font-family: 'Myriad GEO Mtavruli Bold';
    src: url('/assets/images/font-4.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue LT GEO';
    src: url('/assets/images/font-2.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {  }
body {
    font-family: 'Helvetica Neue LT GEO', 'Noto Sans Georgian', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-body);

    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    transition: background 0.4s ease, color 0.4s ease;
}
body.no-snap { position: static; overflow: visible; overflow-x: hidden; overscroll-behavior: auto; height: auto; width: auto; }
html.static-page { overflow: visible; overflow-x: hidden; overscroll-behavior: auto; height: auto; }

.skip-link {
    position: fixed;
    top: -100px; left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: top 0.3s ease;
}
.skip-link:focus { top: 20px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.loader {
    position: fixed; inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
    font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif;
    font-size: 32px; font-weight: 600; letter-spacing: 8px;
    color: var(--text-dark); text-transform: uppercase; margin-bottom: 32px;
    opacity: 0; animation: loaderFadeIn 1s 0.2s ease forwards;
}
.loader-logo-img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    margin-bottom: 32px;
    opacity: 0;
    animation: loaderLogoIn 1s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               loaderLogoPulse 2.4s 1.2s ease-in-out infinite;
}
.loader-bar { width: 200px; height: 1px; background: var(--border); position: relative; overflow: hidden; }
.loader-bar::after {
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0%;
    background: var(--accent); animation: loaderProgress 1.6s ease-in-out forwards;
}
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loaderLogoIn {
    from { opacity: 0; transform: scale(0.82) translateY(14px); filter: drop-shadow(0 0 0 rgba(139, 111, 71, 0)); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: drop-shadow(0 4px 16px rgba(139, 111, 71, 0.3)); }
}
@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 14px rgba(139, 111, 71, 0.22)); }
    50% { transform: scale(1.045); filter: drop-shadow(0 6px 24px rgba(139, 111, 71, 0.45)); }
}
@keyframes loaderProgress { 0% { width: 0%; } 50% { width: 60%; } 100% { width: 100%; } }

.top-bar { position: fixed; top: 20px; right: 24px; display: flex; gap: 10px; z-index: 500; align-items: center; }
.lang-switch { display: flex; background: var(--bg-primary); border: 1px solid var(--border); }
.lang-btn {
    padding: 9px 14px; font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
    color: var(--text-muted); background: transparent; border: none; cursor: pointer;
    transition: var(--transition-fast); font-family: inherit; text-decoration: none; display: inline-block;
}
.lang-btn:hover { color: var(--text-dark); }
.lang-btn.active { background: var(--text-dark); color: var(--bg-primary); }

.theme-toggle {
    width: 40px; height: 40px; background: var(--bg-primary); border: 1px solid var(--border);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); transition: var(--transition-fast);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 300; transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); width: 0%;
}

.container { display: flex; width: 100%; min-height: 100vh; min-height: 100dvh; }

.sidebar {
    position: fixed; top: 0; left: 0;
    width: 300px; min-width: 300px; height: 100vh; height: 100dvh; background: var(--bg-primary);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 40px 0 28px; border-right: 1px solid var(--border); z-index: 100;
}
.logo { padding: 0 28px; margin-bottom: 52px; display: flex; justify-content: space-around; align-items: center; }
.logo a { display: flex; align-items: center; justify-content: center; width: 100%; text-decoration: none; color: inherit; }
.logo img { width: 120px; height: auto; display: block; }
.logo h1 {
    font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 21px; font-weight: 600;
    letter-spacing: 3px; color: var(--text-dark); line-height: 1; text-transform: uppercase;
}
.logo span { display: block; font-size: 8.5px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin-top: 8px; }

.nav-label {
    font-size: 12px; font-weight: 500; letter-spacing: 2.5px; color: var(--text-muted);
    text-transform: uppercase; padding: 0 28px; margin-bottom: 16px;
}
.nav-links { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 1px; padding: 0 16px; }
.nav-links li a {
    display: flex; align-items: center; gap: 12px; padding: 11px 12px; color: var(--text-body);
    text-decoration: none; font-size: 14.5px; transition: var(--transition-fast); position: relative;
}
.nav-links li a .num { font-size: 12px; font-weight: 500; color: var(--text-muted); min-width: 16px; transition: var(--transition-fast); }
.nav-links li a:hover { color: var(--text-dark); background: var(--light-gray); }
.nav-links li a:hover .num { color: var(--accent); }
.nav-links li a.active { color: var(--text-dark); font-weight: 500; }
.nav-links li a.active .num { color: var(--accent); }
.nav-links li a.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 2px; height: 55%; background: var(--accent);
}

.sidebar-footer { padding: 24px 0 0; border-top: 1px solid var(--border); margin: 0 16px; font-size: 14px; color: var(--text-muted); line-height: 1.9; }
.sidebar-footer .sf-item { display: flex; align-items: center; gap: 8px; }
.sidebar-footer .sf-item span:first-child { opacity: 0.5; min-width: 10px; }
.sidebar-footer .sf-item a { color: inherit; text-decoration: none; }

.social-links { display: flex; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
    text-decoration: none;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

.main-content { margin-left: 300px; width: calc(100% - 300px); position: relative; background: var(--bg-primary); }
.section {
    position: relative; width: 100%;
    display: flex; align-items: center; justify-content: center; padding: 48px 90px;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section.in-view { opacity: 1; transform: translateY(0); }

.section#services { background-image: repeating-linear-gradient(45deg, rgba(139, 111, 71, 0.02) 0px, rgba(139, 111, 71, 0.02) 1px, transparent 1px, transparent 20px); }
.section#about { background-image: radial-gradient(circle, rgba(139, 111, 71, 0.05) 1px, transparent 1px); background-size: 24px 24px; }
.section#why-us { background-image: radial-gradient(circle at 95% 10%, rgba(139, 111, 71, 0.05) 0%, transparent 45%), radial-gradient(circle at 5% 95%, rgba(139, 111, 71, 0.04) 0%, transparent 40%); }
.section#projects, .section#ongoing { background-image: linear-gradient(rgba(139, 111, 71, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 111, 71, 0.02) 1px, transparent 1px); background-size: 60px 60px, 60px 60px; }
.section#blog { background-image: radial-gradient(circle, rgba(139, 111, 71, 0.04) 1px, transparent 1px); background-size: 30px 30px; }
.section#contact { background-image: linear-gradient(rgba(139, 111, 71, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 111, 71, 0.03) 1px, transparent 1px); background-size: 32px 32px, 32px 32px; }
.section > * { position: relative; z-index: 1; }

.section#home { padding: 0; opacity: 1; transform: translateY(0); min-height: 100vh; min-height: 100dvh; }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-video-wrap video, .hero-video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.55) 100%);
    z-index: 1;
}
html[data-theme="dark"] .hero-video-overlay { background: linear-gradient(90deg, rgba(15,15,15,0.96) 0%, rgba(15,15,15,0.85) 45%, rgba(15,15,15,0.55) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px; align-items: center; width: 100%; max-width: 1200px; padding: 70px 0; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 32px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.hero-content h2 { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 54px; font-weight: 500; line-height: 1.2; margin-bottom: 26px; color: var(--text-dark); letter-spacing: -1px; }
.hero-content h2 em { color: var(--accent); font-weight: 500; font-style: normal; font-family: Michroma; }
.hero-slide-text p { font-size: 15px; line-height: 1.9; color: var(--text-body); margin-bottom: 38px; max-width: 520px; font-weight: 300; }
.hero-slide-text { transition: opacity 0.4s ease, transform 0.4s ease; }
.hero-slide-text.is-fading { opacity: 0; transform: translateY(8px); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.btn {
    display: inline-flex; align-items: center; gap: 12px; padding: 15px 32px; font-size: 10.5px;
    font-weight: 500; letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
    transition: var(--transition); cursor: pointer; border: none; font-family: inherit;
    position: relative; overflow: hidden;
}
.btn-primary { background: var(--text-dark); color: var(--bg-primary); }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-dark); background: var(--bg-tertiary); }
.btn .arrow { transition: var(--transition-fast); }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-stat .stat-number { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 30px; font-weight: 500; color: var(--text-dark); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.hero-stat .stat-number span { color: var(--accent); font-size: 20px; }
.hero-stat p { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 500; }

.hero-visual { position: relative; height: 500px; }
.hero-image-main { position: absolute; top: 0; right: 0; width: 88%; height: 78%; overflow: hidden; border-radius: 18px; box-shadow: 0 30px 60px rgba(15, 15, 15, 0.15); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }
.hero-visual:hover .hero-image-main img { transform: scale(1.05); }
.hero-image-secondary { position: absolute; bottom: 0; left: 0; width: 55%; height: 42%; overflow: hidden; border: 6px solid var(--bg-primary); border-radius: 14px; box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12); }
.hero-image-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hero-visual:hover .hero-image-secondary img { transform: scale(1.08); }

.section-header { margin-bottom: 44px; }
.section-header .eyebrow, .about-text .eyebrow, .contact-info .eyebrow {
    display: inline-flex; align-items: center; gap: 12px; font-size: 9.5px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.section-header .eyebrow::before, .about-text .eyebrow::before, .contact-info .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.section-header h2, .about-text h2, .contact-info h2 {
    font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 34px; font-weight: 500; margin-bottom: 14px;
    color: var(--text-dark); letter-spacing: -0.5px; line-height: 1.25;
}
.section-header p, .contact-info > p { font-size: 14px; color: var(--text-body); max-width: 540px; line-height: 1.9; font-weight: 300; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; width: 100%; max-width: 1200px; }
.service-card {
    background: var(--bg-primary); border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(15, 15, 15, 0.06); transition: var(--transition);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px rgba(15, 15, 15, 0.14); }
.service-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-photo, .service-icon-wrap { width: 100%; height: 210px; overflow: hidden; background: var(--bg-tertiary); flex-shrink: 0; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover .service-photo img { transform: scale(1.08); }
.service-icon-wrap { display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); }
.service-icon { width: 58px; height: 58px; color: var(--accent); transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 19px; font-weight: 500; margin-bottom: 10px; color: var(--text-dark); line-height: 1.35; }
.service-card p { font-size: 13px; color: var(--text-body); line-height: 1.8; font-weight: 300; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.about-wrapper { display: flex; gap: 64px; align-items: flex-start; max-width: 1200px; width: 100%; }
.about-text { flex: 1.3; }
.about-text p { font-size: 14px; color: var(--text-body); line-height: 2; margin-bottom: 18px; font-weight: 300; }
.about-stats { display: flex; gap: 48px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat .stat-number { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 34px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; letter-spacing: -1px; line-height: 1; }
.stat .stat-number span { color: var(--accent); font-size: 22px; }
.stat p { font-size: 9.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2.5px; margin: 0; font-weight: 500; }
.about-visual { flex: 1; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); height: 440px; }
.visual-block { flex: 1; background: var(--bg-primary); display: flex; align-items: center; justify-content: center; transition: var(--transition); position: relative; overflow: hidden; }
.visual-block:hover { background: var(--bg-secondary); }
.visual-block .vb-num { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 12px; color: var(--accent); letter-spacing: 3px; position: relative; z-index: 2; font-weight: 500; }
.visual-block .vb-text { position: absolute; bottom: 16px; left: 18px; font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); z-index: 2; font-weight: 500; }
.visual-block.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.visual-block.has-photo:hover img { transform: scale(1.05); }
.visual-block.has-photo::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.5) 100%); }
.visual-block.has-photo .vb-num { color: #fff; }
.visual-block.has-photo .vb-text { color: rgba(255,255,255,0.85); }

.service-card .process-meta {
    display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent); padding: 5px 11px; border: 1px solid var(--border); margin-top: auto; align-self: flex-start;
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; width: 100%; max-width: 1250px; }
.gallery-grid-3col { grid-template-columns: repeat(3, 1fr); max-width: 1200px; }
.gallery-item { background: var(--bg-primary); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); cursor: pointer; position: relative; text-decoration: none; display: block; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15, 15, 15, 0.08); border-color: var(--accent); }
.gallery-image { position: relative; width: 100%; height: 200px; overflow: hidden; background: var(--bg-tertiary); }
#homeProjectsGallery .gallery-image { cursor: zoom-in; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }
.gallery-item:hover .gallery-image img { transform: scale(1.08); }
.gi-photo-grid { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.gi-photo-grid.gi-count-2 { grid-template-rows: 1fr; }
.gi-photo-grid.gi-count-3 .gi-tile:first-child { grid-row: span 2; }
.gi-tile { position: relative; overflow: hidden; background: var(--bg-tertiary); }
.gi-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover .gi-tile img { transform: scale(1.08); }
.gi-more { position: absolute; inset: 0; background: rgba(15, 15, 15, 0.6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; }
.gallery-item::after {
    content: '→'; position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-dark);
    opacity: 0; transform: translateX(-10px); transition: var(--transition); z-index: 5;
}
.gallery-item:hover::after { opacity: 1; transform: translateX(0); }
.gallery-item.no-link { cursor: default; }
.gallery-item.no-link::after { display: none; }

.gallery-video-badge {
    position: absolute; top: 14px; right: 14px; z-index: 4;
    width: 34px; height: 34px; border-radius: 50%;
    background: #e0293e; color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(224, 41, 62, 0.45); transition: var(--transition-fast);
}
.gallery-video-badge:hover { transform: scale(1.12); background: #c81f32; }
.gallery-video-badge svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }

.video-modal-overlay {
    position: fixed; inset: 0; z-index: 9700;
    background: rgba(10, 10, 10, 0.92);
    display: flex; align-items: center; justify-content: center; padding: 40px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s;
}
.video-modal-overlay.open { opacity: 1; visibility: visible; }
.video-modal-box { width: 100%; max-width: 900px; aspect-ratio: 16 / 9; background: #000; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.video-modal-box iframe, .video-modal-box video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
    position: absolute; top: -48px; right: 0; width: 40px; height: 40px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); color: #fff;
    font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.video-modal-close:hover { background: rgba(255,255,255,0.18); }
.gallery-status { position: absolute; top: 14px; left: 14px; padding: 5px 12px; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; z-index: 2; background: var(--accent-light); color: #fff; }
.gallery-status.ongoing { background: var(--accent); color: #fff; }
.gallery-status.completed { background: var(--text-dark); color: var(--bg-primary); }
.gallery-body { padding: 22px 24px 26px; }
.gallery-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.gallery-year { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 11px; color: var(--accent); letter-spacing: 2px; font-weight: 500; }
.gallery-location { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.gallery-body h3 { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); line-height: 1.35; }
.gallery-body p { font-size: 12.5px; color: var(--text-body); line-height: 1.7; font-weight: 300; }

.filter-tabs { display: flex; gap: 6px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-tab {
    padding: 9px 20px; font-size: 10.5px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-muted); background: transparent; border: 1px solid var(--border); cursor: pointer;
    transition: var(--transition-fast); font-family: inherit;
}
.filter-tab:hover { color: var(--text-dark); border-color: var(--text-dark); }
.filter-tab.active { background: var(--text-dark); color: var(--bg-primary); border-color: var(--text-dark); }

.modal-hero { position: relative; height: 480px; overflow: hidden; background: var(--bg-tertiary); box-shadow: 0 20px 50px rgba(15,15,15,0.12); }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.modal-hero:hover img { transform: scale(1.035); }
.modal-hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.32) 100%); pointer-events: none; }
.modal-status-badge { position: absolute; top: 24px; left: 24px; padding: 8px 18px; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; z-index: 3; background: var(--accent-light); color: #fff; }
.modal-status-badge.ongoing { background: var(--accent); color: #fff; }
.modal-status-badge.completed { background: var(--text-dark); color: var(--bg-primary); }
.modal-body { padding: 48px 56px; }
.modal-header-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; margin-bottom: 32px; flex-wrap: wrap; }
.modal-title-block h2 { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 34px; font-weight: 500; color: var(--text-dark); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 10px; }
.modal-location-row { display: flex; gap: 20px; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
.modal-location-row .accent { color: var(--accent); }
.modal-year-big { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 44px; font-weight: 500; color: var(--accent); letter-spacing: -1px; line-height: 1; }
.modal-description { font-size: 15px; color: var(--text-body); line-height: 1.9; font-weight: 300; margin-bottom: 40px; max-width: 720px; }
.modal-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 40px; }
.modal-spec { background: var(--bg-primary); padding: 24px 22px; }
.modal-spec .label { font-size: 9.5px; font-weight: 500; color: var(--text-muted); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px; }
.modal-spec .value { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 20px; font-weight: 500; color: var(--text-dark); letter-spacing: -0.3px; }
.modal-spec .value small { font-size: 12px; color: var(--text-muted); font-weight: 400; margin-left: 3px; }
.project-video {
    position: relative; margin-bottom: 32px;
    max-width: 420px; aspect-ratio: 16 / 10;
    box-shadow: 0 20px 50px rgba(15,15,15,0.12);
    cursor: pointer;
}
.project-video video, .project-video .video-poster-img {
    width: 100%; height: 100%; display: block; object-fit: cover;
    background: var(--bg-tertiary); border: 1px solid var(--border);
}
.project-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.project-video::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
    pointer-events: none; transition: opacity 0.3s ease;
}
.project-video.is-playing::after { opacity: 0; }
.video-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent); color: #fff; border: 2px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35); transition: var(--transition);
}
.video-play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.project-video:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--accent-light); }
.project-video.is-playing .video-play-btn { display: none; }
.project-video.is-playing { cursor: default; }
.project-video.is-playing video { object-fit: contain; }

.modal-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 48px; }
.modal-gallery-item { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-tertiary); }
.modal-gallery-item img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; display: block; transition: transform 0.5s ease, box-shadow 0.3s ease; }
.modal-gallery-item:hover img { transform: scale(1.05); }

.modal-actions { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.modal-actions .btn { flex: 1; justify-content: center; min-width: 180px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; width: 100%; max-width: 1200px; }
.blog-card { background: var(--bg-primary); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); cursor: pointer; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(15, 15, 15, 0.08); }
.blog-image { height: 180px; overflow: hidden; background: var(--bg-tertiary); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-body { padding: 26px 28px 30px; }
.blog-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.blog-meta .cat { color: var(--accent); }
.blog-body h3 { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 17px; font-weight: 500; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; transition: var(--transition-fast); }
.blog-card:hover .blog-body h3 { color: var(--accent); }
.blog-body p { font-size: 12.5px; color: var(--text-body); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.blog-read-more { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dark); font-weight: 600; transition: var(--transition-fast); display: inline-flex; align-items: center; gap: 8px; }
.blog-card:hover .blog-read-more { color: var(--accent); gap: 12px; }

.contact-wrapper { display: flex; gap: 64px; max-width: 1200px; width: 100%; align-items: flex-start; }
.contact-info { flex: 1; }
.contact-info > p { margin-bottom: 40px; max-width: 360px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-num { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 10.5px; color: var(--accent); letter-spacing: 2px; padding-top: 4px; min-width: 28px; font-weight: 500; }
.contact-item .ci-text h3 { font-size: 9.5px; color: var(--text-muted); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 2.5px; }
.contact-item .ci-text p { font-size: 14px; color: var(--text-dark); font-weight: 400; margin: 0; font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; }
.contact-item .ci-text a { color: inherit; text-decoration: none; }

.office-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 10px; margin-bottom: 22px; }
.office-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-tertiary); }
.office-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.office-photo:hover img { transform: scale(1.06); }

.contact-form { flex: 1; background: var(--bg-secondary); padding: 40px 36px; border: 1px solid var(--border); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 9.5px; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2.5px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 8px 0 12px; background: transparent; border: none; border-bottom: 1px solid var(--border);
    color: var(--text-dark); font-size: 14px; font-family: inherit; outline: none; font-weight: 300; transition: var(--transition-fast);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group textarea { resize: none; min-height: 70px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-msg { font-size: 12.5px; margin-top: 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { color: #2f8a4e; }
.form-msg.error { color: #c0392b; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.float-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 500; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); transition: var(--transition); text-decoration: none; position: relative; color: #fff; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn svg { width: 28px; height: 28px; fill: #fff; }
.float-btn.whatsapp { background: #25D366; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
.float-btn.whatsapp:hover { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.float-btn.whatsapp::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2s infinite; z-index: -1; }
.float-btn.viber { background: #7360F2; box-shadow: 0 8px 24px rgba(115, 96, 242, 0.4); }
.float-btn.viber:hover { box-shadow: 0 12px 30px rgba(115, 96, 242, 0.5); }
.float-btn.phone { background: var(--accent); box-shadow: 0 8px 24px rgba(139, 111, 71, 0.4); }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.float-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%) translateX(10px); background: var(--text-dark);
    color: var(--bg-primary); padding: 8px 14px; font-size: 11px; letter-spacing: 0.5px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition-fast); font-weight: 500;
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

.cookie-consent {
    position: fixed; bottom: 20px; left: 20px; max-width: 480px; background: var(--bg-primary); border: 1px solid var(--border);
    padding: 24px 26px; z-index: 900; box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12);
    transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-consent p { font-size: 12.5px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; font-weight: 300; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn { padding: 11px 22px; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text-dark); font-family: inherit; transition: var(--transition-fast); }
.cookie-btn.accept { background: var(--text-dark); color: var(--bg-primary); border-color: var(--text-dark); }
.cookie-btn.accept:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-btn.decline:hover { border-color: var(--text-dark); }

.mobile-top-bar-strip {
    display: none; position: fixed; top: 0; left: 0; right: 0; height: 74px;
    background: rgba(255,255,255,0.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    z-index: 190; border-bottom: 1px solid rgba(0,0,0,0.04);
}
html[data-theme="dark"] .mobile-top-bar-strip { background: rgba(15,15,15,0.9); border-bottom-color: rgba(255,255,255,0.06); }

.menu-toggle { display: none; position: fixed; top: 20px; left: 20px; z-index: 200; width: 44px; height: 44px; background: var(--bg-primary); border: 1px solid var(--border); color: var(--text-dark); font-size: 15px; cursor: pointer; align-items: center; justify-content: center; }
.mobile-top-logo {
    display: none; position: fixed; top: 15px; left: 76px; z-index: 200;
    width: 44px; height: 44px; background: var(--bg-primary); border: 1px solid var(--border);
    align-items: center; justify-content: center; overflow: hidden;
}
.mobile-top-logo a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.mobile-top-logo img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.mobile-top-logo span { font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif; font-size: 17px; font-weight: 600; color: var(--text-dark); }

.sidebar-backdrop {
    display: none; position: fixed; inset: 0; z-index: 140;
    background: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.sidebar-backdrop.show { opacity: 1; pointer-events: auto; }
body.menu-open .top-bar,
body.menu-open .mobile-top-logo,
body.menu-open .mobile-top-bar-strip {
    z-index: 130;
}

.section::-webkit-scrollbar { width: 3px; }
.section::-webkit-scrollbar-track { background: transparent; }
.section::-webkit-scrollbar-thumb { background: var(--border); }

.static-shell { display: block; min-height: 100vh; }
.static-shell .sidebar { position: fixed; top: 0; left: 0; z-index: 100; }
.static-shell .static-main { margin-left: 300px; }
@media (max-width: 900px) {
    .static-shell .sidebar { display: none; }
    .static-shell .static-main { margin-left: 0; }
}

.article-wrap { width: 100%; max-width: 760px; }
.article-wrap .article-hero { width: 100%; height: 360px; overflow: hidden; margin-bottom: 32px; background: var(--bg-tertiary); }
.article-wrap .article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-wrap .article-content p { font-size: 15px; color: var(--text-body); line-height: 1.9; font-weight: 300; margin-bottom: 18px; }
.article-wrap .article-content strong { color: var(--text-dark); }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; margin-bottom: 28px; transition: var(--transition-fast); }
.article-back:hover { color: var(--accent); }

.blueprint-bg {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500' fill='none' stroke='%238b6f47' stroke-width='0.8' opacity='0.13'%3E%3Cpath d='M0 500 L0 380 L60 380 L60 320 L120 320 L120 360 L180 360 L180 240 L260 240 L260 200 L320 200 L320 260 L380 260 L380 160 L440 160 L440 220 L500 220 L500 100 L560 100 L560 500 Z'/%3E%3Cline x1='180' y1='260' x2='260' y2='260'/%3E%3Cline x1='380' y1='180' x2='440' y2='180'/%3E%3Cline x1='500' y1='120' x2='560' y2='120'/%3E%3Cpath d='M260 240 L300 180 L340 240'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 480px 400px;
}

/* Architectural page decoration — corner registration marks + faint brand watermark,
   evokes a blueprint/drafting sheet. Fixed to viewport, sits behind all real content. */
.corner-mark { position: fixed; width: 28px; height: 28px; pointer-events: none; z-index: 2; opacity: 0.3; }
.corner-mark::before, .corner-mark::after { content: ''; position: absolute; background: var(--accent); }
.corner-mark::before { width: 100%; height: 1px; top: 50%; left: 0; }
.corner-mark::after { width: 1px; height: 100%; left: 50%; top: 0; }
.corner-mark.tl { top: 22px; left: 22px; }
.corner-mark.bl { bottom: 22px; left: 22px; }
.corner-mark.br { bottom: 22px; right: 22px; }

.brand-watermark {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif;
    font-size: 16vw;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    user-select: none;
}
.blueprint-compass {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 140px;
    height: 140px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 2;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1;
}
@media (max-width: 900px) {
    .brand-watermark { font-size: 22vw; }
    .blueprint-compass { width: 90px; height: 90px; bottom: 20px; right: 20px; }
    .corner-mark { display: none; }
}

.related-projects { margin-top: 70px; padding-top: 50px; border-top: 1px solid var(--border); }
.related-projects h2 {
    font-family: 'Myriad GEO Mtavruli Bold', 'Noto Serif Georgian', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.modal-hero img, .article-hero img { cursor: zoom-in; }

.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 9600;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-overlay img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: scale(0.96);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-overlay.open img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 26px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast); z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 768px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 20px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 1200px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px; }
    .hero-visual { height: 380px; max-width: 600px; margin: 0 auto; width: 100%; }
    .hero-content h2 { font-size: 44px; }
    .modal-body { padding: 36px 32px; }
}
@media (max-width: 1024px) {
    .hero-content h2 { font-size: 38px; }
    .about-wrapper { flex-direction: column; gap: 40px; }
    .contact-wrapper { flex-direction: column; gap: 40px; align-items: stretch; }
    .about-visual { height: 320px; width: 100%; flex-direction: row; }
    .section { padding: 36px 60px; }
    .section#home { padding: 0; }
    .gallery-grid-3col { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sidebar { left: -320px; width: 280px; min-width: 280px; transition: left 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 150; box-shadow: 0 0 60px rgba(0,0,0,0.08); }
    .sidebar.open { left: 0; }
    .main-content { margin-left: 0; width: 100%; }
    .mobile-top-bar-strip { display: block; }
    .menu-toggle { display: flex; background: transparent; border: 1px solid var(--border); }
    .mobile-top-logo { display: flex; background: transparent; border: 1px solid var(--border); }
    .lang-switch { background: transparent; border: 1px solid var(--border); }
    .theme-toggle { background: transparent; border: 1px solid var(--border); }
    .sidebar-backdrop { display: block; }
    .section { padding: 96px 22px 40px; align-items: flex-start; }
    .section:not(#home) { padding-top: 32px; padding-bottom: 28px; }
    .hero-inner { padding: 96px 22px 40px; }
    .hero-content h2 { font-size: 30px; }
    .section-header { margin-bottom: 30px; }
    .section-header h2, .about-text h2, .contact-info h2 { font-size: 26px; }
    .about-stats { flex-wrap: wrap; gap: 28px; }
    .contact-form { padding: 28px 24px; }
    .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat .stat-number { font-size: 22px; }
    .hero-visual { height: 300px; }
    .float-buttons { bottom: 16px; right: 16px; gap: 9px; }
    .float-btn { width: 40px; height: 40px; }
    .float-btn svg { width: 18px; height: 18px; }
    .cookie-consent { left: 12px; right: 12px; padding: 20px; }
    .top-bar { top: 14px; right: 14px; }
    .menu-toggle { top: 14px; left: 14px; }
    .modal-body { padding: 28px 24px; }
    .modal-title-block h2 { font-size: 24px; }
    .modal-year-big { font-size: 32px; }
    .modal-hero { height: 280px; }
    .modal-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
    .video-play-btn { width: 52px; height: 52px; }
    .brand-watermark { display: none; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.section.in-view .hero-inner, .section.in-view .hero-content, .section.in-view .hero-visual, .section.in-view .gallery-grid,
.section.in-view .about-wrapper, .section.in-view .contact-wrapper, .section.in-view .services-grid,
.section.in-view .section-header, .section.in-view .filter-tabs, .section.in-view .blog-grid { animation: fadeInUp 0.7s ease forwards; }
.section.in-view .hero-visual { animation-delay: 0.15s; opacity: 0; }
#home.section .hero-inner { animation: fadeInUp 0.7s ease forwards; }

.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-item.visible { opacity: 1; transform: translateY(0); }

@media (pointer: fine) {
    body.has-fine-pointer { cursor: none; }
    .cursor, .cursor-ring { display: block; }
}
.cursor { position: fixed; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); display: none; }
.cursor-ring {
    position: fixed; width: 36px; height: 36px; border: 1px solid var(--accent); border-radius: 50%; pointer-events: none;
    z-index: 9998; transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%); opacity: 0.5; display: none;
}
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(139, 111, 71, 0.08); opacity: 1; }
