.is-street-empire {
    --se-navy: #07111f;
    --se-navy-2: #0b1a30;
    --se-navy-3: #10243f;
    --se-blue: #2f8bff;
    --se-blue-soft: rgba(47, 139, 255, 0.16);
    --se-green: #7cff6b;
    --se-purple: #9b7dff;
    --se-text: #eef4ff;
    --se-muted: #9db0c9;
}

.is-street-empire .site-main {
    background: var(--se-navy);
}

.se-page {
    color: var(--se-text);
    background: var(--se-navy);
}

.se-hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 7rem 0 4rem;
}

.se-hero-media,
.se-hero-overlay {
    position: absolute;
    inset: 0;
}

.se-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.04);
}

.se-hero-overlay {
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.35) 0%, rgba(7, 17, 31, 0.55) 38%, rgba(7, 17, 31, 0.94) 100%),
        linear-gradient(90deg, rgba(7, 17, 31, 0.72) 0%, rgba(7, 17, 31, 0.28) 58%, rgba(16, 36, 63, 0.2) 100%);
}

.se-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.se-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    color: var(--se-muted);
    font-size: 0.8125rem;
}

.se-breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.4rem;
    color: rgba(157, 176, 201, 0.7);
}

.se-breadcrumbs a {
    color: #c6d6ea;
}

.se-breadcrumbs a:hover {
    color: #fff;
}

.se-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 139, 255, 0.45);
    background: rgba(7, 17, 31, 0.55);
    color: #d7e8ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.se-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--se-green);
    box-shadow: 0 0 10px var(--se-green);
}

.se-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}

.se-hero-lead {
    max-width: 38rem;
    margin: 0 0 1.75rem;
    color: #c9d8ec;
    font-size: 1.125rem;
    line-height: 1.65;
}

.se-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.se-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.se-btn-primary {
    background: var(--se-blue);
    color: #fff;
    box-shadow: 0 10px 30px rgba(47, 139, 255, 0.28);
}

.se-btn-primary:hover {
    background: #4a9bff;
    color: #fff;
    transform: translateY(-1px);
}

.se-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.se-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.se-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    color: #b7cbe3;
    font-size: 0.875rem;
    font-weight: 600;
}

.se-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.se-highlights li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--se-green);
}

.se-section {
    padding: 5rem 0;
}

.se-section-light {
    background: #f4f7fb;
    color: #122033;
}

.se-section-navy {
    background: var(--se-navy-2);
}

.se-section-dark {
    background: #06101c;
}

.se-section-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
}

.se-section-light .se-section-title {
    color: #122033;
}

.se-section-lead {
    max-width: 40rem;
    margin: 0 0 2.25rem;
    color: var(--se-muted);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.se-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
    gap: 3rem;
    align-items: center;
}

.se-intro-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: #122033;
}

.se-intro-copy p {
    margin: 0 0 1.75rem;
    color: #4b5d73;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.se-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.se-stats li {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d7e1ee;
    color: #17324f;
    font-size: 0.9375rem;
    font-weight: 700;
}

.se-frame {
    margin: 0;
    padding: 0.7rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #1a3a66, #0d213c);
    box-shadow: 0 24px 60px rgba(16, 36, 63, 0.22);
}

.se-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
}

.se-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.se-feature {
    padding: 1.6rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.se-feature-blue {
    background: linear-gradient(180deg, rgba(47, 139, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.se-feature-green {
    background: linear-gradient(180deg, rgba(124, 255, 107, 0.12), rgba(255, 255, 255, 0.03));
}

.se-feature-purple {
    background: linear-gradient(180deg, rgba(155, 125, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.se-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #d7e8ff;
}

.se-feature-green .se-feature-icon {
    color: var(--se-green);
}

.se-feature-purple .se-feature-icon {
    color: var(--se-purple);
}

.se-feature-blue .se-feature-icon {
    color: #7eb6ff;
}

.se-feature h3 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    color: #fff;
}

.se-feature p {
    margin: 0;
    color: var(--se-muted);
    line-height: 1.6;
}

.se-district-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.se-district {
    overflow: hidden;
    border-radius: 20px;
    background: var(--se-navy-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.se-district-media {
    position: relative;
    overflow: hidden;
}

.se-district-media img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center 40%;
}

.se-district-locked .se-district-media img {
    filter: saturate(0.55) brightness(0.62);
}

.se-district-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.se-district-open .se-district-badge {
    background: rgba(124, 255, 107, 0.18);
    color: var(--se-green);
}

.se-district-locked .se-district-badge {
    background: rgba(155, 125, 255, 0.2);
    color: #d3c4ff;
}

.se-district-body {
    padding: 1.35rem 1.4rem 1.5rem;
}

.se-district h3 {
    margin: 0 0 0.5rem;
    color: #fff;
}

.se-district p {
    margin: 0 0 0.75rem;
    color: var(--se-muted);
    line-height: 1.6;
}

.se-district-meta {
    margin: 0 !important;
    color: #c5d7ee !important;
    font-size: 0.875rem;
    font-weight: 700;
}

.se-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.se-gallery-item {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.se-gallery-item img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.se-gallery-item:hover img {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.se-gallery-item span {
    display: block;
    margin-top: 0.75rem;
    color: #d5e4f6;
    font-size: 0.9375rem;
    font-weight: 700;
}

.se-cta-wrap {
    padding-top: 2rem;
    padding-bottom: 5.5rem;
}

.se-cta {
    padding: 3rem 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(155, 125, 255, 0.22), transparent 38%),
        radial-gradient(circle at left, rgba(47, 139, 255, 0.2), transparent 42%),
        linear-gradient(180deg, #13284a, #0b1a30);
    border: 1px solid rgba(47, 139, 255, 0.28);
    text-align: center;
}

.se-cta h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
}

.se-cta p {
    max-width: 40rem;
    margin: 0 auto 1.75rem;
    color: #c3d4ea;
    line-height: 1.65;
}

.se-cta .se-hero-actions {
    justify-content: center;
}

.se-lightbox[hidden] {
    display: none;
}

.se-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.se-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.86);
}

.se-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 3rem 4.5rem;
}

.se-lightbox-dialog figure {
    margin: 0;
    max-width: min(1100px, 100%);
}

.se-lightbox-dialog img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 16px;
    background: #000;
}

.se-lightbox-dialog figcaption {
    margin-top: 0.85rem;
    color: #d7e4f5;
    text-align: center;
    font-weight: 700;
}

.se-lightbox-close,
.se-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.se-lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
}

.se-lightbox-nav {
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.se-lightbox-prev {
    left: 1.25rem;
}

.se-lightbox-next {
    right: 1.25rem;
}

@media (max-width: 900px) {
    .se-intro-grid,
    .se-feature-grid,
    .se-district-grid,
    .se-gallery {
        grid-template-columns: 1fr;
    }

    .se-gallery-item img,
    .se-district-media img {
        height: 210px;
    }

    .se-lightbox-dialog {
        padding: 4.5rem 1rem 1.5rem;
    }

    .se-lightbox-nav {
        top: auto;
        bottom: 1rem;
        transform: none;
    }
}
