*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000;
    --white: #fff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-400: #999;
    --gray-600: #666;
    --gray-800: #333;
    --gold: #c5a46d;
    --gold-dark: #a68b5b;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --section-padding: 120px 80px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    padding: 18px 48px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--black);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--gray-800);
}

/* ===== NAV ===== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav--scrolled .nav__logo-text,
.nav--scrolled .nav__link {
    color: var(--black);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav__logo-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--white);
    transition: color 0.3s;
}

.nav__menu {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: color 0.3s, opacity 0.3s;
}

.nav__link:hover {
    opacity: 0.6;
}

.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

.nav--scrolled .nav__burger span {
    background: var(--black);
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/towers-render.jpg') center/cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__title-main {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    letter-spacing: 0.35em;
    line-height: 1;
}

.hero__title-sub {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 0.6em;
}

.hero__slogan {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.03em;
    line-height: 1.4;
    max-width: 600px;
    margin-top: 8px;
}

.hero__subtitle {
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SPLIT LAYOUT ===== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split--dark {
    background: var(--black);
    color: var(--white);
}

.split--dark .section-label {
    opacity: 0.5;
}

.split__left,
.split__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.split__left {
    padding: var(--section-padding);
}

.split__right {
    padding: 0;
}

.split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT ===== */

.about__left {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 30%, #b0b0b0 60%, #d0d0d0 100%);
    position: relative;
}

.about__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.about__logo-aurus {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.3em;
}

.about__logo-x {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.5;
}

.about__logo-strana {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.25em;
}

.about__logo-strana-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.5em;
    display: block;
    width: 100%;
    margin-top: -8px;
    margin-left: 110px;
}

.about__text {
    font-size: 15px;
    line-height: 1.8;
    max-width: 500px;
}

/* ===== ABOUT PROJECT ===== */

.about-project__right {
    padding: var(--section-padding);
}

.about-project__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 32px;
}

.about-project__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

/* ===== STATS ===== */

.stats {
    position: relative;
    padding: 120px 80px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats__bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero-metal.jpg') center/cover no-repeat;
    filter: brightness(0.9) contrast(1.1);
}

.stats__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stats__label {
    color: var(--black);
    opacity: 0.5;
}

.stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 120px;
    margin-top: 60px;
}

.stats__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats__number {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats__number sup {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 400;
}

.stats__unit {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    vertical-align: baseline;
    margin-left: 4px;
}

.stats__desc {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

/* ===== VIEWS ===== */

.views {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.views__img-wrap {
    position: absolute;
    inset: 0;
}

.views__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.views__overlay {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px;
    max-width: 600px;
    text-align: right;
}

.views__sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.85;
}

.views__stat-number {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 140px);
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.views__stat-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== ARCHITECTURE ===== */

.architecture__left {
    padding: var(--section-padding);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.architecture__text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 420px;
}

/* ===== ARCHITECTURE FUTURE ===== */

.architecture-future__right {
    padding: var(--section-padding);
}

.architecture-future__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
}

.architecture-future__text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 480px;
}

/* ===== LOBBY ===== */

.lobby__hero {
    width: 100%;
    overflow: hidden;
}

.lobby__hero img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.lobby__content {
    text-align: center;
    padding: 80px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.lobby__text {
    font-size: 16px;
    line-height: 1.8;
}

.lobby__details {
    background: var(--gray-100);
    padding: 80px;
}

.lobby__details-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lobby__details-text {
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 60px;
}

.lobby__elements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.lobby__element {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lobby__element-name {
    font-size: 20px;
    font-weight: 700;
}

.lobby__element-desc {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

/* ===== PARK ===== */

.park__hero {
    width: 100%;
    overflow: hidden;
}

.park__hero img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.park__content {
    text-align: center;
    padding: 80px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.park__text {
    font-size: 16px;
    line-height: 1.8;
}

.park__features {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 0 40px 80px;
}

.park__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.park__feature-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
}

.park__feature-label {
    font-size: 14px;
    opacity: 0.6;
}

/* ===== LOCATION ===== */

.location__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 32px;
}

.location__text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 480px;
}

.location__transport {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.location__transport-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location__transport-time {
    font-size: 20px;
    font-weight: 700;
}

.location__transport-desc {
    font-size: 13px;
    opacity: 0.6;
}

/* ===== MAP ===== */

.map-section__map {
    width: 100%;
    height: 500px;
    background: var(--gray-200);
}

/* ===== COLLECTION ===== */

.collection {
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
}

.collection__header {
    margin-bottom: 80px;
    max-width: 600px;
}

.collection__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.collection__subtitle {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.7;
}

.collection__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.collection__card {
    overflow: hidden;
}

.collection__card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 20px;
}

.collection__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection__card:hover .collection__card-img img {
    transform: scale(1.05);
}

.collection__card-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.collection__card-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.6;
}

/* ===== INFRA ===== */

.infra__hero {
    width: 100%;
    overflow: hidden;
}

.infra__hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.infra__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.infra__col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.infra__col-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
}

/* ===== APARTMENTS ===== */

.apartments__right {
    padding: var(--section-padding);
}

.apartments__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 48px;
}

.apartments__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.apartments__feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.apartments__feature-value {
    font-size: 24px;
    font-weight: 800;
}

.apartments__feature-label {
    font-size: 13px;
    opacity: 0.6;
}

/* ===== FINISH ===== */

.finish {
    background: var(--gray-100);
    padding: var(--section-padding);
}

.finish__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.finish__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 500px;
}

.finish__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.finish__option-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.finish__option-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
}

/* ===== GALLERY (Swiper) ===== */

.gallery {
    background: var(--black);
    padding: 0;
}

