:root {
    --ink: #121212;
    --ink-soft: #1c1c1b;
    --paper: #f3f0e9;
    --white: #fff;
    --muted: #77736c;
    --line: rgba(18, 18, 18, .14);
    --orange: #f4a000;
    --orange-bright: #ffb000;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(20, 17, 10, .11);
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section--light { background: var(--paper); }
.skip-link { position: fixed; top: 12px; left: -999px; z-index: 9999; padding: 12px 18px; background: var(--orange); }
.skip-link:focus { left: 12px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; background: var(--orange); }
.eyebrow--light { color: rgba(255,255,255,.72); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { margin-bottom: 28px; font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: 23px; }
h1 em, h2 em { color: var(--orange-bright); font-style: normal; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 18px; padding: 0 25px; border: 1px solid var(--orange); border-radius: 4px; background: var(--orange); color: var(--ink); font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--orange-bright); }
.button svg, .text-link svg { transition: transform .2s ease; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button--dark { border-color: var(--ink); background: var(--ink); color: white; }
.button--dark:hover { border-color: #2e2e2c; background: #2e2e2c; }
.button--ghost { border-color: rgba(255,255,255,.44); background: rgba(0,0,0,.12); color: white; backdrop-filter: blur(12px); }
.button--ghost:hover { border-color: white; background: rgba(255,255,255,.08); }
.button--outline { border-color: var(--line); background: transparent; }
.button--small { min-height: 44px; padding: 0 18px; font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 800; }
.text-link--light { color: white; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.15); color: white; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(18,18,18,.96); box-shadow: 0 10px 30px rgba(0,0,0,.18); backdrop-filter: blur(15px); }
body.single-property .site-header { background: rgba(18,18,18,.96); box-shadow: 0 10px 30px rgba(0,0,0,.18); backdrop-filter: blur(15px); }
.site-header__inner { display: flex; min-height: 82px; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand__logo { display: grid; width: 54px; height: 54px; place-items: center; overflow: hidden; border-radius: 50%; background: rgba(255,255,255,.96); box-shadow: 0 12px 34px rgba(0,0,0,.18); }
.brand__logo img { width: 46px; height: 46px; object-fit: contain; }
.brand__placeholder { display: grid; width: 48px; height: 48px; place-items: center; border: 1px dashed rgba(255,255,255,.55); border-radius: 50%; }
.brand__placeholder span { font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.brand__text { display: grid; line-height: 1; }
.brand__text strong { font-size: 18px; letter-spacing: .03em; text-transform: uppercase; }
.brand__text small { margin-top: 6px; font-size: 8px; letter-spacing: .14em; opacity: .7; text-transform: uppercase; }
.site-nav { margin-left: auto; }
.site-nav ul, .site-footer__nav ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; font-size: 13px; font-weight: 700; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--orange); content: ''; transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav .current-menu-item a::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-size: 13px; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }

.notice { position: fixed; z-index: 120; top: 96px; right: 24px; max-width: 390px; padding: 16px 22px; border-radius: 8px; color: white; box-shadow: var(--shadow); }
.notice--success { background: #1f6b45; }
.notice--error { background: #8b2e2e; }

.hero { position: relative; min-height: 830px; padding: 178px 0 155px; overflow: hidden; background: #171717; color: white; }
.hero__image, .hero__overlay { position: absolute; inset: 0; }
.hero__image { background-position: center; background-size: cover; transform: scale(1.015); }
.hero__overlay { background: linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.82) 36%, rgba(10,10,10,.22) 72%, rgba(10,10,10,.12) 100%), linear-gradient(0deg, rgba(10,10,10,.45), transparent 42%); }
.hero__inner { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.hero__content { max-width: 775px; }
.hero h1 { margin-bottom: 30px; }
.hero__lead { max-width: 640px; margin-bottom: 38px; color: rgba(255,255,255,.76); font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__expert { display: flex; width: 255px; align-items: center; gap: 13px; padding: 12px; border: 1px solid rgba(255,255,255,.18); background: rgba(15,15,15,.42); backdrop-filter: blur(12px); }
.hero__expert > div:last-child { display: grid; }
.hero__expert strong { font-size: 13px; }
.hero__expert span { color: rgba(255,255,255,.58); font-size: 10px; }
.expert-photo { width: 68px; height: 68px; flex: 0 0 auto; border: 2px solid rgba(244,160,0,.72); border-radius: 50%; object-fit: cover; object-position: 50% 34%; }
.expert-placeholder { position: relative; display: grid; width: 68px; height: 68px; flex: 0 0 auto; place-items: center; overflow: hidden; background: linear-gradient(145deg, #383735, #181818); }
.expert-placeholder::after { position: absolute; right: -10px; bottom: -18px; width: 66px; height: 66px; border: 1px solid rgba(244,160,0,.45); border-radius: 50%; content: ''; }
.expert-placeholder__label { position: absolute; top: 6px; left: 6px; font-size: 6px!important; letter-spacing: .05em; text-transform: uppercase; }
.expert-placeholder__initials { color: var(--orange)!important; font-size: 22px!important; font-weight: 800; }
.hero-search { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; padding: 22px 24px; background: white; color: var(--ink); box-shadow: var(--shadow); }
.hero-search form { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0; }
.hero-search label { display: grid; gap: 4px; padding: 0 24px; border-right: 1px solid var(--line); }
.hero-search label:first-child { padding-left: 4px; }
.hero-search label span, .catalog-filter label span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-search select { min-width: 0; padding: 3px 24px 3px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 800; }

.stats-strip { padding: 58px 0; background: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { display: grid; gap: 5px; padding: 0 38px; border-right: 1px solid var(--line); }
.stats-grid > div:first-child { padding-left: 0; }
.stats-grid > div:last-child { border: 0; }
.stats-grid strong { color: var(--orange); font-size: 42px; line-height: 1; letter-spacing: -.06em; }
.stats-grid span { color: var(--muted); font-size: 12px; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 420px; margin-bottom: 5px; color: rgba(255,255,255,.58); }
.section-heading--dark { color: white; }
.property-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.property-card { overflow: hidden; border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(25,20,12,.07); transition: transform .25s ease, box-shadow .25s ease; }
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.property-card__media { position: relative; display: block; height: 310px; overflow: hidden; background: #d9d5cc; }
.property-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.property-card:hover .property-card__media img { transform: scale(1.035); }
.property-card__badge, .property-card__status { position: absolute; top: 18px; padding: 8px 11px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.property-card__badge { left: 18px; background: var(--orange); }
.property-card__status { right: 18px; background: rgba(18,18,18,.82); color: white; backdrop-filter: blur(7px); }
.property-card__body { padding: 24px; }
.property-card__price { margin-bottom: 11px; color: var(--orange); font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.property-card h3 { margin-bottom: 13px; }
.property-card__address { display: flex; align-items: center; gap: 7px; min-height: 44px; margin-bottom: 18px; color: var(--muted); font-size: 12px; }
.property-card__facts { display: flex; flex-wrap: wrap; gap: 9px; padding-top: 17px; border-top: 1px solid var(--line); }
.property-card__facts span { padding: 6px 9px; border-radius: 4px; background: var(--paper); font-size: 10px; font-weight: 700; }
.property-card--placeholder { min-height: 480px; }
.placeholder-shimmer { background: linear-gradient(110deg,#dedad1 30%,#f3f0e9 46%,#dedad1 62%); background-size: 240% 100%; animation: shimmer 2s infinite linear; }
@keyframes shimmer { to { background-position-x: -240%; } }

.services { background: var(--ink); color: white; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.service-card { position: relative; min-height: 310px; padding: 28px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .2s ease, color .2s ease; }
.service-card:hover { background: var(--orange); color: var(--ink); }
.service-card__number { display: block; margin-bottom: 58px; color: var(--orange); font-size: 11px; font-weight: 800; }
.service-card:hover .service-card__number { color: var(--ink); }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.service-card:hover p { color: rgba(18,18,18,.65); }
.service-card__arrow { position: absolute; top: 26px; right: 28px; }

.owner__grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 82px; }
.owner__media { position: relative; }
.owner__media img { width: 100%; height: 610px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.owner__quote { position: absolute; right: -30px; bottom: 34px; display: flex; align-items: flex-start; gap: 13px; padding: 25px 30px; background: var(--orange); }
.owner__quote > span { font-size: 42px; line-height: .8; }
.owner__quote strong { font-size: 16px; line-height: 1.35; }
.owner__lead { max-width: 560px; margin-bottom: 34px; color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 19px; margin: 0 0 38px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 15px; }
.check-list li > svg { width: 30px; height: 30px; flex: 0 0 auto; padding: 6px; border-radius: 50%; background: var(--orange); }
.check-list li > span { display: grid; color: var(--muted); font-size: 12px; }
.check-list li strong { margin-bottom: 2px; color: var(--ink); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article > span { display: block; margin-bottom: 58px; color: var(--orange); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin-bottom: 14px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.about-expert { overflow: hidden; background: var(--ink); color: white; }
.about-expert__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.about-expert__copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 32px; color: rgba(255,255,255,.58); font-size: 17px; }
.about-expert__placeholder { position: relative; }
.portrait-placeholder { position: relative; display: grid; min-height: 560px; place-items: center; overflow: hidden; border: 1px dashed rgba(255,255,255,.28); background: radial-gradient(circle at 55% 40%, #3a3935, #1d1d1c 58%, #131313); }
.portrait-placeholder::before { position: absolute; width: 390px; height: 390px; border: 1px solid rgba(244,160,0,.5); border-radius: 50%; content: ''; }
.portrait-placeholder::after { position: absolute; bottom: -180px; width: 430px; height: 430px; border-radius: 50% 50% 0 0; background: #292927; content: ''; }
.portrait-placeholder strong { position: relative; z-index: 2; color: var(--orange); font-size: 92px; letter-spacing: -.08em; }
.portrait-placeholder > span { position: absolute; z-index: 3; top: 22px; left: 22px; font-size: 10px; letter-spacing: .1em; opacity: .55; text-transform: uppercase; }
.portrait-photo { position: relative; min-height: 560px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #1c1c1b; }
.portrait-photo img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: 48% 50%; filter: saturate(.95) contrast(1.04); }
.portrait-photo--large { min-height: 650px; border-color: var(--line); background: #e8e2d6; }
.portrait-photo--large img { object-position: 50% 46%; }
.about-expert__signature { position: absolute; z-index: 4; right: 22px; bottom: 22px; display: grid; padding: 18px 20px; background: var(--orange); color: var(--ink); }
.about-expert__signature span { font-size: 9px; }

.content-note { padding: 9px 12px; border: 1px dashed var(--line); color: var(--muted); font-size: 10px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-placeholder { padding: 28px; border: 1px dashed rgba(18,18,18,.24); border-radius: var(--radius); background: rgba(255,255,255,.45); }
.review-placeholder__stars { margin-bottom: 25px; color: var(--orange); letter-spacing: .18em; }
.review-placeholder > p { min-height: 75px; color: var(--muted); }
.review-placeholder > div:last-child { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.avatar-placeholder { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #d8d3c9; color: var(--muted); font-size: 10px; font-weight: 800; }

.consultation { background: var(--orange); }
.consultation__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 84px; }
.consultation__copy > p:not(.eyebrow) { max-width: 510px; }
.consultation__contact { display: grid; margin-top: 38px; }
.consultation__contact span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.consultation__contact a { font-size: 27px; font-weight: 800; }
.consultation__form { padding: 38px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead-form label { display: grid; gap: 7px; }
.lead-form label > span { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lead-form input:not([type=checkbox]), .lead-form select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 4px; background: white; outline: 0; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,160,0,.13); }
.lead-form__wide { grid-column: 1 / -1; }
.lead-form__consent { grid-template-columns: auto 1fr!important; align-items: center; gap: 9px!important; color: var(--muted); }
.lead-form__consent input { accent-color: var(--orange); }

.page-hero { min-height: 530px; padding: 175px 0 92px; background: radial-gradient(circle at 85% 10%, #3b3020, transparent 30%), var(--ink); color: white; }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 950px; margin-bottom: 25px; }
.page-hero p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.58); font-size: 18px; }
.page-hero .button { margin-top: 18px; }
.page-hero--catalog { background: linear-gradient(90deg, rgba(18,18,18,.95), rgba(18,18,18,.75)), url('../images/hero-generated.jpg') center/cover; }
.page-hero--service { background: linear-gradient(90deg,rgba(18,18,18,.95),rgba(18,18,18,.35)), url('../images/handover-generated.jpg') center/cover; }
.page-hero--small { min-height: 430px; }
.page-hero--small h1 { font-size: clamp(44px,6vw,78px); }

.catalog { padding: 0 0 110px; }
.catalog-filter { position: relative; z-index: 5; display: grid; grid-template-columns: 1fr 1fr 1.2fr .8fr 1fr 1fr auto; gap: 1px; margin-top: -36px; padding: 16px; border-radius: 8px; background: white; box-shadow: var(--shadow); }
.catalog-filter label { display: grid; gap: 4px; padding: 7px 13px; border-right: 1px solid var(--line); }
.catalog-filter input, .catalog-filter select { min-width: 0; border: 0; background: transparent; outline: 0; font-weight: 700; }
.catalog-filter .button { min-height: 50px; }
.filter-reset { position: absolute; top: calc(100% + 11px); right: 0; color: var(--muted); font-size: 11px; text-decoration: underline; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin: 75px 0 25px; }
.catalog-toolbar h2 { margin: 0; font-size: 28px; }
.catalog-toolbar span { color: var(--muted); font-size: 11px; }
.property-grid--catalog { row-gap: 28px; }
.pagination { margin-top: 45px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 6px; }
.pagination a, .pagination span { display: grid; min-width: 44px; height: 44px; place-items: center; padding: 0 13px; border: 1px solid var(--line); }
.pagination .current { border-color: var(--orange); background: var(--orange); }
.empty-state { grid-column: 1 / -1; padding: 70px 30px; border: 1px dashed var(--line); text-align: center; }
.empty-state strong { display: block; font-size: 25px; }
.empty-state p { color: var(--muted); }
.consultation--compact { padding: 90px 0; }

.property-head { padding: 132px 0 28px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; color: var(--muted); font-size: 11px; }
.property-head__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.property-head__top h1 { max-width: 820px; margin: 14px 0; font-size: clamp(38px,5vw,67px); }
.property-head__top p { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--muted); }
.property-head__tags { display: flex; gap: 8px; }
.property-head__tags span { padding: 6px 9px; background: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.property-head__tags span:last-child { background: #ded9cf; }
.property-head__price { display: grid; min-width: 240px; text-align: right; }
.property-head__price strong { font-size: 32px; }
.property-head__price span { color: var(--muted); font-size: 10px; }
.property-gallery { position: relative; overflow: hidden; border-radius: var(--radius); }
.property-gallery .swiper-wrapper { align-items: stretch; }
.property-gallery__item { position: relative; display: block; height: 630px; overflow: hidden; background: #d8d5cd; cursor: zoom-in; }
.property-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.property-gallery__item:hover img { transform: scale(1.03); }
.property-gallery__empty { grid-column: 1/-1; display: grid; place-items: center; border: 1px dashed var(--line); }
.property-gallery__nav { position: absolute; z-index: 4; top: 50%; display: grid; width: 52px; height: 52px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--ink); cursor: pointer; transform: translateY(-50%); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.property-gallery__nav::before { font-size: 30px; line-height: 1; }
.property-gallery__nav--prev { left: 18px; }
.property-gallery__nav--prev::before { content: '‹'; }
.property-gallery__nav--next { right: 18px; }
.property-gallery__nav--next::before { content: '›'; }
.property-gallery__pagination { position: absolute; z-index: 4; right: 18px; bottom: 18px; left: auto; width: auto; padding: 8px 12px; background: rgba(18,18,18,.74); color: white; font-size: 12px; font-weight: 800; }
.pswp { --pswp-bg: rgba(0,0,0,.94); }
.property-body { padding: 48px 0 110px; }
.property-body__grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; align-items: start; gap: 70px; }
.property-facts { display: grid; grid-template-columns: repeat(4,1fr); margin-bottom: 80px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.property-facts div { display: grid; gap: 10px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.property-facts span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.property-facts strong { font-size: 19px; }
.property-description, .property-features { margin-bottom: 72px; }
.property-description h2, .property-features h2 { font-size: 38px; }
.prose { color: var(--muted); font-size: 16px; }
.prose p { margin-bottom: 1.5em; }
.property-sidebar { position: sticky; top: 110px; }
.property-contact-card { padding: 26px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.property-contact-card__person { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.property-contact-card__person > div { display: grid; }
.property-contact-card__person span { color: var(--muted); font-size: 10px; }
.property-contact-card p { color: var(--muted); font-size: 13px; }
.property-contact-card .button { width: 100%; margin-top: 8px; }

.service-detail__grid, .technology-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; margin-bottom: 80px; }
.prose--large { font-size: 20px; }
.process-grid--service { margin-top: 40px; }
.process-grid--large { grid-template-columns: repeat(3,1fr); }
.services-page-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-page-card { display: grid; grid-template-columns: 55px 1fr; gap: 24px; min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease; }
.service-page-card:hover { background: white; }
.service-page-card > span { color: var(--orange); font-size: 11px; font-weight: 800; }
.service-page-card p { color: var(--muted); }
.service-page-card strong { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.service-page-card svg { width: 16px; }

.about-page__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.portrait-placeholder--large { min-height: 650px; color: white; }
.large-copy { color: var(--ink); font-size: 22px; }
.about-page__grid > div:last-child > p:not(.eyebrow) { color: var(--muted); }
.about-values { display: grid; gap: 1px; margin-top: 40px; background: var(--line); }
.about-values > div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 18px; background: var(--paper); }
.about-values span { color: var(--muted); font-size: 12px; }
.reviews-grid--page { grid-template-columns: repeat(3,1fr); }
.contacts-page__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.contact-list { display: grid; margin-top: 45px; border-top: 1px solid var(--line); }
.contact-list a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.contact-list strong { font-size: 18px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.blog-tabs a { padding: 10px 14px; border: 1px solid var(--line); background: rgba(255,255,255,.42); color: var(--muted); font-size: 12px; font-weight: 800; }
.blog-tabs a.is-active, .blog-tabs a:hover { border-color: var(--ink); background: var(--ink); color: white; }
.blog-card { padding: 28px; border: 1px solid var(--line); }
.blog-card > span { color: var(--muted); font-size: 10px; }
.blog-card h2 { margin: 35px 0 18px; font-size: 28px; }
.blog-card p { color: var(--muted); }
.related-properties { padding-top: 28px; }
.prose--page { max-width: 820px; margin: auto; font-size: 18px; }

.not-found { display: grid; min-height: 760px; place-items: center; background: var(--ink); color: white; text-align: center; }
.not-found span { color: var(--orange); font-size: 100px; font-weight: 800; line-height: 1; }
.not-found h1 { margin: 15px 0; font-size: 54px; }
.not-found p { color: rgba(255,255,255,.6); }
.not-found .button { margin: 8px 4px; }

.site-footer { padding: 80px 0 25px; background: #0c0c0c; color: white; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr .8fr; gap: 80px; padding-bottom: 65px; }
.brand--footer .brand__logo { box-shadow: none; }
.site-footer__top > div:first-child > p { margin-top: 24px; color: rgba(255,255,255,.48); font-size: 13px; }
.site-footer__nav ul { display: grid; gap: 10px; }
.site-footer__nav a, .site-footer__contacts a { color: rgba(255,255,255,.66); font-size: 13px; }
.site-footer__contacts { display: grid; align-content: start; gap: 10px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.34); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .site-nav { display: none; position: fixed; inset: 82px 0 0; padding: 40px 24px; background: var(--ink); }
    .site-nav.is-open { display: block; }
    .site-nav ul { display: grid; gap: 24px; }
    .site-nav a { font-size: 26px; }
    .menu-toggle { display: block; }
    .site-header__actions { margin-left: auto; }
    .hero-search form { grid-template-columns: repeat(4,1fr); }
    .hero-search .button { grid-column: 1/-1; margin-top: 15px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .catalog-filter { grid-template-columns: repeat(3,1fr); }
    .catalog-filter .button { grid-column: span 2; }
    .filter-reset { position: static; display: grid; place-items: center; }
}

@media (max-width: 860px) {
    .section { padding: 82px 0; }
    .hero { min-height: 900px; padding-top: 155px; }
    .hero__overlay { background: linear-gradient(90deg, rgba(10,10,10,.9), rgba(10,10,10,.35)), linear-gradient(0deg,rgba(10,10,10,.9),transparent 65%); }
    .hero__expert { display: none; }
    .hero-search form { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 35px; }
    .stats-grid > div:nth-child(2) { border-right: 0; }
    .property-grid, .reviews-grid, .reviews-grid--page, .blog-grid { grid-template-columns: 1fr 1fr; }
    .section-heading { display: grid; align-items: start; }
    .owner__grid, .about-expert__grid, .consultation__grid, .service-detail__grid, .technology-intro, .about-page__grid, .contacts-page__grid { grid-template-columns: 1fr; }
    .owner__quote { right: 20px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .about-expert__copy { order: 2; }
    .property-head__top { align-items: flex-start; flex-direction: column; }
    .property-head__price { text-align: left; }
    .property-gallery__item { height: 520px; }
    .property-body__grid { grid-template-columns: 1fr; }
    .property-sidebar { position: static; }
    .services-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 68px 0; }
    h1 { font-size: 48px; }
    h2 { font-size: 38px; }
    .site-header__inner { min-height: 70px; }
    .site-nav { inset: 70px 0 0; }
    .brand__placeholder { width: 42px; height: 42px; }
    .brand__text strong { font-size: 14px; }
    .header-phone, .site-header__actions .button { display: none; }
    .hero { min-height: 920px; padding: 130px 0 260px; }
    .hero__image { background-position: 65% center; }
    .hero__lead { font-size: 16px; }
    .hero__actions .button { width: 100%; }
    .hero-search { width: calc(100% - 28px); padding: 15px; }
    .hero-search form { grid-template-columns: 1fr 1fr; }
    .hero-search label { padding: 8px; border-bottom: 1px solid var(--line); }
    .stats-grid { gap: 25px 0; }
    .stats-grid > div { padding: 0 16px; }
    .stats-grid > div:nth-child(odd) { padding-left: 0; }
    .stats-grid strong { font-size: 32px; }
    .property-grid, .reviews-grid, .reviews-grid--page, .blog-grid { grid-template-columns: 1fr; }
    .property-card__media { height: 270px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 260px; }
    .owner__media img { height: 420px; }
    .owner__quote { right: 12px; bottom: 12px; }
    .process-grid, .process-grid--large { grid-template-columns: 1fr; }
    .process-grid article { min-height: 210px; }
    .portrait-placeholder { min-height: 470px; }
    .consultation__form { padding: 23px; }
    .lead-form { grid-template-columns: 1fr; }
    .lead-form__wide { grid-column: auto; }
    .page-hero { min-height: 450px; padding: 135px 0 70px; }
    .catalog-filter { grid-template-columns: 1fr 1fr; margin-top: -25px; }
    .catalog-filter .button { grid-column: 1/-1; }
    .catalog-toolbar { align-items: flex-start; flex-direction: column; gap: 8px; }
    .property-gallery { margin-inline: -14px; border-radius: 0; }
    .property-gallery__item { height: 430px; }
    .property-gallery__item:hover img { transform: none; }
    .property-gallery__nav { display: none; }
    .property-gallery__pagination { right: 28px; bottom: 12px; }
    .property-facts { grid-template-columns: 1fr 1fr; }
    .service-page-card { grid-template-columns: 36px 1fr; padding: 22px; }
    .about-values > div { grid-template-columns: 1fr; gap: 5px; }
    .contact-list a { align-items: flex-start; flex-direction: column; }
    .site-footer__top { grid-template-columns: 1fr; gap: 38px; }
    .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto!important; transition-duration: .01ms!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; }
    .reveal { opacity: 1; transform: none; }
}
