.dp-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark-950);
    color: #fff;
}
.dp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,10,15,0.94) 0%, rgba(7,10,15,0.75) 45%, rgba(7,10,15,0.2) 75%, rgba(7,10,15,0) 100%);
}
.dp-hero__container {
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.dp-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.dp-hero__breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.dp-hero__breadcrumb svg { width: 12px; height: 12px; }
.dp-hero__breadcrumb span { color: rgba(255,255,255,0.85); }

.dp-hero__title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.dp-hero__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(36px, 4.5vw, 56px);
    margin: 0;
}
.dp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--color-gold-500);
    border-radius: 999px;
    color: var(--color-gold-500);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
}
.dp-hero__badge svg { width: 12px; height: 12px; }

.dp-hero__tagline {
    font-family: var(--font-sans);
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}

.dp-hero__description {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin: 0 0 26px;
}

.dp-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.dp-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.dp-hero__meta-item svg { width: 16px; height: 16px; color: var(--color-gold-500); }

/* ===== Тело страницы ===== */

.dp-body {
    background: #F7F7F8;
    padding-bottom: 80px;
}

/* ===== Статы (панель поверх hero) ===== */

.dp-stats {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    padding: 30px 40px;
    margin-top: -60px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 24px;
}

.dp-stats__rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 40px;
    border-right: 1px solid #eceef1;
}
.dp-stats__rating-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-dark-950);
}
.dp-stats__rating-value svg { width: 22px; height: 22px; color: var(--color-gold-500); fill: var(--color-gold-500); }
.dp-stats__rating-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #8a90a0;
}
.dp-stats__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #d8dbe0;
    font-size: 9px;
    color: #a2a7b3;
}
.dp-stats__stars { display: flex; gap: 3px; }
.dp-stats__stars svg { width: 15px; height: 15px; color: var(--color-gold-500); fill: var(--color-gold-500); }
.dp-stats__star-empty svg { color: #e4e6ea; fill: none; }
.dp-stats__reviews { font-family: var(--font-sans); font-size: 12px; color: #a2a7b3; }

.dp-stats__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 110px;
}
.dp-stats__value {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-dark-950);
}
.dp-stats__label {
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 1.4;
    color: #8a90a0;
}

/* ===== О застройщике ===== */

.dp-about {
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}
.dp-about__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 26px;
    color: var(--color-dark-950);
    margin: 0 0 20px;
}
.dp-about__text {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.75;
    color: #5b6270;
    margin-bottom: 32px;
}
.dp-about__text p { margin: 0 0 16px; }
.dp-about__text p:last-child { margin-bottom: 0; }

.dp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #eceef1;
}
.dp-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dp-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f5f6f8;
    color: var(--color-gold-600);
}
.dp-feature__icon svg { width: 20px; height: 20px; }
.dp-feature__body { display: flex; flex-direction: column; gap: 4px; }
.dp-feature__title { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--color-dark-950); }
.dp-feature__text { font-family: var(--font-sans); font-size: 12px; color: #8a90a0; line-height: 1.4; }

/* ===== Проекты застройщика ===== */

.dp-projects__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
}
.dp-projects__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-dark-950);
    margin: 0;
}
.dp-projects__title span {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: #a2a7b3;
    margin-left: 8px;
}
.dp-projects__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-600);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.dp-projects__link svg { width: 14px; height: 14px; }

.dp-projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.dp-project {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.dp-project.is-hidden { display: none; }
.dp-project:hover { box-shadow: 0 12px 32px rgba(17, 22, 34, 0.1); transform: translateY(-3px); }

.dp-project__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--color-dark-900);
}
.dp-project__media img { width: 100%; height: 100%; object-fit: cover; }
.dp-project__rating {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(11, 15, 23, 0.75);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
}
.dp-project__rating svg { width: 10px; height: 10px; color: var(--color-gold-500); fill: var(--color-gold-500); }
.dp-project__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #c7cbd3;
    cursor: pointer;
}
.dp-project__fav svg { width: 13px; height: 13px; }

.dp-project__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
}
.dp-project__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-dark-950);
    text-decoration: none;
}
.dp-project__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #8a90a0;
}
.dp-project__location svg { width: 12px; height: 12px; }
.dp-project__class {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gold-600);
}

.dp-project__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid #f0f1f3;
}
.dp-project__footer-meta {
    display: flex;
    gap: 16px;
}
.dp-project__meta-col { display: flex; flex-direction: column; gap: 1px; }
.dp-project__meta-value { font-family: var(--font-sans); font-size: 12px; font-weight: 700; color: var(--color-dark-950); }
.dp-project__meta-label { font-family: var(--font-sans); font-size: 10px; color: #a2a7b3; }
.dp-project__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e4e6ea;
    color: var(--color-dark-950);
    flex-shrink: 0;
}
.dp-project__arrow svg { width: 13px; height: 13px; }

.dp-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    background: #fff;
    color: var(--color-dark-950);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.dp-load-more svg { width: 15px; height: 15px; }

/* ===== Нижний CTA ===== */

.dp-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 20px;
    padding: 32px 40px;
    margin-top: 40px;
}
.dp-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #FFF3E4;
    color: var(--color-gold-600);
    flex-shrink: 0;
}
.dp-cta__icon svg { width: 26px; height: 26px; }
.dp-cta__body { flex: 1; }
.dp-cta__title { font-family: var(--font-sans); font-size: 17px; font-weight: 700; color: var(--color-dark-950); margin: 0 0 6px; }
.dp-cta__text { font-family: var(--font-sans); font-size: 14px; color: #8a90a0; margin: 0; }
.dp-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 26px;
    border-radius: 12px;
    background: var(--color-gold-500);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: box-shadow 0.2s ease;
}
.dp-cta__button:hover { box-shadow: var(--shadow-glow); }
.dp-cta__button svg { width: 15px; height: 15px; }

/* ===== Адаптив ===== */

@media (max-width: 1199px) {
    .dp-features { grid-template-columns: repeat(2, 1fr); }
    .dp-projects__grid { grid-template-columns: repeat(2, 1fr); }
    .dp-stats { flex-direction: column; align-items: flex-start; }
    .dp-stats__rating { border-right: none; padding-right: 0; }
}

@media (max-width: 640px) {
    .dp-hero { padding-top: 110px; }
    .dp-about { padding: 24px; }
    .dp-features { grid-template-columns: 1fr; }
    .dp-projects__grid { grid-template-columns: 1fr; }
    .dp-cta { flex-direction: column; align-items: flex-start; }
    .dp-cta__button { width: 100%; justify-content: center; }
}