.gallery__swiper {
    width: 100%;
    height: 85vh;
}

.gallery__swiper .swiper-slide {
    overflow: hidden;
}

.gallery__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__swiper .swiper-button-prev,
.gallery__swiper .swiper-button-next {
    color: var(--white);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.gallery__swiper .swiper-button-prev:hover,
.gallery__swiper .swiper-button-next:hover {
    opacity: 1;
}

.gallery__swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.4;
}

.gallery__swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== PHOTO GALLERY (Grid) ===== */

.photo-gallery {
    padding: 120px 40px;
    background: var(--gray-100);
}

.photo-gallery__header {
    text-align: center;
    margin-bottom: 60px;
}

.photo-gallery__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.1;
}

.photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 1600px;
    margin: 0 auto;
}

.photo-gallery__item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    position: relative;
}

.photo-gallery__item--wide {
    grid-column: span 2;
}

.photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-gallery__item:hover img {
    transform: scale(1.06);
}

.photo-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.photo-gallery__item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* ===== COMPANY ===== */

.company {
    padding: var(--section-padding);
}

.company__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.company__text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 60px;
}

.company__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.company__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company__stat-number {
    font-size: 28px;
    font-weight: 800;
}

.company__stat-label {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.5;
}

/* ===== CALLBACK FORM ===== */

.callback {
    background: var(--black);
    color: var(--white);
    padding: 120px 80px;
}

.callback__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.callback__brand {
    margin-bottom: 40px;
}

.callback__logo {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.35em;
    display: block;
}

.callback__logo-sub {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.6em;
    display: block;
    margin-top: 8px;
}

.callback__desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.callback__site {
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.callback__site:hover {
    opacity: 1;
}

.callback__form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.callback__form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.callback__input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.callback__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.callback__input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.callback__submit {
    width: 100%;
    margin-top: 8px;
}

.callback__consent {
    font-size: 11px;
    opacity: 0.35;
    line-height: 1.5;
    text-align: center;
}

/* ===== FOOTER ===== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 32px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer__disclaimer {
    font-size: 11px;
    opacity: 0.35;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LIGHTBOX ===== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 16px;
    z-index: 10;
}

.lightbox__prev {
    left: 16px;
}

.lightbox__next {
    right: 16px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
}

/* ===== FAB BUTTON ===== */

.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
    background: var(--gray-800);
}

.fab svg {
    pointer-events: none;
}

/* ===== MODAL ===== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__body {
    position: relative;
    z-index: 2;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    max-width: 460px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    line-height: 1;
}

.modal__close:hover {
    opacity: 1;
}

.modal__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.modal__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.modal__form .callback__input--modal {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.modal__form .callback__input--modal::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal__form .callback__input--modal:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.callback__consent--modal {
    color: rgba(255, 255, 255, 0.35);
}

/* ===== CONTACT METHOD PICKER ===== */

.callback__field-label,
.callback__field-label--modal {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.6;
    margin-bottom: 10px;
    color: inherit;
}

.callback__contact-methods {
    display: flex;
    gap: 8px;
}

.callback__method {
    flex: 1;
    cursor: pointer;
}

.callback__method input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.callback__method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s;
    text-align: center;
    white-space: nowrap;
}

.callback__method input[type="radio"]:checked + .callback__method-btn {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.callback__method:hover .callback__method-btn {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
}

/* ===== REVEAL ANIMATIONS ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal--left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal--right {
    opacity: 0;
    transform: translateX(60px);
}

/* ===== MOBILE MENU OVERLAY ===== */

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav__overlay.active {
    display: flex;
}

.nav__overlay .nav__link {
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    :root {
        --section-padding: 80px 48px;
    }

    .stats__grid {
        gap: 60px 80px;
    }

    .collection__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav__menu {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split__left,
    .split__right {
        min-height: 50vh;
    }

    .split__left {
        padding: 80px 40px;
    }

    .architecture-future__right {
        padding: 80px 40px;
    }

    .apartments__right {
        padding: 80px 40px;
    }

    .lobby__elements {
        grid-template-columns: repeat(2, 1fr);
    }

    .company__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .finish__options {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .infra__columns {
        grid-template-columns: 1fr;
        padding: 60px 40px;
    }

    .views__overlay {
        padding: 40px;
        text-align: left;
    }

    .about-project__right {
        padding: 80px 40px;
    }

    .callback__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .callback {
        padding: 80px 40px;
    }

    .photo-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-gallery__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 24px;
    }

    .nav {
        padding: 0 24px;
    }

    .fab {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .modal__body {
        padding: 32px 24px;
    }

    .callback__contact-methods {
        flex-direction: column;
    }

    .stats {
        padding: 80px 24px;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .collection {
        padding: 60px 24px;
    }

    .collection__grid {
        grid-template-columns: 1fr;
    }

    .lobby__details {
        padding: 40px 24px;
    }

    .lobby__elements {
        grid-template-columns: 1fr;
    }

    .park__features {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .location__transport {
        grid-template-columns: 1fr;
    }

    .apartments__features {
        grid-template-columns: 1fr;
    }

    .company__stats {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 32px 24px;
    }

    .gallery__swiper {
        height: 50vh;
    }

    .map-section__map {
        height: 350px;
    }

    .callback {
        padding: 60px 24px;
    }

    .callback__form {
        padding: 32px 24px;
    }

    .photo-gallery {
        padding: 60px 16px;
    }

    .photo-gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .photo-gallery__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 375px) {
    .hero__title-main {
        letter-spacing: 0.2em;
    }

    .hero__title-sub {
        letter-spacing: 0.3em;
    }

    .photo-gallery__grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery__item--wide {
        grid-column: span 1;
    }
}
