/* LOCAL_INTER_FONT_FACES: self-hosted Cyrillic-safe Inter */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.ttf') format('truetype'); }

:root {
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-soft: #ece8df;
  --ink: #1d211e;
  --muted: #6e716c;
  --line: rgba(29, 33, 30, .14);
  --accent: #c7a164;
  --accent-light: #e8d5b2;
  --forest: #244138;
  --danger: #9c3e35;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(36, 29, 20, .09);
  --container: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; }
h1 { margin-bottom: 26px; font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 500; }
h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5.6vw, 5.7rem); font-weight: 500; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2.1rem); font-weight: 550; }
h1 em, h2 em { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; letter-spacing: -.055em; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 300; padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 12px; }
.skip-link:focus { top: 20px; }

.site-header {
  position: absolute;
  z-index: 100;
  top: 14px;
  left: 0;
  width: 100%;
  transition: transform .35s ease;
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(27, 31, 28, .08);
  backdrop-filter: blur(18px);
}
.site-header.is-hidden { transform: translateY(-115%); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-logo { position: relative; width: 52px; height: 52px; flex: 0 0 auto; overflow: hidden; background: #1d1d1d; border-radius: 50%; }
.brand-logo img { position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; max-width: none; object-fit: cover; transform: translate(-50%, -49%); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); }
.desktop-nav a { position: relative; color: #4f534f; font-size: 14px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 14px; font-weight: 600; }
.menu-toggle { width: 45px; height: 45px; display: none; place-content: center; gap: 7px; background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.menu-toggle span { width: 22px; height: 1px; display: block; background: var(--ink); transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { width: min(calc(100% - 48px), var(--container)); max-height: 0; margin: 8px auto 0; overflow: hidden; opacity: 0; background: rgba(255, 255, 255, .96); border-radius: 20px; box-shadow: var(--shadow); transition: max-height .35s ease, opacity .25s ease; }
.mobile-menu.is-open { max-height: 480px; opacity: 1; }
.mobile-menu nav { display: grid; padding: 18px; }
.mobile-menu a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; font-weight: 650; }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 26px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 46px; padding-inline: 20px; font-size: 14px; }
.button-dark { color: #fff; background: var(--ink); box-shadow: 0 10px 24px rgba(29, 33, 30, .16); }
.button-dark:hover { background: var(--forest); }
.button-accent { color: #211d16; background: var(--accent-light); box-shadow: 0 12px 35px rgba(199, 161, 100, .22); }
.button-accent:hover { background: #dfc493; box-shadow: 0 16px 38px rgba(199, 161, 100, .32); }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { background: var(--surface); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 15px 4px; border-bottom: 1px solid var(--ink); }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateY(4px); }
.text-button { display: inline-flex; align-items: center; gap: 38px; padding: 12px 0; background: transparent; border: 0; border-bottom: 1px solid var(--ink); cursor: pointer; }
.header-actions .button[data-open-modal="consultation"],
.about-content .text-button[data-open-modal="consultation"] { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 26px; color: #fff; background: #2d7a4d; border: 0; border-radius: 999px; box-shadow: 0 10px 26px rgba(45,122,77,.22); font-size: 16px; font-weight: 650; }
.header-actions .button[data-open-modal="consultation"]:hover,
.about-content .text-button[data-open-modal="consultation"]:hover { background: #24663f; }

.hero { min-height: 100svh; padding: 132px 0 34px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(38px, 6vw, 90px); align-items: center; }
.hero-copy { padding-top: 18px; }
.eyebrow, .section-kicker { margin-bottom: 24px; color: var(--muted); font-size: 13px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow > span { width: 36px; height: 1px; background: var(--accent); }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #535752; font-size: clamp(1.05rem, 1.55vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-note { margin-top: 42px; display: flex; align-items: center; gap: 14px; }
.hero-note > span:last-child { display: grid; }
.hero-note strong { font-size: 14px; }
.hero-note small { margin-top: 3px; color: var(--muted); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #648d6b; box-shadow: 0 0 0 7px rgba(100, 141, 107, .12); }
.hero-media { position: relative; min-height: min(67vh, 720px); overflow: hidden; border-radius: 34px; background: #d8d3cb; box-shadow: var(--shadow); }
.hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(12, 20, 17, .7)); }
.hero-badge { position: absolute; z-index: 2; top: 30px; right: 30px; width: 118px; height: 118px; display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(245, 242, 236, .92); border-radius: 50%; backdrop-filter: blur(10px); }
.hero-badge strong { font-size: 38px; font-weight: 500; }
.hero-badge span { color: var(--muted); font-size: 10px; line-height: 1.3; text-transform: uppercase; }
.hero-caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; color: #fff; }
.hero-caption a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.facts { margin-top: 34px; padding-top: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { display: flex; align-items: center; gap: 14px; padding: 0 24px; }
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--accent); font-size: 26px; font-weight: 500; }
.fact span { font-size: 16px; }

.section-heading { max-width: 920px; margin-bottom: 70px; }
.section-heading > p:last-child { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.section-heading-row > p:last-child { max-width: 420px; margin: 0 0 8px; }
.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.image-card { position: relative; overflow: hidden; border-radius: var(--radius); background: #d9d3c9; }
.image-card-tall { aspect-ratio: .94; }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.image-card:hover img { transform: scale(1.025); }
.image-card figcaption { position: absolute; left: 20px; bottom: 20px; padding: 10px 14px; background: rgba(255,255,255,.88); border-radius: 999px; font-size: 12px; backdrop-filter: blur(10px); }
.number-label { margin-bottom: 28px; color: var(--accent); font-size: 20px; font-weight: 500; }
.about-content > p { max-width: 560px; color: var(--muted); font-size: 18px; }
.detail-list { margin: 44px 0; }
.detail-list > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; }
.detail-list dt { color: var(--muted); }
.detail-list dd { margin: 0; font-weight: 600; }

.benefits { background: var(--surface-soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit-card { min-height: 295px; display: flex; flex-direction: column; padding: 28px; background: var(--surface); border-radius: 22px; }
.benefit-card > span { color: var(--accent); font-size: 20px; font-weight: 500; }
.benefit-card h3 { margin: auto 0 15px; }
.benefit-card p { margin: 0; color: var(--muted); }
.benefit-card-accent { position: relative; color: #fff; background: var(--forest); }
.benefit-card-accent p { color: rgba(255,255,255,.7); padding-right: 50px; }
.benefit-card-accent button { position: absolute; right: 24px; bottom: 24px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); background: var(--accent-light); border: 0; border-radius: 50%; cursor: pointer; }

.gallery { overflow: hidden; background: var(--ink); color: #fff; }
.gallery .section-kicker { color: rgba(255,255,255,.48); }
.gallery-controls { display: flex; gap: 8px; }
.gallery-controls button { width: 56px; height: 56px; display: grid; place-items: center; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; cursor: pointer; transition: background .25s ease; }
.gallery-controls button:hover { background: rgba(255,255,255,.1); }
.gallery-track { display: flex; gap: 16px; overflow-x: auto; padding: 0 max(24px, calc((100vw - var(--container))/2)) 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { position: relative; flex: 0 0 min(34vw, 440px); min-width: 300px; aspect-ratio: .84; overflow: hidden; padding: 0; background: #303532; border: 0; border-radius: 24px; scroll-snap-align: start; cursor: zoom-in; }
.gallery-item-wide { flex-basis: min(48vw, 630px); aspect-ratio: 1.2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.6)); }
.gallery-item span { position: absolute; z-index: 2; left: 20px; bottom: 18px; color: #fff; font-size: 14px; }

.plans { background: var(--surface); }
.apartment-showcase { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.apartment-feature { position: relative; min-height: 640px; overflow: hidden; isolation: isolate; border-radius: var(--radius); background: var(--ink); }
.apartment-feature img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.apartment-feature::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(14,18,15,.08) 25%, rgba(14,18,15,.88) 100%); }
.apartment-feature-secondary img { object-position: 58% center; }
.apartment-feature-secondary::after { background: linear-gradient(180deg, rgba(14,18,15,.18), rgba(14,18,15,.93)); }
.apartment-feature:hover img { transform: scale(1.025); }
.apartment-overlay { position: absolute; inset: auto 0 0; padding: clamp(28px, 4vw, 54px); color: #fff; }
.apartment-overlay .availability { margin-bottom: 24px; }
.apartment-eyebrow { margin: 0 0 10px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .12em; }
.apartment-overlay h3 { max-width: 650px; margin: 0 0 18px; font-size: clamp(2.15rem, 4vw, 4rem); }
.apartment-feature-secondary h3 { font-size: clamp(1.9rem, 3vw, 3rem); }
.apartment-overlay > p:not(.apartment-eyebrow) { max-width: 480px; margin: 0 0 28px; color: rgba(255,255,255,.78); }
.apartment-button { color: var(--ink); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.apartment-button:hover { background: var(--accent-light); }
.availability { display: inline-flex; padding: 7px 12px; color: #4c6a52; background: #e4eee4; border-radius: 99px; font-size: 13px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.availability.wait { color: #785832; background: #f0e5d2; }
.apartment-note { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 16px; border: 1px solid var(--line); border-radius: 18px; }
.apartment-note > div { display: flex; justify-content: space-between; gap: 24px; padding: 22px 26px; }
.apartment-note > div + div { border-left: 1px solid var(--line); }
.apartment-note span { color: var(--muted); }
.apartment-note strong { text-align: right; }

.location { background: var(--surface-soft); }
.location-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.location-copy > p:not(.section-kicker) { max-width: 520px; margin: 32px 0; color: var(--muted); font-size: 18px; }
.location-copy address { display: grid; gap: 7px; margin-bottom: 32px; color: var(--accent); font-size: 14px; font-style: normal; font-weight: 650; letter-spacing: .04em; }
.location-copy address span { color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.map-card { position: relative; min-height: 650px; overflow: hidden; background: #efeee9; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.location-map-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }

.payment { background: var(--bg); }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.payment-card { min-height: 320px; display: flex; flex-direction: column; padding: 30px; background: var(--surface); border-radius: 22px; }
.payment-card > span { color: var(--accent); font-size: 20px; font-weight: 500; }
.payment-card h3 { margin: auto 0 16px; }
.payment-card p { color: var(--muted); }
.payment-card__btn { align-self: flex-start; padding: 8px 0; background: transparent; border: 0; border-bottom: 1px solid var(--ink); cursor: pointer; color: var(--ink); font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: opacity .25s ease; }
.payment-card__btn:hover { opacity: .65; }
.benefit-card button { align-self: flex-start; padding: 8px 0; background: transparent; border: 0; border-bottom: 1px solid var(--ink); cursor: pointer; }

.benefits-image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit-image-card { background: var(--surface); border-radius: 24px; overflow: hidden; }
.benefit-image-card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.benefit-image-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.benefit-image-card:hover .benefit-image-card__img img { transform: scale(1.04); }
.benefit-image-card__body { padding: 28px 28px 32px; }
.benefit-image-card__num { display: block; color: var(--accent); font-size: 14px; font-weight: 500; margin-bottom: 14px; }
.benefit-image-card h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; margin: 0 0 10px; }
.benefit-image-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

.lead-section { padding-top: 0; }
.lead-shell { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 7vw, 100px); padding: clamp(36px, 7vw, 90px); color: #fff; background: var(--forest); border-radius: 34px; }
.lead-copy .section-kicker { color: rgba(255,255,255,.5); }
.lead-copy h2 { font-size: clamp(2.7rem, 4.7vw, 5rem); }
.lead-copy > p:not(.section-kicker) { max-width: 570px; margin: 28px 0 42px; color: rgba(255,255,255,.68); font-size: 18px; }
.manager { display: flex; align-items: center; gap: 14px; }
.manager-avatar { position: relative; width: 58px; height: 58px; flex: 0 0 auto; overflow: hidden; background: #1d1d1d; border-radius: 50%; }
.manager-avatar img { position: absolute; left: 50%; top: 50%; width: 78px; height: 78px; max-width: none; object-fit: cover; transform: translate(-50%, -49%); }
.manager > div:last-child { display: grid; }
.manager span { color: rgba(255,255,255,.58); font-size: 13px; }
.lead-form { display: grid; gap: 17px; padding: 30px; color: var(--ink); background: var(--surface); border-radius: 24px; }
.lead-form label:not(.consent, .honeypot) { display: grid; gap: 8px; }
.lead-form label > span { color: var(--muted); font-size: 12px; }
.lead-form input, .lead-form select { width: 100%; height: 54px; padding: 0 2px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--accent); }
.lead-form input.is-invalid { border-color: var(--danger); }
.consent { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
.consent input { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--forest); }
.consent span { color: var(--muted); font-size: 11px; line-height: 1.4; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 20px; margin: -8px 0 0; font-size: 13px; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: #48694d; }

.site-footer { padding: 70px 0 90px; color: #fff; background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; align-items: start; }
.footer-contact, .footer-address { display: grid; gap: 10px; }
.footer-contact small, .footer-address small { color: rgba(255,255,255,.42); }
.footer-contact > a:first-of-type { font-size: clamp(1.5rem, 2.5vw, 2.3rem); }
.footer-contact > a:last-child, .footer-address a { color: var(--accent-light); font-size: 14px; }
.footer-bottom { margin-top: 70px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

.modal, .lightbox { position: fixed; z-index: 200; inset: 0; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.modal.is-open, .lightbox.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(17,21,18,.68); backdrop-filter: blur(7px); }
.modal-dialog { position: absolute; top: 50%; left: 50%; width: min(calc(100% - 32px), 540px); max-height: calc(100svh - 32px); overflow-y: auto; padding: 34px; background: var(--surface); border-radius: 28px; box-shadow: var(--shadow); transform: translate(-50%, -46%) scale(.98); transition: transform .3s ease; }
.modal.is-open .modal-dialog { transform: translate(-50%, -50%) scale(1); }
.modal-dialog h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.modal-dialog > p:not(.section-kicker) { color: var(--muted); }
.modal-close { position: absolute; right: 18px; top: 18px; width: 40px; height: 40px; display: grid; place-items: center; background: var(--surface-soft); border: 0; border-radius: 50%; font-size: 25px; cursor: pointer; }
.modal-form { padding: 18px 0 0; }
.lightbox { display: grid; grid-template-columns: 70px 1fr 70px; place-items: center; padding: 24px; color: #fff; background: rgba(11,13,12,.95); }
.lightbox figure { max-width: min(1100px, 84vw); max-height: 88vh; margin: 0; }
.lightbox img { max-height: 80vh; object-fit: contain; border-radius: 18px; }
.lightbox figcaption { margin-top: 10px; color: rgba(255,255,255,.62); text-align: center; }
.lightbox-close { position: absolute; right: 22px; top: 18px; width: 44px; height: 44px; color: #fff; background: rgba(255,255,255,.1); border: 0; border-radius: 50%; font-size: 28px; cursor: pointer; }
.lightbox-nav { width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Offer landing pages */
.offer-page .site-header { position: absolute; }
.offer-hero { min-height: 100svh; padding: 130px 0 64px; display: flex; align-items: center; }
.offer-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.offer-hero h1 { font-size: clamp(3.4rem, 6.6vw, 6.8rem); }
.offer-hero h1 span { color: #aeb5af; }
.offer-hero h1 .no-wrap { color: inherit; white-space: nowrap; }
.offer-hero-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); font-size: 18px; }
.offer-hero-media { position: relative; min-height: min(74vh, 760px); overflow: hidden; border-radius: 32px; }
.offer-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,24,21,.72)); }
.offer-hero-quote { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; padding-top: 22px; color: #fff; border-top: 1px solid rgba(255,255,255,.42); }
.offer-hero-quote small { display: block; color: rgba(255,255,255,.58); }
.offer-benefits { padding-top: 50px; }
.offer-story { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.offer-story article { min-height: 420px; padding: clamp(28px, 5vw, 60px); display: flex; flex-direction: column; justify-content: flex-end; background: var(--surface); border-radius: var(--radius); }
.offer-story article:first-child { background: var(--accent-light); }
.offer-story p { max-width: 480px; color: var(--muted); }
.offer-image-strip { display: grid; grid-template-columns: 1.4fr .6fr; gap: 16px; }
.offer-image-strip figure { min-height: 520px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.offer-image-strip img { width: 100%; height: 100%; object-fit: cover; }
.offer-proof { padding: 0 0 120px; }
.offer-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.offer-proof article { min-height: 355px; padding: 0 25px 25px; overflow: hidden; background: var(--surface); border-radius: 22px; }
.offer-proof-media { aspect-ratio: 1.55; margin: 0 -25px 22px; overflow: hidden; background: var(--surface-soft); }
.offer-proof-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.offer-proof article:hover .offer-proof-media img { transform: scale(1.035); }
.offer-proof-media-logo img { object-fit: contain; background: #050505; }
.offer-proof article span { color: var(--accent); font-family: Georgia, serif; }
.offer-proof article h3 { margin: 18px 0 12px; font-size: 1.5rem; }
.offer-proof article p { margin: 0; color: var(--muted); font-size: 14px; }
.offer-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .offer-hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .header-phone { display: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-image-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-image-card__body { padding: 22px 24px 26px; }
  .benefit-image-card__num { font-size: 13px; }
  .benefit-image-card p { font-size: 14px; }
  .offer-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .hero { padding-top: 118px; }
  .hero-grid, .offer-hero-grid, .about-grid, .location-grid, .lead-shell { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero-media { min-height: 560px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; row-gap: 0; padding-top: 0; }
  .fact, .fact:first-child { padding: 14px 0; min-width: 0; }
  .fact:nth-child(2) { border-right: 0; }
  .section-heading-row { display: block; }
  .section-heading-row > p:last-child { margin: 28px 0 0; }
  .image-card-tall { aspect-ratio: 1.15; }
  .apartment-showcase { grid-template-columns: 1fr; }
  .apartment-feature { min-height: 540px; }
  .apartment-feature-secondary { min-height: 460px; }
  .apartment-note { grid-template-columns: 1fr; }
  .apartment-note > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .payment-grid { grid-template-columns: 1fr; }
  .payment-card { min-height: 260px; }
  .map-card { min-height: 540px; }
  .lead-shell { padding: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .brand { grid-column: 1 / -1; }
  .offer-hero { padding-top: 118px; }
  .offer-hero-media { min-height: 560px; }
  .offer-story { grid-template-columns: 1fr; }
  .offer-image-strip { grid-template-columns: 1fr; }
  .offer-image-strip figure { min-height: 420px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { top: 8px; }
  .header-inner { min-height: 62px; padding-left: 12px; border-radius: 16px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-logo img { width: 66px; height: 66px; }
  .header-actions .button { display: none; }
  .mobile-menu { width: calc(100% - 24px); }
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 44px; }
  .hero { padding-top: 100px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: space-between; }
  .hero-note { margin-top: 28px; }
  .hero-media { min-height: 490px; border-radius: 24px; }
  .hero-badge { top: 16px; right: 16px; width: 96px; height: 96px; }
  .hero-badge strong { font-size: 30px; }
  .hero-caption { left: 18px; right: 18px; bottom: 16px; }
  .facts { margin-top: 20px; }
  .fact, .fact:first-child { display: grid; gap: 6px; padding: 18px 0; min-width: 0; }
  .fact strong { font-size: 26px; }
  .fact span { font-size: 20px; line-height: 1.25; }
  .about-grid { gap: 38px; }
  .about-content h3 { font-size: 32px; line-height: 1.08; }
  .about-content > p { font-size: 14px; line-height: 1.55; }
  .detail-list > div { padding: 17px 0; }
  .detail-list dt { font-size: 18px; }
  .detail-list dd { font-size: 18px; }
  .about-content .text-button { min-height: 56px; gap: 26px; padding: 0 24px; color: #fff; background: #2d7a4d; border: 0; border-radius: 999px; font-size: 17px; font-weight: 650; }
  .image-card-tall { aspect-ratio: .9; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 235px; }
  .gallery .section-heading-row { display: flex; align-items: end; }
  .gallery-controls { display: none; }
  .gallery-controls button { width: 46px; height: 46px; }
  .gallery-track { padding-inline: 12px; }
  .gallery-item, .gallery-item-wide { flex-basis: 84vw; min-width: 0; aspect-ratio: .86; }
  .apartment-feature { min-height: 480px; }
  .apartment-feature-secondary { min-height: 430px; }
  .apartment-overlay { padding: 26px 22px; }
  .apartment-overlay h3 { font-size: 2.15rem; }
  .apartment-note > div { display: grid; gap: 5px; padding: 18px 20px; }
  .apartment-note strong { text-align: left; }
  .map-card { min-height: 500px; }
  .lead-shell { width: 100%; padding: 50px 18px 70px; border-radius: 0; }
  .lead-form { padding: 24px 18px; }
  .lead-form input, .lead-form select { font-size: 16px; }
  .site-footer { padding-bottom: 72px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top .brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .modal-dialog { padding: 28px 20px 22px; border-radius: 22px; }
  .lightbox { grid-template-columns: 46px 1fr 46px; padding: 10px; }
  .lightbox figure { max-width: 100%; }
  .lightbox-nav { width: 40px; height: 40px; }
  .offer-hero { padding-top: 100px; }
  .offer-hero h1 { font-size: clamp(2.9rem, 13vw, 4.4rem); }
  .offer-hero-media { min-height: 490px; border-radius: 24px; }
  .offer-proof-grid { grid-template-columns: 1fr; }
  .offer-proof article { min-height: 360px; }
}

/* STATIC_PREVIEW_NO_JS: visual review without JavaScript */
.reveal,
.reveal.reveal-delay {
  opacity: 1;
  transform: none;
}
