* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #ffffff;
    color: #2c2b28;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO (Кобзар) ========== */
.hero-kobzar {
    position: relative;
    background: linear-gradient(135deg, #1e2a1e 0%, #2f3e2c 100%);
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-kobzar .hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 70px 20px;
    color: white;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 123, 0.25);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(201, 168, 123, 0.6);
    color: white;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    max-width: 900px;
}

.hero-title .accent {
    color: #c9a87b;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-bottom: 40px;
    font-style: italic;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #c9a87b;
    border-radius: 50px;
    color: #c9a87b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}

.btn-outline-light:hover {
    background: #c9a87b;
    color: #1e2a1e;
}

/* ========== ЗАГАЛЬНІ СЕКЦІЇ ========== */
.section {
    padding: 70px 0;
}

.section-light {
    background-color: #ffffff;
}

.section-beige {
    background-color: #faf7f0;
}

.section-dark {
    background-color: #1e2a1e;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #c9a87b;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #2c2b28;
}

.section-header h2 .accent {
    color: #c9a87b;
}

/* Місія (2 колонки) */
.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-block p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4945;
    margin-bottom: 20px;
}

.visual-block img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Проблема (картка з цитатою) */
.problem-card {
    background: #e8e2d4;
    border-radius: 32px;
    padding: 48px 40px;
}

.quote-heavy {
    font-size: 28px;
    font-weight: 800;
    color: #2c2b28;
    margin-bottom: 24px;
    line-height: 1.3;
}

.quote-heavy span {
    color: #c9a87b;
}

.problem-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.before-after {
    margin-top: 30px;
    overflow: hidden;
}

.before-after img {
    width: 100%;
    border-radius: 20px;
}

/* Правові ініціативи (галерея) */
.initiative-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.initiative-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.initiative-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2b28;
}

.gallery-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-mini img {
    width: calc(50% - 10px);
    aspect-ratio: 4 / 3;
    /* фіксує пропорції, наприклад 4:3 */
    object-fit: cover;
    /* обрізає без спотворень */
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

/* Інклюзивність + технічні креслення */
.inclusive-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.tech-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a87b;
    font-weight: bold;
}

.drawing img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta-block {
    background: linear-gradient(135deg, #2c3e2b 0%, #3d5a38 100%);
    border-radius: 36px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 30px 0;
    list-style: none;
}

.cta-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 60px;
    font-weight: 600;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary {
    background: #c9a87b;
    color: #1e2a1e;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    background: #b89563;
    transform: scale(1.02);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #c9a87b;
    color: #c9a87b;
}

.signature {
    border-top: 1px solid #e0dbcf;
    margin-top: 50px;
    padding-top: 40px;
    text-align: right;
    font-size: 16px;
    color: #5a4a32;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .section {
        padding: 50px 0;
    }

    .grid-two,
    .initiative-row,
    .inclusive-tech {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quote-heavy {
        font-size: 24px;
    }

    .gallery-mini img {
        width: 100%;
    }

    .problem-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .hero-kobzar {
        min-height: 65vh;
    }

    .cta-block {
        padding: 40px 24px;
    }

    .cta-block h3 {
        font-size: 26px;
    }

    .cta-list li {
        font-size: 14px;
    }
}