* {
    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-alleia {
    position: relative;
    background: linear-gradient(135deg, #1e2a1e 0%, #2a3b26 100%);
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-alleia .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(38px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    max-width: 800px;
}

.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;
    font-weight: 400;
}

.hero-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a87b;
    font-weight: 500;
    margin-bottom: 30px;
}

.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: white;
}

.btn-solid {
    background: #c9a87b;
    border: 2px solid #c9a87b;
    color: #1e2a1e;
}

.btn-solid:hover {
    background: #b89563;
    border-color: #b89563;
    color: white;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* ========== ЗАГАЛЬНІ СЕКЦІЇ ========== */
.section {
    padding: 70px 0;
}

.section-light {
    background-color: #ffffff;
}

.section-beige {
    background-color: #faf7f0;
}

.section-dark-green {
    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 колонки) ========== */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4945;
    margin-bottom: 20px;
}

.mission-quote {
    font-weight: 600;
    border-left: 4px solid #c9a87b;
    padding-left: 24px;
    font-size: 20px;
    color: #2c2b28;
    margin-top: 30px;
}

.mission-visual img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* ========== УРБАНІСТИЧНА РОЛЬ ========== */
.urban-block {
    background: #e8e2d4;
    border-radius: 32px;
    padding: 48px 40px;
}

.urban-quote {
    font-size: 28px;
    font-weight: 800;
    color: #2c2b28;
    margin-bottom: 24px;
    line-height: 1.3;
}

.urban-quote span {
    color: #c9a87b;
}

.urban-text {
    font-size: 18px;
    margin-bottom: 32px;
    color: #3a3935;
}

.gallery-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.gallery-mini img {
    width: 100%;
    border-radius: 20px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.caption {
    text-align: center;
    font-size: 14px;
    color: #6a6862;
    margin-top: 12px;
}

/* ========== ПРОСТОРОВА КОМПОЗИЦІЯ (симетрія) ========== */
.symmetry-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sym-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sym-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.sym-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4945;
}

.symbol-bullet {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.bullet-red {
    background: rgba(201, 88, 68, 0.1);
    padding: 12px 16px;
    border-radius: 20px;
    border-left: 3px solid #c95844;
}

.bullet-green {
    background: rgba(80, 110, 70, 0.1);
    padding: 12px 16px;
    border-radius: 20px;
    border-left: 3px solid #c9a87b;
}

.sym-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* ========== СВІТЛОВИЙ СЦЕНАРІЙ ========== */
.light-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #1e2a1e;
    border-radius: 36px;
    padding: 50px 40px;
    color: white;
}

.light-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #c9a87b;
}

.light-card p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

.light-card .light-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.night-render img {
    width: 100%;
    border-radius: 24px;
    margin-top: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* ========== ТЕХНІЧНА РЕАЛІЗАЦІЯ ========== */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    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;
}

.tech-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-gallery img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* ========== 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-block p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* ========== ПІДПИС ========== */
.signature {
    border-top: 1px solid #e0dbcf;
    margin-top: 30px;
    padding-top: 40px;
    text-align: right;
    font-size: 16px;
    color: #5a4a32;
    font-weight: 500;
}

/* ========== АДАПТИВНІСТЬ ========== */
@media (max-width: 1024px) {
    .section {
        padding: 50px 0;
    }

    .mission-grid,
    .sym-item,
    .light-duo,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .urban-quote {
        font-size: 24px;
    }

    .light-duo {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .hero-alleia {
        min-height: 65vh;
    }

    .urban-block {
        padding: 30px 20px;
    }

    .urban-quote {
        font-size: 22px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .sym-text h3 {
        font-size: 24px;
    }

    .cta-block {
        padding: 40px 24px;
    }

    .cta-block h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .mission-text p {
        font-size: 16px;
    }

    .gallery-mini img {
        height: 160px;
    }
}