:root {
  --ink: #101820;
  --ink-2: #1f2b36;
  --text: #3e4b58;
  --white: #fff;
  --mist: #f3f6f7;
  --line: #d9e0e4;
  --red: #c91f2c;
  --red-dark: #981720;
  --green: #496b5a;
  --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; line-height: 1.55; }
body.nav-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1240px, calc(100% - 40px)); margin: auto; }
.skip { position: fixed; top: -60px; left: 12px; z-index: 500; padding: 10px 14px; background: #fff; }
.skip:focus { top: 12px; }

.header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header); display: flex; align-items: center; padding: 0 clamp(22px, 4vw, 66px); color: #fff; transition: .25s ease; }
.header.solid, .subpage .header { color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 1px 0 rgba(16,24,32,.12); backdrop-filter: blur(12px); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; font-size: 19px; }
.logo img { width: 40px; height: 40px; object-fit: contain; }
.logo strong { color: var(--red); font-weight: 900; }
.main-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); margin-left: auto; }
.main-nav a { position: relative; text-decoration: none; font-size: 14px; font-weight: 750; }
.main-nav a::after { content: ""; position: absolute; right: 100%; bottom: -8px; left: 0; height: 2px; background: var(--red); transition: right .2s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.head-phone { margin-left: 28px; text-decoration: none; font-weight: 850; }
.head-cta { min-height: 42px !important; margin-left: 14px; padding: 9px 16px !important; }
.nav-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 11px; border: 1px solid currentColor; border-radius: 3px; color: inherit; background: transparent; font-size: 24px; }
.menu-lines { display: grid; gap: 5px; }
.menu-lines span { display: block; width: 22px; height: 2px; background: currentColor; }
.mobile-nav { position: fixed; inset: var(--header) 0 0; z-index: 99; padding: 22px; color: var(--ink); background: #fff; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: block; padding: 17px 2px; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 21px; font-weight: 800; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid var(--red); border-radius: 3px; color: #fff; background: var(--red); font-weight: 820; text-decoration: none; cursor: pointer; transition: .2s ease; }
.button:hover { transform: translateY(-2px); border-color: var(--red-dark); background: var(--red-dark); }
.button.light { color: var(--ink); border-color: #fff; background: #fff; }
.button.dark { border-color: var(--ink); background: var(--ink); }
.button.ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.text-link { color: var(--red); font-weight: 820; text-underline-offset: 5px; }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 860px; margin-bottom: 18px; font-size: clamp(46px, 6.3vw, 88px); line-height: 1.01; letter-spacing: 0; }
h2 { margin-bottom: 20px; font-size: clamp(34px, 4.5vw, 60px); line-height: 1.08; letter-spacing: 0; }
h3 { font-size: 23px; line-height: 1.2; }
.lead { color: var(--ink); font-size: clamp(20px, 2vw, 27px); line-height: 1.45; }

.home-hero { position: relative; min-height: min(890px, 94svh); display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--ink); }
.home-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% 56%; animation: hero-in 1.5s ease both; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,11,16,.84), rgba(6,11,16,.48) 48%, rgba(6,11,16,.03) 82%); }
.hero-content { position: relative; z-index: 1; max-width: 850px; margin-bottom: clamp(74px, 11vh, 120px); padding-left: clamp(20px, 7vw, 108px); }
.hero-content .eyebrow { color: #fff; }
.hero-content > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.88); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@keyframes hero-in { from { transform: scale(1.035); opacity: .6; } to { transform: scale(1); opacity: 1; } }

