.project-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--v2-white); background: var(--v2-night); }
.project-hero__media { position: absolute; inset: 0; }
.project-hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(0,0,0,.7), transparent 75%), linear-gradient(0deg, rgba(0,0,0,.4), transparent 55%); }
.project-hero__media img { height: 100%; object-fit: cover; }
.project-hero__content { position: relative; z-index: 1; width: var(--v2-container); margin: 0 auto; padding-bottom: clamp(60px, 12vh, 150px); }
.project-hero h1 { margin: 0 0 20px; font-size: clamp(58px, 11vw, 170px); font-weight: 300; line-height: .86; letter-spacing: -.055em; }
.project-hero p:not(.section-kicker) { max-width: 420px; margin: 0; color: rgba(248,247,244,.78); font-size: 16px; line-height: 1.65; }
.hero-motion.project-hero .section-kicker { transition: opacity .9s .2s cubic-bezier(.22, .61, .36, 1), transform .9s .2s cubic-bezier(.22, .61, .36, 1), filter .9s .2s cubic-bezier(.22, .61, .36, 1); }
.hero-motion.project-hero h1 { transition: opacity .9s .35s cubic-bezier(.22, .61, .36, 1), transform .9s .35s cubic-bezier(.22, .61, .36, 1), filter .9s .35s cubic-bezier(.22, .61, .36, 1); }
.hero-motion.project-hero p:not(.section-kicker) { transition: opacity .9s .55s cubic-bezier(.22, .61, .36, 1), transform .9s .55s cubic-bezier(.22, .61, .36, 1), filter .9s .55s cubic-bezier(.22, .61, .36, 1); }
.hero-motion.project-hero .section-kicker,
.hero-motion.project-hero h1,
.hero-motion.project-hero p:not(.section-kicker) {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
    filter: blur(8px);
}
.hero-motion.hero-motion-ready.project-hero .section-kicker,
.hero-motion.hero-motion-ready.project-hero h1,
.hero-motion.hero-motion-ready.project-hero p:not(.section-kicker) {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: blur(0);
}
.hero-motion.project-hero .section-kicker { transition-delay: .2s; }
.hero-motion.project-hero h1 { transition-delay: .36s; }
.hero-motion.project-hero p:not(.section-kicker) { transition-delay: .56s; }
.project-about { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.project-about h2 { max-width: 640px; margin: 0; font-size: clamp(38px, 6vw, 80px); font-weight: 300; line-height: .95; letter-spacing: -.01em; }
.project-about__text { max-width: 480px; margin-top: 12px; color: var(--v2-ink-soft); font-size: 16px; line-height: 1.7; }
.project-section-title { margin: 0 0 46px; font-size: clamp(38px, 5vw, 70px); font-weight: 300; line-height: .95; letter-spacing: -.01em; }
.apartments { display: grid; gap: 0; }
.project-cta { border-top: 1px solid var(--v2-line); }
.project-cta__inner { display: flex; flex-direction: column; align-items: flex-start; max-width: 760px; }
.project-cta h2 { max-width: 620px; margin: 0 0 22px; font-size: clamp(42px, 7vw, 92px); font-weight: 300; line-height: .94; letter-spacing: -.045em; }
.project-cta__text { max-width: 480px; margin: 0 0 34px; color: var(--v2-ink-soft); font-size: 16px; line-height: 1.65; }
.project-cta__link { margin: 0; padding: 0; border: 0; background: transparent; cursor: pointer; }
.project-cta__link span { color: var(--v2-red); font-size: 23px; line-height: .5; transition: transform .3s ease; }
.project-cta__link:hover span { transform: translateX(5px); }
.project-cta__link:focus-visible { outline: 2px solid var(--v2-red); outline-offset: 6px; }
.apartment-card__tour { display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 26px; padding: 16px 0 14px; border-top: 1px solid var(--v2-line); color: var(--v2-ink); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease, border-color .25s ease; }
.apartment-card__tour span { color: var(--v2-red); font-size: 23px; line-height: .5; transition: transform .3s ease; }
.apartment-card__tour:hover { color: var(--v2-red); border-color: var(--v2-red); }
.apartment-card__tour:hover span { transform: translateX(5px); }
.apartment-card__tour:focus-visible { outline: 2px solid var(--v2-red); outline-offset: 5px; }
@media (max-width: 820px) { .project-about { grid-template-columns: 1fr; gap: 28px; } }

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
    .hero-motion.project-hero .section-kicker,
    .hero-motion.project-hero h1,
    .hero-motion.project-hero p:not(.section-kicker) {
        transform: translate3d(0, 22px, 0);
        filter: blur(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-motion.project-hero .section-kicker,
    .hero-motion.project-hero h1,
    .hero-motion.project-hero p:not(.section-kicker) {
        transform: none;
        opacity: 1;
        filter: none;
        transition: none;
    }
}
