.project-page {
    font-family: Raleway, sans-serif;
    color: #232427;
    overflow-x: hidden;
}

.project-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 180px 24px 80px;
    color: #fff;
    background-color: #111;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.project-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.project-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.project-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
    color: #fff;
}

.project-hero h1 {
    font-family: Raleway, sans-serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: #fff;
}

.project-hero .project-name {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.project-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-section h2 {
    font-family: Raleway, sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #232427;
}

.project-section h3 {
    font-family: Raleway, sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 36px 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 0 18px;
    color: #555;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.bg-light {
    background: #f6f6f6;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.chip-list li {
    background: #0E3D93;
    color: #fff;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.chip-list.services li {
    background: #232427;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.project-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #eee;
}

.project-cta {
    text-align: center;
    padding: 120px 24px;
}

.project-cta p {
    margin-bottom: 36px;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    background: #0E3D93;
    color: #fff;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 28px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767px) {
    .project-hero {
        min-height: 60vh;
        padding: 140px 20px 56px;
    }

    .project-section {
        padding: 56px 20px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .project-gallery img {
        height: 220px;
    }

    .project-cta {
        padding: 80px 20px;
    }
}