.facts { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); }
.facts div { min-height: 116px; display: grid; align-content: center; padding: 18px 26px; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts strong { font-size: 34px; line-height: 1; }
.facts span { margin-top: 8px; color: var(--text); font-size: 13px; }

.section { padding: clamp(76px, 9vw, 128px) 0; }
.split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(44px, 9vw, 130px); }
.section-copy { color: var(--text); font-size: 17px; }
.feature-image { position: relative; overflow: hidden; background: var(--mist); }
.feature-image img { width: 100%; min-height: 520px; object-fit: cover; transition: transform .55s ease; }
.feature-image:hover img { transform: scale(1.015); }
.feature-image .caption { position: absolute; right: 18px; bottom: 18px; padding: 11px 14px; color: #fff; background: rgba(16,24,32,.9); }
.dark-band { color: #fff; background: var(--ink); }
.dark-band .eyebrow { color: #ff7780; }
.dark-band p { color: rgba(255,255,255,.72); }
.benefits { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 50px; border-block: 1px solid rgba(255,255,255,.2); }
.benefits article { padding: 30px 23px 36px; border-right: 1px solid rgba(255,255,255,.2); }
.benefits article:last-child { border-right: 0; }
.benefits span { color: #ff838b; font-weight: 850; }
.benefits p { margin: 0; }

.project-strip { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 620px; background: var(--mist); }
.project-strip img { width: 100%; height: 100%; object-fit: cover; }
.project-strip-content { display: grid; align-content: center; padding: clamp(38px, 6vw, 86px); }
.project-strip-content p { color: var(--text); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.project-card { position: relative; min-height: 390px; overflow: hidden; color: #fff; background: var(--ink); }
.project-card img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: .45s ease; }
.project-card:hover img { transform: scale(1.035); opacity: .95; }
.project-card-content { position: absolute; inset: auto 0 0; padding: 70px 22px 22px; background: linear-gradient(transparent,rgba(7,12,18,.94)); }
.status { display: inline-block; margin-bottom: 8px; color: #ffadb2; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.project-card h3 { margin-bottom: 5px; }
.project-card p { margin: 0; color: rgba(255,255,255,.75); }

.cta-band { padding: 74px 0; color: #fff; background: var(--green); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-band h2 { max-width: 760px; margin: 0; font-size: clamp(32px,4vw,54px); }

.page-hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--ink); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,12,18,.84),rgba(7,12,18,.18)); }
.page-hero .wrap { position: relative; z-index: 1; padding-bottom: 70px; }
.page-hero h1 { font-size: clamp(44px,6vw,82px); }
.page-hero p { max-width: 650px; color: rgba(255,255,255,.85); font-size: 19px; }
.sold-hero::before { content: "Продаден проект"; position: absolute; z-index: 2; top: 120px; right: 0; padding: 12px 24px; color: #fff; background: var(--red); font-weight: 900; }
.breadcrumb { margin-bottom: 20px; font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,.75); }

.plans { display: grid; grid-template-columns: 190px 1fr; gap: 28px; margin-top: 38px; }
.tabs { display: flex; flex-direction: column; gap: 6px; }
.tabs button { min-height: 50px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 2px; text-align: left; color: var(--ink); background: #fff; font-weight: 800; cursor: pointer; }
.tabs button[aria-selected=true] { color: #fff; border-color: var(--red); background: var(--red); }
.plan-frame { border: 1px solid var(--line); background: #fff; }
.plan-head { min-height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 10px 17px; border-bottom: 1px solid var(--line); }
.plan-head button { border: 0; color: var(--red); background: none; font-weight: 800; cursor: pointer; }
.plan-frame img { width: 100%; height: auto; cursor: zoom-in; }
.spec-list { display: grid; grid-template-columns: repeat(2,1fr); margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.spec-list li { padding: 15px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.content-hero { padding: calc(var(--header) + 78px) 0 72px; background: var(--mist); }
.content-hero h1 { max-width: 900px; font-size: clamp(42px,6vw,78px); }
.content-hero p { max-width: 780px; color: var(--text); font-size: 20px; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 70px; }
.article h2 { margin-top: 55px; font-size: 38px; }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: var(--text); font-size: 17px; }
.side-contact { position: sticky; top: calc(var(--header) + 24px); align-self: start; padding: 24px; border-top: 4px solid var(--red); background: var(--mist); }
.side-contact a { display: block; margin-top: 14px; }

.contact-section { color: #fff; background: var(--green); }
.contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1fr); gap: 90px; }
.contact-info a,.contact-info p { display: grid; grid-template-columns: 90px 1fr; margin: 0; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.25); text-decoration: none; }
.contact-info small { color: rgba(255,255,255,.66); }
.form { padding: 34px; color: var(--ink); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 14px; font-weight: 780; }
.form input,.form textarea,.form select { min-height: 50px; width: 100%; padding: 11px 13px; border: 1px solid #b8c3ca; border-radius: 2px; background: #fff; }
.form textarea { min-height: 110px; resize: vertical; }
.form .check { grid-template-columns: 20px 1fr; font-weight: 450; }
.form .check input { min-height: 18px; width: 18px; }
.trap { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 24px; margin: 10px 0 0; font-weight: 750; }
.form-status.error { color: var(--red); }
.form-status.success { color: var(--green); }

.footer { padding: 54px clamp(20px,5vw,72px) 26px; color: #fff; background: #090e13; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 55px; }
.footer-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.footer h3 { margin-bottom: 13px; font-size: 15px; }
.footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.48); font-size: 13px; }

.quick-call,.to-top { position: fixed; z-index: 80; bottom: 24px; min-height: 50px; display: flex; align-items: center; justify-content: center; border: 0; color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(16,24,32,.2); text-decoration: none; cursor: pointer; }
.quick-call { left: 18px; gap: 8px; padding: 0 16px; font-weight: 850; }
.phone-symbol { font-size: 20px; line-height: 1; }
.to-top { right: 18px; width: 50px; opacity: 0; pointer-events: none; transition: .2s; font-size: 20px; }
.to-top.show { opacity: 1; pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; grid-template-columns: 58px 1fr 58px; align-items: center; padding: 68px 12px 16px; background: rgba(4,8,12,.96); }
.lightbox[hidden] { display: none; }
.lightbox figure { grid-column: 2; width: 100%; max-width: 1400px; min-width: 0; margin: auto; color: #fff; text-align: center; }
.lightbox img { display: block; width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 120px); margin: auto; object-fit: contain; }
.lightbox button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.08); font-size: 20px; }
.lightbox .close { position: absolute; top: 14px; right: 14px; }

@media (max-width: 1050px) {
  .main-nav,.head-phone,.head-cta { display: none; }
  .nav-toggle { display: block; }
  .benefits { grid-template-columns: repeat(2,1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  :root { --header: 66px; }
  .header { padding: 0 15px; }
  .logo { font-size: 16px; }
  .logo img { width: 34px; height: 34px; }
  .home-hero { min-height: 760px; }
  .home-hero > img { object-position: 64% center; }
  .home-hero::after { background: linear-gradient(0deg,rgba(6,11,16,.92),rgba(6,11,16,.5) 62%,rgba(6,11,16,.05)); }
  .hero-content { width: calc(100% - 32px); margin-bottom: 52px; padding-left: 16px; }
  h1 { font-size: 41px; }
  h2 { font-size: 36px; }
  .hero-content > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions { display: grid; }
  .facts { grid-template-columns: repeat(2,1fr); }
  .facts div { min-height: 92px; padding: 15px 17px; border-top: 1px solid var(--line); }
  .facts div:nth-child(2n) { border-right: 0; }
  .wrap { width: calc(100% - 30px); }
  .split,.project-strip,.contact-grid,.article-layout { grid-template-columns: 1fr; }
  .section-copy { padding-top: 0; }
  .feature-image img { min-height: 390px; }
  .project-strip img { min-height: 420px; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article,.benefits article:nth-child(2) { border-right: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .benefits article:first-child { border-top: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 330px; }
  .cta-band .wrap { align-items: stretch; flex-direction: column; }
  .page-hero { min-height: 590px; }
  .page-hero h1 { font-size: 43px; }
  .plans { grid-template-columns: 1fr; }
  .tabs { display: grid; grid-template-columns: repeat(3,1fr); }
  .tabs button { padding: 8px 3px; text-align: center; font-size: 13px; }
  .spec-list { grid-template-columns: 1fr; }
  .content-hero { padding-top: calc(var(--header) + 58px); }
  .article-layout { gap: 34px; }
  .side-contact { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top,.footer-columns { grid-template-columns: 1fr; }
  .quick-call { width: 52px; padding: 0; overflow: hidden; font-size: 0; }
  .quick-call .phone-symbol { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* 2026 project presentation refinements */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.subpage .page-hero {
  width: min(1600px, calc(100% - 40px));
  min-height: 590px;
  margin: calc(var(--header) + 20px) auto 0;
}
.subpage .page-hero > img { object-position: center; }
.new-project-hero > img { object-position: center 58%; }
.project-strip {
  width: min(1520px, calc(100% - 40px));
  margin: 28px auto 80px;
  overflow: hidden;
}
.section-intro { max-width: 780px; margin-bottom: 34px; color: var(--text); font-size: 18px; }
.section-intro.light { color: rgba(255,255,255,.75); }
.project-summary .spec-list strong { color: var(--ink); }
.project-media-section { background: var(--mist); }
.project-gallery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.gallery-tile { aspect-ratio: 4 / 3; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: #fff; cursor: zoom-in; }
.gallery-tile img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.gallery-tile:hover img { transform: scale(1.015); }
.plans-section { border-top: 1px solid var(--line); }
.plan-frame { min-width: 0; overflow: hidden; }
.plan-frame > img { max-height: 920px; object-fit: contain; background: #fff; }
.technical-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: 44px; padding: 1px; background: rgba(255,255,255,.2); }
.technical-grid article { min-height: 300px; display: grid; grid-template-columns: 42px 1fr; align-content: start; column-gap: 18px; padding: clamp(24px,3vw,38px); background: #111b25; }
.technical-grid article > span { grid-row: 1 / 5; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #ff838b; font-size: 12px; font-weight: 900; }
.technical-grid h3 { margin: 4px 0 18px; font-size: clamp(22px,2vw,29px); }
.technical-grid ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.technical-grid li { position: relative; padding-left: 17px; color: rgba(255,255,255,.82); line-height: 1.55; }
.technical-grid li::before { content: ""; position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: #ff4b55; }
.technical-grid li strong { color: #fff; }
.technical-grid .spec-benefit { margin: 22px 0 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.58); font-size: 14px; }
.location-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: clamp(44px,8vw,110px); align-items: start; }
.location-panel p:not(.eyebrow) { color: var(--text); font-size: 17px; }
.location-panel .lead { color: var(--ink); font-size: 23px; }
.location-points { border-top: 1px solid var(--line); }
.location-points div { display: grid; gap: 5px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.location-points strong { font-size: 18px; }
.location-points span { color: var(--text); }
.project-visual { width: min(1520px, calc(100% - 40px)); margin: 0 auto clamp(70px,8vw,112px); overflow: hidden; background: var(--mist); }
.project-visual img { width: 100%; height: auto; object-fit: contain; }
.quick-call {
  right: 18px;
  left: auto;
  width: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  animation: phone-ring 5s ease-in-out infinite;
}
.quick-call .phone-symbol { font-size: 23px; }
.to-top { right: 21px; bottom: 92px; width: 50px; border-radius: 50%; background: var(--ink); }
@keyframes phone-ring {
  0%, 84%, 100% { transform: rotate(0); }
  86% { transform: rotate(10deg); }
  88% { transform: rotate(-9deg); }
  90% { transform: rotate(8deg); }
  92% { transform: rotate(-6deg); }
  94% { transform: rotate(0); }
}
@media (max-width: 1050px) {
  .technical-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .subpage .page-hero { width: calc(100% - 24px); min-height: 520px; margin-top: calc(var(--header) + 12px); }
  .project-strip,.project-visual { width: calc(100% - 24px); margin-left: auto; margin-right: auto; }
  .new-project-hero > img { object-position: 58% center; }
  .technical-grid,.project-gallery,.location-layout { grid-template-columns: 1fr; }
  .technical-grid article { min-height: 0; grid-template-columns: 34px 1fr; column-gap: 14px; padding: 23px 20px; }
  .technical-grid article > span { width: 32px; height: 32px; }
  .location-layout { gap: 40px; }
  .plans { gap: 14px; }
  .tabs { grid-template-columns: repeat(2,1fr); }
  .plan-head { align-items: flex-start; gap: 8px; }
  .plan-head button { text-align: right; }
  .quick-call { right: 14px; width: 54px; min-height: 54px; }
  .to-top { right: 16px; bottom: 82px; }
}

@media (max-width: 760px) {
  .lightbox { grid-template-columns: 1fr; padding: 64px 10px 18px; }
  .lightbox figure { grid-column: 1; width: 100%; }
  .lightbox img { width: 100%; max-height: calc(100vh - 130px); object-fit: contain; }
  .lightbox > [data-prev], .lightbox > [data-next] {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16,24,32,.78);
  }
  .lightbox > [data-prev] { left: 8px; }
  .lightbox > [data-next] { right: 8px; }
  .lightbox figcaption { padding-top: 8px; text-align: center; }
}

/* Balanced outer spacing for large displays */
.home-hero {
  width: min(1660px, calc(100% - 40px));
  margin-inline: auto;
}
.home-hero + .facts,
.subpage .page-hero + .facts {
  width: min(1600px, calc(100% - 40px));
  margin-inline: auto;
}
.project-strip { align-items: center; }
.project-strip > img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: var(--mist);
}
@media (max-width: 760px) {
  .home-hero { width: calc(100% - 24px); }
  .home-hero + .facts,
  .subpage .page-hero + .facts { width: calc(100% - 24px); }
  .project-strip > img { min-height: 0; }
}
@media (max-width: 760px) {
  .page-hero h1 { font-size: 36px; line-height: 1.04; }
}

/* Refined page rhythm and descriptive mobile navigation */
.wrap { width: min(1240px, calc(100% - 56px)); }
.section { padding: clamp(58px, 7vw, 96px) 0; }
.split { gap: clamp(38px, 7vw, 96px); }
.content-hero { padding: calc(var(--header) + 58px) 0 58px; }
.about-image { min-height: 0; margin: 0; }
.about-image img { min-height: 440px; max-height: 620px; object-fit: cover; object-position: center; }
.description-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: clamp(34px,7vw,92px); align-items: start; }
.description-heading .lead { margin-bottom: 0; }
.story-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 38px; border-top: 1px solid var(--line); }
.story-grid article { padding: 24px 28px 10px 0; border-bottom: 1px solid var(--line); }
.story-grid article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.story-grid h3 { margin-bottom: 10px; }
.story-grid p,.description-note p { color: var(--text); }
.description-note { display: grid; grid-template-columns: 170px 1fr auto; gap: 22px; align-items: start; margin-top: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.description-note p { margin-bottom: 0; }
.description-note .text-link { white-space: nowrap; }

.quick-call { right: auto; left: 18px; }
.to-top { right: 18px; bottom: 24px; width: 56px; min-height: 56px; }
.nav-open .header { color: var(--ink); background: #fff; box-shadow: 0 1px 0 rgba(16,24,32,.12); }
.mobile-nav {
  inset: var(--header) 0 0 auto;
  width: min(470px,100%);
  padding: 22px 24px 34px;
  overflow-y: auto;
  background: #f5f7f8;
  box-shadow: -100vw 0 0 rgba(7,12,18,.46), -18px 0 45px rgba(7,12,18,.18);
  opacity: 0;
  transform: translateX(100%);
  transition: transform .26s ease, opacity .2s ease;
}
.mobile-nav.open { opacity: 1; transform: translateX(0); }
.mobile-nav::before {
  content: "Разгледайте Aspen Invest";
  display: block;
  margin: 3px 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-nav a {
  position: relative;
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
  padding: 15px 52px 15px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.mobile-nav a::before {
  content: "›";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--red);
  font-size: 25px;
  transform: translateY(-50%);
}
.mobile-nav a:hover,.mobile-nav a:focus-visible,.mobile-nav a.active {
  border-color: rgba(201,31,44,.5);
  box-shadow: 0 8px 22px rgba(16,24,32,.08);
  transform: translateX(-3px);
}
.mobile-nav a.active { color: var(--red); }
.mobile-nav .nav-hint { color: var(--text); font-size: 12px; font-weight: 520; line-height: 1.35; }
.menu-close { display: block; font-size: 32px; line-height: 20px; }

@media (max-width: 760px) {
  .wrap { width: calc(100% - 32px); }
  .section { padding: 52px 0; }
  .content-hero { padding: calc(var(--header) + 42px) 0 42px; }
  .description-heading,.story-grid,.description-note { grid-template-columns: 1fr; }
  .story-grid { margin-top: 26px; }
  .story-grid article,.story-grid article + article { padding: 20px 0; border-left: 0; }
  .description-note { gap: 7px; margin-top: 22px; }
  .description-note .text-link { white-space: normal; }
  .about-image img { min-height: 320px; }
  .quick-call { left: 14px; right: auto; }
  .to-top { right: 14px; bottom: 24px; width: 54px; min-height: 54px; }
  .mobile-nav { padding: 17px 15px 28px; }
  .mobile-nav a { padding: 13px 48px 13px 15px; }
}

/* Wide-screen composition and unified project presentation */
.home-page .header:not(.solid) {
  background: linear-gradient(180deg, rgba(7,12,18,.72), rgba(7,12,18,.28));
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
  backdrop-filter: blur(5px);
}
.home-page .home-hero {
  width: min(1920px, calc(100% - 24px));
  min-height: clamp(700px, 82svh, 840px);
}
.home-page .home-hero + .facts,
.subpage .page-hero + .facts {
  width: min(1920px, calc(100% - 24px));
}
.home-page .hero-content { max-width: 790px; margin-bottom: clamp(64px,8vh,92px); padding-left: clamp(28px,5vw,90px); }
.home-page .hero-content h1 { max-width: 760px; font-size: clamp(50px,5vw,78px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 24px; margin-top: 25px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 750; text-transform: uppercase; }
.hero-trust span { position: relative; }
.hero-trust span + span::before { content: ""; position: absolute; top: 50%; left: -13px; width: 3px; height: 3px; border-radius: 50%; background: var(--red); }
.wrap { width: min(1360px, calc(100% - 56px)); }
.project-jump { width: min(1920px, calc(100% - 24px)); display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 0 auto; border-bottom: 1px solid var(--line); background: #fff; }
.project-jump a { min-height: 68px; display: flex; align-items: center; gap: 11px; padding: 12px 24px; border-right: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 820; transition: color .18s ease, background .18s ease; }
.project-jump a:last-child { border-right: 0; }
.project-jump a:hover,.project-jump a:focus-visible { color: var(--red); background: #f7f8f9; }
.project-jump span { color: var(--red); font-size: 11px; }
.project-jump-sticky { position: sticky; top: var(--header); z-index: 70; grid-template-columns: repeat(5,minmax(0,1fr)); box-shadow: 0 9px 24px rgba(16,24,32,.07); }
.home-intro { padding-top: 76px; }
.section-heading-row { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); gap: clamp(34px,7vw,90px); align-items: end; margin-bottom: 34px; }
.section-heading-row h2,.section-heading-row p { margin-bottom: 0; }
.section-heading-row > p { color: var(--text); font-size: 17px; }
.completed-home { background: #f6f7f8; }
.completed-home .project-card { min-height: 360px; }
.project-proof { display: inline-block; margin-bottom: 8px; color: #fff; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.portfolio-note { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.portfolio-note p { max-width: 760px; margin: 0; color: var(--text); }
.subpage .page-hero { width: min(1920px, calc(100% - 24px)); }
.unified-plans { background: #f6f7f8; scroll-margin-top: calc(var(--header) + 72px); }
.unified-plans .plans { grid-template-columns: 160px minmax(0,1fr); margin-top: 0; }
.unified-plans .plan-frame > img { max-height: 780px; }
.technical-section,.location-section,.project-media-section { scroll-margin-top: calc(var(--header) + 70px); }
.project-media-section .project-gallery { grid-template-columns: repeat(3,minmax(0,1fr)); grid-template-rows: none; gap: clamp(10px,1.2vw,18px); }
.project-media-section .gallery-tile { aspect-ratio: 16 / 10; background: #e9edef; }
.project-media-section .gallery-tile-wide { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.project-media-section .gallery-tile img { object-fit: cover; object-position: center; }
.quick-call .phone-symbol { display: grid; width: 100%; height: 100%; place-items: center; font-size: 27px; line-height: 1; transform: translateY(-1px); }
.quick-call svg.phone-symbol { width: 27px; height: 27px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transform: none; }
.to-top { padding: 0; color: #fff; background: #101820; line-height: 1; }
.to-top span { display: grid; width: 100%; height: 100%; place-items: center; transform: translateY(-1px); }

@media (min-width: 1700px) {
  .header { padding-inline: 48px; }
  .main-nav { gap: 27px; }
  .home-page .hero-content { padding-left: 94px; }
}
@media (max-width: 1050px) {
  .project-jump,.project-jump-sticky { grid-template-columns: repeat(5,minmax(150px,1fr)); overflow-x: auto; }
  .home-page > .mobile-nav { text-shadow: none; }
  .project-media-section .project-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-media-section .gallery-tile-wide { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 760px) {
  .home-page .home-hero { width: calc(100% - 16px); min-height: 710px; }
  .home-page .home-hero + .facts,.subpage .page-hero + .facts { width: calc(100% - 16px); }
  .home-page .hero-content { margin-bottom: 42px; padding-inline: 16px; }
  .hero-trust { gap: 7px 18px; margin-top: 18px; }
  .project-jump { width: calc(100% - 16px); grid-template-columns: repeat(4,minmax(150px,1fr)); overflow-x: auto; }
  .project-jump-sticky { top: var(--header); grid-template-columns: repeat(5,minmax(150px,1fr)); }
  .project-jump a { min-height: 58px; padding: 10px 15px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 15px; margin-bottom: 24px; }
  .portfolio-note { align-items: stretch; flex-direction: column; }
  .unified-plans .plans { grid-template-columns: 1fr; }
  .technical-grid { grid-template-columns: 1fr; }
  .project-media-section .project-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .project-media-section .gallery-tile,.project-media-section .gallery-tile-wide { grid-column: auto; grid-row: auto; min-height: 0; aspect-ratio: 4 / 3; }
}

/* Contact experience and consent controls */
.contact-hero { padding: calc(var(--header) + 70px) 0 76px; color: #fff; background: #101820; }
.contact-hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(420px,.9fr); gap: clamp(50px,8vw,120px); align-items: end; }
.contact-hero h1 { max-width: 820px; font-size: clamp(48px,6vw,82px); }
.contact-hero .lead { max-width: 760px; color: rgba(255,255,255,.78); }
.contact-promises { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 820; text-transform: uppercase; }
.contact-promises span { padding-left: 15px; position: relative; }
.contact-promises span::before { content: ""; position: absolute; top: 7px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #ff5b66; }
.contact-direct { border-top: 1px solid rgba(255,255,255,.25); }
.contact-direct > * { display: grid; gap: 3px; padding: 20px 2px; border-bottom: 1px solid rgba(255,255,255,.25); color: #fff; text-decoration: none; }
.contact-direct > a { transition: padding-left .18s ease, background .18s ease; }
.contact-direct > a:hover { padding-left: 12px; background: rgba(255,255,255,.04); }
.contact-direct small { color: #ff8b93; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.contact-direct strong { font-size: clamp(19px,2vw,27px); overflow-wrap: anywhere; }
.contact-direct span { color: rgba(255,255,255,.62); font-size: 13px; }
.contact-form-section { background: #fff; }
.contact-form-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.65fr); gap: clamp(48px,8vw,110px); align-items: start; }
.contact-form-section .form { padding: clamp(24px,4vw,48px); border: 1px solid var(--line); box-shadow: 0 22px 50px rgba(16,24,32,.08); }
.form label > small { color: #73808b; font-weight: 500; }
.contact-steps { padding-top: 8px; }
.contact-steps ol { margin: 0 0 28px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-steps li > span { color: var(--red); font-size: 12px; font-weight: 900; }
.contact-steps strong { font-size: 18px; }
.contact-steps p { margin: 6px 0 0; color: var(--text); }
.contact-location { padding: clamp(20px,3vw,38px); background: #f3f5f6; }
.contact-location-grid { width: min(1880px,100%); display: grid; grid-template-columns: minmax(0,1.35fr) minmax(380px,.65fr); align-items: stretch; }
.map-frame { min-height: 560px; background: #dfe5e7; }
.map-frame iframe { width: 100%; height: 100%; min-height: 560px; border: 0; display: block; }
.location-copy { display: grid; align-content: center; padding: clamp(34px,6vw,82px); background: #fff; }
.location-copy h2 { font-size: clamp(34px,4vw,54px); }
.location-copy p:not(.eyebrow) { color: var(--text); }
.location-copy .lead { color: var(--ink); }
.cookie-panel { position: fixed; z-index: 500; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 30px; align-items: center; max-width: 1120px; margin: auto; padding: 22px 24px; color: #fff; background: #101820; box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.cookie-copy strong { font-size: 18px; }
.cookie-copy > p { max-width: 750px; margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }
.cookie-options { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.18); }
.cookie-options label { display: flex; gap: 12px; align-items: flex-start; }
.cookie-options input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--red); }
.cookie-options span { display: grid; }
.cookie-options small { color: rgba(255,255,255,.65); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-actions .button { min-height: 44px; padding: 9px 15px; }
.cookie-actions .button.ghost { color: #fff; border-color: rgba(255,255,255,.48); }
.cookie-customize,.cookie-settings { padding: 7px 3px; border: 0; color: rgba(255,255,255,.76); background: none; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.cookie-settings { margin-left: 24px; color: rgba(255,255,255,.55); font-size: 12px; }

@media (max-width: 900px) {
  .contact-hero-grid,.contact-form-layout,.contact-location-grid { grid-template-columns: 1fr; }
  .contact-direct { margin-top: 10px; }
  .map-frame,.map-frame iframe { min-height: 440px; }
  .cookie-panel { grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .contact-hero { padding: calc(var(--header) + 44px) 0 48px; }
  .contact-hero h1 { font-size: 42px; }
  .contact-promises { gap: 8px 15px; }
  .contact-form-section .form { padding: 22px 18px; }
  .contact-location { padding: 8px; }
  .map-frame,.map-frame iframe { min-height: 340px; }
  .location-copy { padding: 34px 20px; }
  .cookie-panel { right: 8px; bottom: 8px; left: 8px; max-height: calc(100vh - 16px); overflow-y: auto; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-settings { display: block; margin: 12px 0 0; }
}

/* Refined type scale and Aspen red accent system */
h1 { font-size: clamp(40px,4.8vw,68px); line-height: 1.04; }
h2 { font-size: clamp(28px,3vw,44px); line-height: 1.12; }
h3 { font-size: 21px; }
.home-page .hero-content h1 { max-width: 760px; font-size: clamp(44px,4.6vw,66px); }
.page-hero h1,.content-hero h1 { font-size: clamp(40px,4.6vw,64px); }
.contact-hero h1 { font-size: clamp(40px,4.6vw,64px); }
.cta-band h2,.location-copy h2 { font-size: clamp(28px,3vw,44px); }
.article h2 { font-size: clamp(27px,2.5vw,38px); }

.section .eyebrow { display: flex; align-items: center; gap: 10px; }
.section .eyebrow::before { content: ""; width: 24px; height: 2px; flex: 0 0 24px; background: var(--red); }
.dark-band .eyebrow::before { background: #ff6570; }
.section-heading-row > div { position: relative; padding-left: 18px; }
.section-heading-row > div::before { content: ""; position: absolute; inset: 2px auto 2px 0; width: 3px; background: var(--red); }
.section-heading-row .eyebrow::before { display: none; }
.story-grid article { position: relative; padding-top: 22px; border-top: 2px solid var(--red); }
.project-summary .spec-list li { position: relative; padding-left: 18px; }
.project-summary .spec-list li::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--red); }
.project-media-section { border-top: 1px solid rgba(201,31,44,.18); }
.project-media-section .gallery-tile { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.project-media-section .gallery-tile:hover { transform: translateY(-3px); border-color: rgba(201,31,44,.55); box-shadow: 0 14px 30px rgba(16,24,32,.12); }
.plans-section .tabs button[aria-selected=true] { box-shadow: inset 4px 0 0 var(--red-dark); }
.location-points > div { border-left: 3px solid rgba(201,31,44,.7); }
.project-card .sold-badge { position: absolute; z-index: 3; top: 16px; right: 16px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.46); border-radius: 2px; color: #fff; background: var(--red); box-shadow: 0 8px 20px rgba(16,24,32,.2); font-size: 11px; font-weight: 900; text-transform: uppercase; }

body { position: relative; isolation: isolate; }
body::before { content: ""; position: fixed; z-index: 0; top: var(--header); right: 0; bottom: 0; width: 50%; pointer-events: none; background: url("../assets-2026/floor-1.jpg") center / cover no-repeat; filter: grayscale(1) contrast(.72); opacity: .035; }
body > main,body > footer { position: relative; z-index: 1; }

@media (max-width: 760px) {
  h1 { font-size: 34px; line-height: 1.08; }
  h2 { font-size: 29px; line-height: 1.14; }
  h3 { font-size: 19px; }
  .home-page .hero-content h1,.page-hero h1,.content-hero h1,.contact-hero h1 { font-size: 36px; line-height: 1.06; }
  .cta-band h2,.location-copy h2,.article h2 { font-size: 29px; }
  .section-heading-row > div { padding-left: 13px; }
  .story-grid article { padding-top: 16px; }
  .project-card .sold-badge { top: 12px; right: 12px; padding: 7px 10px; font-size: 10px; }
  .project-jump,.project-jump-sticky { width: calc(100% - 16px); grid-template-columns: repeat(2,minmax(0,1fr)); overflow: visible; }
  .project-jump-sticky { position: relative; top: auto; }
  .project-jump a { min-width: 0; min-height: 50px; gap: 8px; padding: 8px 11px; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.25; }
  .project-jump a:last-child:nth-child(odd) { grid-column: 1 / -1; }
  body::before { width: 58%; background-size: auto 72vh; background-position: right 25%; opacity: .025; }
}

/* Promotional offer */
.promo-open { overflow: hidden; }
.promo-launch {
  position: fixed;
  z-index: 180;
  right: 18px;
  bottom: 92px;
  display: grid;
  gap: 1px;
  min-width: 156px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 3px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(16,24,32,.24);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.promo-launch:hover,.promo-launch:focus-visible { transform: translateY(-3px); background: var(--red-dark); }
.promo-launch span { font-size: 11px; font-weight: 850; text-transform: uppercase; }
.promo-launch strong { font-size: 19px; letter-spacing: 0; }
.promo-modal { position: fixed; z-index: 700; inset: 0; display: grid; place-items: center; padding: 24px; opacity: 0; transition: opacity .22s ease; }
.promo-modal[hidden] { display: none; }
.promo-modal.open { opacity: 1; }
.promo-backdrop { position: absolute; inset: 0; background: rgba(7,12,18,.78); backdrop-filter: blur(7px); }
.promo-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px,100%);
  max-height: calc(100svh - 48px);
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr);
  overflow: auto;
  border: 1px solid rgba(185,150,82,.55);
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 34px 95px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.08);
  transform: translateY(18px) scale(.985);
  transition: transform .24s ease;
}
.promo-modal.open .promo-dialog { transform: translateY(0) scale(1); }
.promo-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(7,12,18,.82);
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.promo-modal-media { min-height: 0; display: grid; place-items: center; padding: 0; background: #eef1ed; }
.promo-modal-media img { width: 100%; height: 100%; max-height: calc(100svh - 48px); object-fit: contain; display: block; }
.promo-modal-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,4vw,52px); }
.promo-modal-copy::before { content: ""; position: absolute; top: 0; left: clamp(28px,4vw,52px); width: 74px; height: 3px; background: #b99652; }
.promo-modal-copy h2 { margin-bottom: 14px; font-size: clamp(30px,3vw,43px); }
.promo-modal-copy > p:not(.eyebrow) { color: var(--text); }
.promo-price { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2px 14px; margin: 12px 0 18px; padding: 18px 0; border-block: 1px solid var(--line); }
.promo-price small { grid-column: 1 / -1; color: var(--red); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.promo-price s { color: #74808a; font-size: 17px; }
.promo-price strong { grid-column: 1; color: var(--red); font-size: clamp(38px,4vw,54px); line-height: 1; }
.promo-price span { color: var(--text); font-size: 12px; }
.promo-modal-copy ul { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; }
.promo-modal-copy li { position: relative; padding-left: 17px; color: var(--ink); font-weight: 650; }
.promo-modal-copy li::before { content: ""; position: absolute; top: 9px; left: 0; width: 6px; height: 6px; background: var(--red); }
.promo-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.promo-actions .button { flex: 1 1 150px; border-radius: 7px; text-align: center; }

.offer-hero { padding: calc(var(--header) + 64px) 0 62px; color: #fff; background: #101820; }
.offer-hero-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); gap: clamp(40px,8vw,110px); align-items: end; }
.offer-hero h1 { max-width: 880px; }
.offer-hero .lead { max-width: 760px; color: rgba(255,255,255,.72); }
.offer-price { padding-left: 28px; border-left: 3px solid var(--red); }
.offer-price small,.offer-price span { display: block; color: rgba(255,255,255,.68); }
.offer-price s { display: block; margin: 5px 0 3px; color: rgba(255,255,255,.58); font-size: 24px; }
.offer-price strong { display: block; color: #fff; font-size: clamp(48px,6vw,78px); line-height: 1; }
.offer-price span { margin-top: 7px; }
.offer-showcase { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.75fr); gap: clamp(34px,6vw,84px); align-items: center; }
.offer-visual img { width: 100%; height: auto; display: block; border-radius: 8px; box-shadow: 0 20px 54px rgba(16,24,32,.14); }
.offer-details h2 { margin-bottom: 18px; }
.offer-specs { margin: 26px 0; border-top: 1px solid var(--line); }
.offer-specs div { display: flex; justify-content: space-between; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.offer-specs span { color: var(--text); }
.offer-specs strong { text-align: right; }
.offer-plan-band { background: #f4f6f7; }
.offer-plan-grid { display: grid; grid-template-columns: minmax(330px,.65fr) minmax(0,1.35fr); gap: clamp(36px,7vw,96px); align-items: center; }
.offer-plan-copy p:not(.eyebrow) { color: var(--text); }
.offer-plan-image { position: relative; width: 100%; padding: 18px; border: 1px solid rgba(185,150,82,.36); border-radius: 8px; background: #fff; box-shadow: 0 18px 50px rgba(16,24,32,.1); color: var(--ink); text-align: left; cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.offer-plan-image:hover,.offer-plan-image:focus-visible { transform: translateY(-3px); border-color: rgba(185,150,82,.72); box-shadow: 0 24px 64px rgba(16,24,32,.16); }
.offer-plan-image img { width: 100%; height: auto; display: block; border-radius: 5px; }
.offer-floor-label { position: absolute; z-index: 1; top: 30px; left: 30px; padding: 9px 13px; border-radius: 5px; color: #fff; background: #101820; box-shadow: 0 8px 22px rgba(16,24,32,.2); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.offer-plan-open-label { position: absolute; right: 30px; bottom: 30px; padding: 10px 14px; border-radius: 5px; color: #fff; background: rgba(16,24,32,.9); box-shadow: 0 8px 22px rgba(16,24,32,.2); font-size: 13px; font-weight: 800; }
.offer-disclaimer { margin-top: 18px; color: #6d7780; font-size: 13px; }

@media (max-width: 900px) {
  .promo-dialog { grid-template-columns: minmax(0,1fr) minmax(300px,.8fr); }
  .promo-modal-copy { padding: 28px; }
  .offer-hero-grid,.offer-showcase,.offer-plan-grid { grid-template-columns: 1fr; }
  .offer-price { max-width: 420px; }
}
@media (max-width: 650px) {
  .promo-modal { align-items: start; padding: 8px; }
  .promo-dialog { max-height: calc(100svh - 16px); grid-template-columns: 1fr; }
  .promo-modal-media img { width: 100%; height: auto; max-height: 49svh; }
  .promo-modal-copy { padding: 24px 20px 22px; }
  .promo-modal-copy h2 { font-size: 28px; }
  .promo-modal-copy > p:not(.eyebrow) { font-size: 14px; }
  .promo-price { margin: 7px 0 14px; padding: 13px 0; }
  .promo-price strong { font-size: 38px; }
  .promo-modal-copy ul { gap: 5px; margin-bottom: 18px; font-size: 14px; }
  .promo-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .promo-actions .button { min-width: 0; padding-inline: 10px; }
  .promo-close { top: 10px; right: 10px; }
  .promo-launch { right: 12px; bottom: 88px; min-width: 132px; padding: 9px 12px; }
  .promo-launch strong { font-size: 17px; }
  .offer-hero { padding: calc(var(--header) + 42px) 0 46px; }
  .offer-price { padding-left: 18px; }
  .offer-price strong { font-size: 48px; }
  .offer-plan-image { padding: 8px; }
  .offer-floor-label { top: 16px; left: 16px; }
  .offer-plan-open-label { right: 16px; bottom: 16px; }
}
