:root {
  --ink: #151515;
  --muted: #65615e;
  --paper: #ffffff;
  --soft: #f2f1ef;
  --sand: #f7eee8;
  --accent: #d56137;
  --accent-dark: #a94120;
  --dark: #0d0d0d;
  --line: rgba(21, 21, 21, .14);
  --container: 1180px;
  --radius: 2px;
  --shadow: 0 28px 70px rgba(28, 20, 16, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { line-height: 1.65; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); }
.center { text-align: center; }
.skip-link { position: fixed; z-index: 999999; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 14px; background: #fff; color: #000; }
.skip-link:focus { transform: none; }
.section-kicker { margin-bottom: 18px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h2 { margin-bottom: 28px; font-size: clamp(38px, 5vw, 72px); line-height: .98; letter-spacing: -.045em; }
h3 { font-size: 24px; line-height: 1.15; }

.site-header { position: absolute; z-index: 40; top: 0; left: 0; width: 100%; color: #fff; }
.header-inner { min-height: 96px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; border-radius: 1px; }
.brand-name { font-size: 18px; font-weight: 800; letter-spacing: .13em; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-right: auto; }
.site-nav a { font-size: 14px; text-decoration: none; white-space: nowrap; }
.site-nav a:hover { color: #f59a77; }
.header-sales { display: grid; gap: 2px; font-size: 13px; }
.header-sales a { color: #ff7546; font-size: 20px; text-decoration: none; white-space: nowrap; }
.header-cta, .button { min-height: 54px; border: 0; border-radius: 0; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; cursor: pointer; text-decoration: none; transition: background .2s ease, transform .2s ease, color .2s ease; }
.header-cta, .button-primary { background: var(--accent); color: #fff; }
.header-cta:hover, .button-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; padding: 12px; background: transparent; color: #fff; cursor: pointer; }
.menu-toggle span { display: block; height: 3px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 760px; height: 100svh; max-height: 980px; color: #fff; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 55%; }
.hero-shade { background: linear-gradient(90deg, rgba(7, 13, 17, .76) 0%, rgba(7, 13, 17, .42) 48%, rgba(7, 13, 17, .2) 100%); }
.hero-inner { position: relative; height: 100%; display: flex; align-items: center; padding-top: 96px; }
.hero-copy { width: min(760px, 70%); }
.hero-overline { margin-bottom: 26px; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { margin-bottom: 28px; font-size: clamp(68px, 8.5vw, 128px); line-height: .86; letter-spacing: .035em; }
.hero-lead { max-width: 720px; margin-bottom: 36px; font-size: clamp(19px, 2vw, 25px); line-height: 1.42; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; width: 30px; height: 48px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; transform: translateX(-50%); }
.hero-scroll span { position: absolute; top: 9px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #fff; transform: translateX(-50%); animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0%, 100% { transform: translate(-50%, 0); opacity: .4; } 50% { transform: translate(-50%, 18px); opacity: 1; } }

.status-section, .project-section, .details-section, .summary-section, .investment-section, .plans-section, .payment-section, .construction-section, .visit-section, .contacts-section { padding: 110px 0; }
.status-grid, .project-grid, .summary-grid, .visit-grid, .contacts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(54px, 8vw, 120px); }
.status-copy h2 { margin-bottom: 12px; }
.status-copy h3 { margin-bottom: 26px; font-size: 30px; }
.check-list { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; line-height: 1.55; }
.check-list li::before { content: ""; position: absolute; top: .62em; left: 0; width: 9px; height: 9px; border: 2px solid var(--accent); border-radius: 50%; }
.status-image { margin: 0; }
.status-image img { width: 100%; aspect-ratio: 1.25; object-fit: cover; box-shadow: var(--shadow); }

.project-section { background: var(--soft); }
.project-grid { align-items: center; }
.project-collage { display: grid; grid-template-columns: .82fr 1.18fr; grid-template-rows: 1fr 1fr; gap: 18px; min-width: 0; }
.project-collage img { width: 100%; height: 100%; object-fit: cover; min-width: 0; }
.project-collage .project-tall { grid-row: 1 / 3; }
.project-copy p:not(.section-kicker) { color: var(--muted); font-size: 18px; }

.details-section { background: #fff; }
.detail-icons { margin-top: 65px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.detail-icons article { min-height: 190px; padding: 36px 24px; display: grid; place-items: center; align-content: center; gap: 18px; text-align: center; background: #fff; }
.detail-icon { color: var(--accent); font-size: 43px; line-height: 1; }
.detail-icons h3 { margin: 0; font-size: 18px; }

.benefits-section { padding: 25px 0 110px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.benefit-card { position: relative; min-height: 390px; overflow: hidden; color: #fff; }
.benefit-card::before { content: ""; position: absolute; inset: 0; background: var(--card-image) center / cover no-repeat; transition: transform .5s ease; }
.benefit-card:hover::before { transform: scale(1.035); }
.benefit-card > div { position: absolute; inset: auto 0 0; z-index: 1; padding: 32px; background: linear-gradient(0deg, rgba(8,8,8,.9), transparent); }
.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { margin: 0; }
.benefit-color { background: var(--accent); }
.benefit-color::before, .benefit-dark::before { display: none; }
.benefit-color > div, .benefit-dark > div { inset: 0; display: grid; align-content: end; background: transparent; }
.benefit-dark { background: var(--dark); }

.facts-section { padding: 100px 0; background: var(--sand); }
.facts-shell { display: grid; gap: 50px; }
.facts-heading { max-width: 820px; }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.facts-grid article { min-height: 138px; padding: 28px; display: grid; align-content: center; gap: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.64); }
.facts-grid strong { font-size: 22px; }
.facts-grid span { color: var(--muted); }

.lead-section { padding: 100px 0; color: #fff; background: linear-gradient(rgba(13,13,13,.72), rgba(13,13,13,.72)), url('/assets/images/hero.webp') center / cover; }
.lead-shell { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(46px, 7vw, 90px); }
.lead-shell h2 { font-size: clamp(38px, 4.4vw, 64px); }
.lead-shell > div p:last-child { font-size: 18px; }

.lead-form { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; min-width: 0; }
.lead-form > label:not(.consent):not(.honeypot) { display: grid; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lead-form input[type="text"], .lead-form input[type="tel"], .lead-form input:not([type]) { width: 100%; min-width: 0; height: 58px; border: 1px solid rgba(255,255,255,.5); border-radius: 0; padding: 0 18px; background: rgba(255,255,255,.96); color: #111; font-size: 16px; outline: none; }
.lead-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(213,97,55,.2); }
.lead-form .button { align-self: end; height: 58px; }
.form-status { display: none; grid-column: 1 / -1; padding: 12px 14px; background: rgba(255,255,255,.12); color: inherit; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fff1ed; color: #9d2d0e; }
.consents { grid-column: 1 / -1; display: grid; gap: 10px; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; font-size: 12px; line-height: 1.4; text-transform: none; letter-spacing: 0; font-weight: 400; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--accent); }
.consent a { text-underline-offset: 2px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.summary-section { background: #fff; }
.summary-grid { align-items: start; }
.summary-list { border-top: 1px solid var(--line); }
.summary-list details { border-bottom: 1px solid var(--line); }
.summary-list summary { padding: 24px 46px 24px 0; position: relative; cursor: pointer; font-size: 20px; font-weight: 800; list-style: none; }
.summary-list summary::-webkit-details-marker { display: none; }
.summary-list summary::after { content: "+"; position: absolute; top: 20px; right: 2px; color: var(--accent); font-size: 30px; font-weight: 400; }
.summary-list details[open] summary::after { content: "−"; }
.summary-list details p { padding: 0 46px 22px 0; color: var(--muted); }

.investment-section { background: var(--soft); }
.investment-section .narrow p:last-child { color: var(--muted); font-size: 18px; }
.investment-image { margin-top: 52px; }
.investment-image img { width: 100%; max-height: 680px; object-fit: cover; object-position: center 38%; }
.investment-form-panel { margin-top: 28px; padding: 38px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 42px; align-items: start; color: #fff; background: var(--dark); }
.investment-form-panel h3 { margin-bottom: 8px; font-size: 31px; }
.investment-form-panel p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.compact-form { grid-template-columns: .8fr 1fr; }

.plans-section { background: #fff; }
.plans-heading { margin-bottom: 56px; padding: 58px 0; color: #fff; background: var(--accent); text-align: center; }
.plans-heading .section-kicker { color: #fff; }
.plans-heading h2 { margin-bottom: 14px; }
.plans-heading p { margin-bottom: 0; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.plan-card { border: 1px solid var(--line); background: #fff; min-width: 0; }
.plan-card img { width: 100%; aspect-ratio: 1.37; object-fit: cover; }
.plan-card > div { padding: 24px; }
.plan-card span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.plan-card h3 { min-height: 54px; margin: 10px 0 20px; }
.plan-card button { border: 0; padding: 0; color: var(--accent); background: none; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; cursor: pointer; }

.payment-section { background: var(--soft); }
.payment-section h2 { margin-bottom: 52px; }
.payment-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.payment-grid article { min-height: 190px; padding: 30px; display: grid; align-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.payment-grid span { color: var(--accent); font-size: 13px; font-weight: 800; }
.payment-grid h3 { margin: 0; }

.construction-section h2 { margin-bottom: 48px; }
.construction-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.construction-grid figure { margin: 0; min-width: 0; }
.construction-grid img { width: 100%; aspect-ratio: 1.28; object-fit: cover; }
.construction-grid figcaption { padding-top: 12px; font-size: 13px; font-weight: 800; }

.visit-section { color: #fff; background: #555452; }
.visit-grid { align-items: start; }
.visit-grid h2 { font-size: clamp(38px, 4.5vw, 64px); }

.contacts-section { background: var(--soft); }
.contacts-grid { align-items: stretch; }
.contacts-grid > div:first-child { align-self: center; }
.contacts-phone { display: inline-block; margin: 8px 0 24px; color: var(--accent); font-size: clamp(28px, 4vw, 48px); font-weight: 800; text-decoration: none; }
.contacts-image img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }

.site-footer { padding: 44px 0; color: #fff; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.footer-grid nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 22px; }
.footer-grid nav a, .footer-up { color: rgba(255,255,255,.74); font-size: 12px; text-decoration: none; }

.legal-page { background: var(--soft); }
.legal-header { color: #fff; background: var(--dark); }
.legal-header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-back { color: #fff; font-size: 14px; text-decoration: none; }
.legal-main { padding: 72px 0 96px; }
.legal-document { max-width: 920px; padding: 58px; background: #fff; box-shadow: 0 20px 55px rgba(20,20,20,.08); }
.legal-document .eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-document h1 { margin: 0 0 34px; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: -.04em; }
.legal-document h2 { margin: 42px 0 18px; font-size: 27px; line-height: 1.2; letter-spacing: -.02em; }
.legal-document p, .legal-document li { color: #34312f; font-size: 16px; line-height: 1.65; }
.legal-document a { color: var(--accent-dark); }
.legal-document ul, .legal-document ol { padding-left: 24px; }
.legal-document table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.legal-document th, .legal-document td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.legal-document th { background: var(--sand); }
.legal-page .site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-page .site-footer p { margin: 0; }
.legal-page .site-footer a { color: #fff; text-decoration: none; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 2147482500; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(10,10,10,.76); }
.modal-dialog { position: relative; width: min(600px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 44px; background: #fff; box-shadow: var(--shadow); }
.modal-dialog h2 { margin-bottom: 12px; font-size: clamp(36px, 5vw, 54px); }
.modal-dialog > p:not(.section-kicker) { color: var(--muted); }
.modal-close { position: sticky; z-index: 2; top: 0; float: right; width: 44px; height: 44px; margin: -24px -24px 0 16px; border: 0; border-radius: 50%; display: grid; place-items: center; padding: 0 0 3px; color: #fff; background: var(--dark); font-size: 31px; line-height: 1; cursor: pointer; }
.modal-form { clear: both; color: var(--ink); }
.modal-form input[type="text"], .modal-form input[type="tel"], .modal-form input:not([type]) { border-color: var(--line); background: #fff; }

@media (max-width: 1120px) {
  .header-inner { gap: 20px; }
  .site-nav { gap: 18px; }
  .header-sales { display: none; }
  .benefit-card { min-height: 340px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, var(--container)); }
  .header-inner { min-height: 78px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; top: 72px; right: 18px; left: 18px; display: none; padding: 20px; background: rgba(13,13,13,.96); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 10px; font-size: 16px; }
  .hero { min-height: 700px; max-height: none; }
  .hero-copy { width: min(780px, 88%); }
  .status-section, .project-section, .details-section, .summary-section, .investment-section, .plans-section, .payment-section, .construction-section, .visit-section, .contacts-section { padding: 82px 0; }
  .status-grid, .project-grid, .summary-grid, .visit-grid, .contacts-grid { gap: 48px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lead-shell, .investment-form-panel { grid-template-columns: 1fr; }
  .plans-grid { gap: 14px; }
  .payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .construction-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 32px, var(--container)); }
  .brand-name { font-size: 14px; }
  h2 { font-size: clamp(34px, 12vw, 54px); }
  .hero { min-height: max(660px, 100svh); height: auto; }
  .hero-inner { min-height: max(660px, 100svh); padding: 104px 0 70px; align-items: center; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,13,17,.78), rgba(7,13,17,.32)); }
  .hero-copy { width: 100%; }
  .hero-overline { max-width: 300px; font-size: 11px; line-height: 1.5; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 64px); letter-spacing: .02em; }
  .hero-lead { max-width: 360px; font-size: 17px; }
  .hero-scroll { display: none; }
  .status-section, .project-section, .details-section, .summary-section, .investment-section, .plans-section, .payment-section, .construction-section, .visit-section, .contacts-section { padding: 68px 0; }
  .status-grid, .project-grid, .summary-grid, .visit-grid, .contacts-grid { grid-template-columns: 1fr; gap: 38px; }
  .status-image { order: -1; }
  .project-collage { height: 490px; gap: 10px; }
  .detail-icons { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }
  .detail-icons article { min-height: 145px; padding: 22px 12px; }
  .detail-icons h3 { font-size: 15px; }
  .benefits-section { padding-bottom: 68px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { min-height: 330px; }
  .facts-section, .lead-section { padding: 68px 0; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid article { min-height: 112px; }
  .lead-shell { gap: 34px; }
  .lead-form, .compact-form { grid-template-columns: 1fr; }
  .lead-form .button, .lead-form > label:not(.consent):not(.honeypot) { grid-column: 1 / -1; }
  .investment-image { margin-top: 34px; }
  .investment-form-panel { width: 100%; margin-top: 0; padding: 32px 20px; }
  .plans-heading { margin-bottom: 32px; padding: 48px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card h3 { min-height: 0; }
  .payment-grid { grid-template-columns: 1fr; }
  .payment-grid article { min-height: 130px; }
  .construction-grid { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; }
  .footer-grid nav { justify-content: flex-start; }
  .legal-main { padding: 28px 0 68px; }
  .legal-document { width: 100%; padding: 32px 18px; overflow-wrap: anywhere; }
  .legal-document table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal-header-inner { min-height: 72px; }
  .legal-page .site-footer .container { align-items: flex-start; flex-direction: column; }
  .modal { padding: 8px; }
  .modal-dialog { max-height: calc(100dvh - 16px); padding: 28px 20px; }
  .modal-close { margin: -14px -8px 0 10px; }
}

@media (max-width: 360px) {
  .container, .narrow { width: min(100% - 24px, var(--container)); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 12px; letter-spacing: .08em; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: max(620px, 100svh); }
  .hero-inner { min-height: max(620px, 100svh); padding-top: 88px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 16px; }
  .button { width: 100%; padding-inline: 16px; }
  .project-collage { height: 430px; }
  .benefit-card { min-height: 300px; }
  .construction-grid { grid-template-columns: 1fr; }
  .modal-dialog h2 { font-size: 33px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
