:root {
  --ink: #20262a;
  --muted: #687078;
  --gold: #a88c61;
  --gold-dark: #8d7045;
  --gold-light: #eee8dd;
  --paper: #ffffff;
  --warm: #faf9f7;
  --warm-2: #f4f1ec;
  --line: #e6e2dc;
  --shadow: 0 16px 44px rgba(35, 39, 41, .09);
  --radius: 14px;
  --max: 1180px;
  --font-sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; transform: translateY(-150%); padding: 10px 16px; color: #fff; background: var(--ink); border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 max(30px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(32,38,42,.06);
  transition: height .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { height: 76px; box-shadow: 0 8px 24px rgba(32,38,42,.07); backdrop-filter: blur(14px); }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand strong { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -.045em; }
.brand span { margin-top: 7px; color: var(--gold-dark); font-size: 12px; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav a { position: relative; text-decoration: none; font-size: 14px; font-weight: 600; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .2s ease; }
.site-nav a:hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: calc(100svh - 96px); overflow: hidden; background: #c7c1b6; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,24,25,.16), transparent 54%), linear-gradient(0deg, rgba(20,24,25,.08), transparent 36%); }
.hero-card {
  position: absolute;
  top: 50%;
  left: max(30px, calc((100vw - var(--max)) / 2));
  width: min(490px, calc(100% - 60px));
  padding: 38px 42px 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}
.eyebrow { margin: 0 0 13px; color: var(--gold-dark); font-size: 11px; line-height: 1.3; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.025em; }
h1 { margin: 0; font-size: clamp(43px, 4.2vw, 61px); line-height: 1.08; }
h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.12; }
h3 { font-size: 22px; line-height: 1.25; }
.hero-card > p:not(.eyebrow) { max-width: 390px; margin: 20px 0 0; color: #424a4e; font-size: 17px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; margin-top: 27px; }
.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: 5px; text-decoration: none; font-size: 13px; font-weight: 750; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--gold); }
.button-primary:hover { background: var(--gold-dark); }
.button-secondary { background: #fff; border-color: #bbb5ab; }
.button-secondary:hover { border-color: var(--gold); color: var(--gold-dark); }
.hero-card small { display: block; margin-top: 20px; color: #7a7f82; font-size: 10px; }
.visual-note { position: absolute; right: 22px; bottom: 16px; padding: 6px 9px; color: #fff; background: rgba(20,24,25,.55); border-radius: 4px; font-size: 10px; }

.section { padding: 100px max(30px, calc((100vw - var(--max)) / 2)); }
.section-title.centered { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.section-title > p:not(.eyebrow) { max-width: 740px; margin: 18px auto 0; color: var(--muted); }
.project-section { background: var(--warm); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.audience-card { min-height: 285px; padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(35,39,41,.045); text-align: center; }
.icon-circle { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 22px; color: var(--gold); background: var(--warm-2); border-radius: 50%; }
.icon-circle svg { width: 42px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.audience-card h3 { margin: 0 0 11px; }
.audience-card p { margin: 0; color: var(--muted); font-size: 14px; }
.project-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.project-facts div { display: flex; flex-direction: column; padding: 20px 24px; text-align: center; }
.project-facts div + div { border-left: 1px solid var(--line); }
.project-facts strong { font-family: var(--font-serif); font-size: 22px; }
.project-facts span { margin-top: 4px; color: var(--muted); font-size: 12px; }
.aerial-feature { position: relative; margin: 42px 0 0; overflow: hidden; background: #d5d0c7; border-radius: var(--radius); box-shadow: var(--shadow); }
.aerial-feature::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(0deg, rgba(23,28,30,.7), transparent); pointer-events: none; }
.aerial-feature img { width: 100%; height: clamp(380px, 43vw, 570px); object-fit: cover; }
.aerial-feature figcaption { position: absolute; left: 28px; right: 28px; bottom: 24px; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; color: #fff; }
.aerial-feature figcaption strong { font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 30px); font-weight: 600; }
.aerial-feature figcaption span { font-size: 10px; white-space: nowrap; }

.housing-section { background: #fff; }
.housing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.housing-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.housing-card-head { min-height: 340px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; align-items: center; padding: 30px; }
.housing-label { display: inline-block; padding: 7px 14px; color: #fff; background: var(--gold); border-radius: 5px; font-weight: 750; }
.housing-card h3 { margin: 20px 0 12px; font-size: 28px; }
.housing-card-head p { margin: 0; color: var(--muted); font-size: 13px; }
.mini-plan { height: 275px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; }
.mini-plan img { width: 100%; height: calc(100% - 22px); object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.mini-plan figcaption { margin-top: 5px; color: #888; font-size: 9px; text-align: center; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 0; padding: 22px 30px 26px; list-style: none; background: var(--warm); border-top: 1px solid var(--line); }
.check-list li { position: relative; padding-left: 23px; font-size: 12px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 15px; height: 15px; display: grid; place-items: center; color: #fff; background: var(--gold); border-radius: 50%; font-size: 9px; font-weight: 800; }
.apartment-preview { margin-top: 58px; }
.apartment-preview-title { margin-bottom: 34px !important; }
.apartment-preview-title h2 { max-width: 650px; margin-inline: auto; }
.apartment-preview-title > p:not(.eyebrow) { max-width: 710px; font-size: 13px; }
.apartment-gallery { display: grid; grid-template-columns: 1.95fr 1fr; gap: 14px; height: 720px; min-height: 0; }
.apartment-gallery button { position: relative; min-width: 0; min-height: 0; margin: 0; padding: 0; overflow: hidden; color: #fff; background: #d8d4cc; border: 0; border-radius: 9px; cursor: zoom-in; box-shadow: 0 8px 24px rgba(35,39,41,.08); }
.apartment-gallery button::after { content: ""; position: absolute; inset: 56% 0 0; background: linear-gradient(0deg, rgba(18,22,24,.68), transparent); pointer-events: none; }
.apartment-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.apartment-gallery button:hover img { transform: scale(1.02); }
.apartment-gallery span { position: absolute; left: 15px; bottom: 12px; z-index: 1; font-family: var(--font-serif); font-size: 16px; font-weight: 600; }
.gallery-main { height: 720px; min-height: 0; }
.gallery-main img { object-position: center 48%; }
.gallery-main small { position: absolute; right: 15px; bottom: 13px; z-index: 1; color: rgba(255,255,255,.8); font-size: 8px; }
.gallery-thumbnails { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(var(--gal-rows, 4), minmax(0, 1fr)); min-height: 0; gap: 14px; }
.gallery-thumbnails .gallery-wide { grid-column: 1 / -1; }
.gallery-thumbnails span { left: 10px; bottom: 8px; font-family: var(--font-sans); font-size: 11px; }
.comfort-note { display: flex; align-items: center; gap: 24px; margin-top: 24px; padding: 20px 28px; background: var(--warm-2); border-radius: 9px; }
.comfort-note svg { flex: 0 0 42px; width: 42px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.comfort-note p { margin: 0; font-size: 13px; }
.ensemble-plan { margin-top: 24px; border: 1px solid var(--line); border-radius: 9px; background: var(--warm); }
.ensemble-plan summary { padding: 18px 22px; cursor: pointer; color: var(--gold-dark); font-weight: 700; }
.ensemble-plan > p { margin: 5px 22px 18px; color: var(--muted); font-size: 10px; }
.plan-viewer { position: relative; display: block; width: calc(100% - 44px); max-height: 560px; margin: 0 22px; padding: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); cursor: zoom-in; }
.plan-viewer img { width: 100%; max-height: 540px; object-fit: contain; }
.plan-viewer span { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; color: #fff; background: var(--gold); border-radius: 4px; font-size: 11px; }

.location-section { background: var(--warm); }
.location-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 30px; align-items: stretch; }
.map-card, .location-info { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(35,39,41,.045); }
.map-card { overflow: hidden; }
.map-card svg { width: 100%; height: 100%; min-height: 440px; }
.map-link { display: block; height: calc(100% - 35px); min-height: 440px; overflow: hidden; }
.map-link img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.map-card figcaption { padding: 8px 14px; color: var(--muted); background: var(--warm); border-top: 1px solid var(--line); font-size: 9px; }
.map-card figcaption a { color: inherit; text-underline-offset: 2px; }
.map-card .park { fill: #dce6d8; }
.map-card .river { fill: none; stroke: #b9dbe8; stroke-width: 28; }
.map-card .street path { fill: none; stroke: #fff; stroke-width: 9; }
.map-card .street .street-major { stroke: #ddd8d0; stroke-width: 15; }
.map-label circle { fill: #41494e; }
.map-label text { fill: #41494e; font: 12px var(--font-sans); }
.map-pin path { fill: var(--gold); }
.map-pin circle { fill: rgba(255,255,255,.15); }
.map-pin text { fill: #fff; font: 700 11px var(--font-sans); text-anchor: middle; }
.location-info { padding: 32px; }
.location-info h3 { margin: 0 0 12px; font-size: 25px; }
.location-info > p { margin: 0; color: var(--muted); font-size: 14px; }
.location-list { margin-top: 22px; border-top: 1px solid var(--line); }
.location-list > div { display: grid; grid-template-columns: 27px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.location-list span { color: var(--gold); font-size: 10px; font-weight: 800; }
.location-list p { margin: 0; color: var(--muted); font-size: 12px; }
.location-list strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 14px; }

.cooperation-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; color: #fff; background: #252d32; }
.cooperation-section .eyebrow { color: #d7c4a6; }
.cooperation-copy h2 { max-width: 590px; color: #fff; }
.cooperation-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.7); }
.cooperation-copy .button { margin-top: 20px; }
.cooperation-points { border-top: 1px solid rgba(255,255,255,.17); }
.cooperation-points > div { display: grid; grid-template-columns: 145px 1fr; gap: 24px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.cooperation-points strong { color: #d7c4a6; font-family: var(--font-serif); font-size: 23px; font-weight: 600; }
.cooperation-points span { color: rgba(255,255,255,.72); font-size: 13px; }

.partners-section { padding: 85px max(30px, calc((100vw - var(--max)) / 2)); background: #fff; }
.partners-section .section-title { margin-bottom: 36px; }
.partners-section h2 { font-size: clamp(30px, 3vw, 42px); }
.logo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.logo-strip a { min-height: 125px; display: flex; align-items: center; justify-content: center; padding: 24px; border: 1px solid var(--line); border-radius: 9px; }
.logo-strip img { max-width: 180px; max-height: 68px; width: auto; height: auto; object-fit: contain; }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; background: var(--warm); }
.contact-copy h2 { max-width: 480px; }
.contact-copy > p:not(.eyebrow) { max-width: 510px; color: var(--muted); }
.contact-copy address { display: flex; flex-direction: column; gap: 9px; margin-top: 25px; font-style: normal; font-size: 14px; }
.contact-copy address a { text-decoration: none; }
.contact-copy address p { margin: 0; }
.contact-copy address span { display: inline-block; width: 28px; color: var(--gold-dark); }
.contact-notice { max-width: 520px; margin-top: 24px; padding: 15px 18px; color: #5c6164; background: var(--gold-light); border-radius: 8px; font-size: 11px; }
.contact-form { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; color: #555d61; font-size: 11px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid #d8d4ce; border-radius: 4px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,140,97,.12); }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #6d7478 50%), linear-gradient(135deg, #6d7478 50%, transparent 50%); background-position: calc(100% - 17px) 52%, calc(100% - 12px) 52%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form textarea { resize: vertical; }
.contact-form .optional { color: #8b9093; font-size: 9px; font-weight: 500; }
.contact-form .privacy-check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 2px 0 16px; font-weight: 500; line-height: 1.45; }
.contact-form .privacy-check input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--gold-dark); }
.contact-form .privacy-check a { color: var(--gold-dark); text-underline-offset: 2px; }
.contact-form .button { width: 100%; }
.contact-form small { display: block; margin-top: 11px; color: #85898c; font-size: 9px; text-align: center; }

.site-footer { display: flex; justify-content: space-between; gap: 30px; padding: 25px max(30px, calc((100vw - var(--max)) / 2)); color: rgba(255,255,255,.72); background: #252d32; font-size: 10px; }
.site-footer p { margin: 0; }
.footer-links { display: flex; align-items: center; gap: 22px; }
.footer-links a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.legal-page { background: var(--warm); }
.legal-main { min-height: calc(100svh - 96px); }
.legal-hero { padding: 78px max(30px, calc((100vw - var(--max)) / 2)) 60px; color: #fff; background: #252d32; }
.legal-hero-inner { max-width: 820px; }
.legal-hero .eyebrow { color: #d7c4a6; }
.legal-hero h1 { max-width: 760px; font-size: clamp(44px, 5vw, 68px); }
.legal-hero p:not(.eyebrow) { max-width: 720px; margin: 20px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.legal-layout { width: min(calc(100% - 60px), var(--max)); display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 34px; align-items: start; margin: 46px auto 72px; }
.legal-toc, .legal-content { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(35,39,41,.045); }
.legal-toc { position: sticky; top: 96px; padding: 22px; }
.legal-toc strong { display: block; margin-bottom: 12px; font-family: var(--font-serif); font-size: 18px; }
.legal-toc nav { display: flex; flex-direction: column; gap: 8px; }
.legal-toc a { color: var(--muted); text-decoration: none; font-size: 13px; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--gold-dark); }
.legal-content { padding: 42px 48px; }
.legal-content section { scroll-margin-top: 100px; }
.legal-content section + section { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 18px; font-size: clamp(27px, 3vw, 36px); }
.legal-content h3 { margin: 24px 0 8px; font-size: 20px; }
.legal-content p { margin: 0 0 14px; color: #4f585e; }
.legal-content address { margin: 0; font-style: normal; }
.legal-content a { color: var(--gold-dark); text-underline-offset: 3px; }
.legal-content ul { margin: 12px 0 18px; padding-left: 22px; color: #4f585e; }
.legal-content li + li { margin-top: 5px; }
.legal-note { margin-bottom: 30px; padding: 18px 20px; color: #5c6164; background: var(--gold-light); border-radius: 9px; }
.legal-note strong { color: var(--ink); }
.legal-meta { margin-top: 34px; color: var(--muted); font-size: 12px; }

.plan-dialog { width: min(96vw, 1500px); max-width: none; max-height: 94vh; padding: 50px 18px 13px; background: #fff; border: 0; border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.plan-dialog::backdrop { background: rgba(18,22,24,.86); backdrop-filter: blur(7px); }
.plan-dialog button { position: absolute; top: 10px; right: 14px; width: 36px; height: 36px; color: var(--ink); background: var(--warm-2); border: 0; border-radius: 50%; font-size: 26px; cursor: pointer; }
.plan-dialog img { width: 100%; max-height: calc(94vh - 86px); object-fit: contain; }
.plan-dialog p { margin: 4px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal.visible { opacity: 1; transform: none; }
.hero-card.reveal { transform: translateY(calc(-50% + 18px)); }
.hero-card.reveal.visible { transform: translateY(-50%); }

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

@media (max-width: 960px) {
  .site-header { height: 82px; padding-inline: 22px; }
  .site-header.scrolled { height: 72px; }
  .brand strong { font-size: 31px; }
  .nav-toggle { position: relative; z-index: 3; display: block; cursor: pointer; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; display: none; flex-direction: column; justify-content: center; gap: 26px; background: #fff; }
  .site-nav.open { display: flex; }
  .site-nav a { font-family: var(--font-serif); font-size: 30px; font-weight: 600; }
  .hero { min-height: calc(100svh - 82px); }
  .hero-card { left: 24px; width: min(470px, calc(100% - 48px)); }
  .section { padding: 80px 24px; }
  .audience-grid { gap: 14px; }
  .audience-card { padding: 26px 20px; }
  .housing-grid, .location-grid, .contact-section, .cooperation-section { grid-template-columns: 1fr; }
  .cooperation-section { gap: 42px; }
  .housing-card-head { grid-template-columns: 1fr 1fr; }
  .apartment-gallery { height: 600px; }
  .gallery-main { height: 600px; }
  .location-info { padding: 28px; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .brand strong { font-size: 27px; }
  .brand span { font-size: 10px; }
  .hero { min-height: calc(100svh - 82px); }
  .hero-image { object-position: 58% center; }
  .hero-card { top: auto; bottom: 28px; left: 18px; width: calc(100% - 36px); padding: 25px 23px 22px; transform: none; }
  .hero-card.reveal { transform: translateY(18px); }
  .hero-card.reveal.visible { transform: none; }
  h1 { font-size: clamp(37px, 11vw, 49px); }
  h2 { font-size: 35px; }
  .hero-card > p:not(.eyebrow) { margin-top: 14px; font-size: 15px; }
  .hero-actions { margin-top: 20px; }
  .button { flex: 1; padding-inline: 13px; }
  .hero-card small, .visual-note { display: none; }
  .section { padding: 70px 18px; }
  .section-title.centered { margin-bottom: 35px; }
  .audience-grid, .housing-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts div + div { border-left: 0; border-top: 1px solid var(--line); }
  .aerial-feature { margin-top: 28px; border-radius: 10px; }
  .aerial-feature img { height: 330px; }
  .aerial-feature figcaption { left: 18px; right: 18px; bottom: 15px; flex-direction: column; align-items: flex-start; gap: 2px; }
  .housing-card-head { grid-template-columns: 1fr; min-height: auto; padding: 25px 22px; }
  .mini-plan { width: 100%; height: 330px; max-width: 440px; margin-inline: auto; }
  .check-list { grid-template-columns: 1fr; padding-inline: 22px; }
  .comfort-note { align-items: flex-start; padding: 18px; }
  .apartment-preview { margin-top: 46px; }
  .apartment-gallery { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .gallery-main { height: 420px; min-height: 420px; }
  .gallery-thumbnails { grid-template-rows: repeat(var(--gal-rows, 4), 150px); }
  .gallery-main small { display: none; }
  .map-card svg { min-height: 340px; }
  .map-link, .map-link img { min-height: 340px; }
  .logo-strip { gap: 8px; }
  .logo-strip a { min-height: 100px; padding: 15px; }
  .logo-strip img { max-width: 130px; max-height: 54px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cooperation-points > div { grid-template-columns: 1fr; gap: 4px; padding: 19px 0; }
  .site-footer { flex-direction: column; gap: 7px; text-align: center; }
  .footer-links { justify-content: center; }
  .legal-hero { padding: 58px 18px 44px; }
  .legal-hero p:not(.eyebrow) { font-size: 15px; }
  .legal-layout { width: calc(100% - 36px); margin: 28px auto 48px; }
  .legal-toc nav { grid-template-columns: 1fr; }
  .legal-content { padding: 27px 22px; }
  .legal-content section + section { margin-top: 30px; padding-top: 30px; }
}

/* Kontaktformular: Status & Spamschutz */
.form-extra { position: absolute !important; left: -10000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.contact-form { position: relative; }
.form-status { margin-bottom: 16px; padding: 13px 15px; border-radius: 6px; font-size: 13px; line-height: 1.45; }
.form-status.is-success { color: #1f5130; background: #e5f2e8; border: 1px solid #b9dcc2; }
.form-status.is-error { color: #7a2622; background: #fbe9e7; border: 1px solid #f0c3bd; }
.contact-form button[disabled] { opacity: .6; cursor: progress; }

/* Datenschutz-Hinweis (Cookie-Banner) */
.consent-banner { position: fixed; left: 18px; bottom: 18px; z-index: 1000; width: min(460px, calc(100% - 36px)); padding: 22px 22px 18px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 12px; box-shadow: 0 24px 60px rgba(20,24,25,.22); }
.consent-title { margin: 0 0 8px; font-family: var(--font-serif); font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.consent-text { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.consent-text a { color: var(--gold-dark); text-underline-offset: 2px; }
.consent-cats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.consent-cat { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; padding: 10px 12px; background: var(--warm); border-radius: 8px; font-size: 13px; }
.consent-cat input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--gold-dark); }
.consent-cat em { margin-left: 4px; color: var(--gold-dark); font-size: 11px; font-style: normal; font-weight: 700; }
.consent-cat small { display: block; margin-top: 2px; color: var(--muted); font-size: 11.5px; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.consent-actions .button { min-height: 42px; padding: 9px 16px; }
@media (max-width: 680px) {
  .consent-banner { left: 10px; right: 10px; bottom: 10px; width: auto; padding: 18px; }
  .consent-actions .button { flex: 1 1 auto; }
}
.legal-content code { padding: 1px 5px; background: var(--warm-2); border-radius: 4px; font-size: .9em; }
