@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f5f3;
  --surface: #ffffff;
  --surface-2: #e9ebe8;
  --ink: #171817;
  --muted: #656965;
  --line: #cfd2ce;
  --accent: #0f8f8b;
  --accent-dark: #0a6877;
  --success: #23724a;
  --error: #a71018;
  --container: 1380px;
  --header: 76px;
  --radius: 3px;
  --shadow: 0 24px 70px rgba(33, 37, 33, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { line-height: .98; letter-spacing: -.055em; }
h1 { max-width: 720px; margin-bottom: 30px; font-size: clamp(54px, 6.8vw, 112px); font-weight: 790; }
h2 { margin-bottom: 28px; font-size: clamp(44px, 5.2vw, 80px); font-weight: 760; }
h3 { font-size: clamp(27px, 2.4vw, 40px); font-weight: 720; }
p { color: var(--muted); }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(90px, 10vw, 160px); }
.section-heading { max-width: 850px; margin-bottom: clamp(50px, 7vw, 92px); }
.section-heading p { max-width: 680px; margin-bottom: 0; font-size: 19px; }
.eyebrow { margin-bottom: 22px; color: var(--accent); font-size: 12px; font-weight: 760; letter-spacing: .18em; text-transform: uppercase; }
.lead { max-width: 540px; font-size: clamp(20px, 2vw, 29px); line-height: 1.35; letter-spacing: -.02em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; background: var(--ink); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 30; top: 0; height: var(--header); background: rgba(244,245,243,.94); border-bottom: 1px solid rgba(23,24,23,.13); backdrop-filter: blur(16px); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 34px; }
.brand { width: 142px; height: 54px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
.primary-nav { display: flex; margin-left: auto; align-items: center; gap: clamp(24px, 3vw, 46px); font-weight: 650; }
.primary-nav a { position: relative; padding-block: 12px; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .28s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-phone { display: inline-flex; min-height: 48px; padding: 0 22px; align-items: center; justify-content: center; background: var(--accent); color: white; font-weight: 760; white-space: nowrap; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 12px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 7px 0; background: var(--ink); }

.button { display: inline-flex; min-height: 56px; padding: 0 28px; align-items: center; justify-content: center; border: 1px solid var(--accent); border-radius: var(--radius); background: var(--accent); color: white; font-weight: 750; white-space: nowrap; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { background: var(--accent-dark); border-color: var(--accent-dark); }
.button:active { transform: translateY(1px); }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--ink); border-color: var(--ink); color: white; }

.hero { min-height: calc(100dvh - var(--header)); }
.hero-grid { display: grid; min-height: calc(100dvh - var(--header) - 116px); grid-template-columns: minmax(480px, .94fr) minmax(560px, 1.06fr); }
.hero-copy { display: flex; padding: clamp(56px, 7vw, 112px) clamp(34px, 6vw, 105px); justify-content: center; flex-direction: column; }
.hero-copy > p { max-width: 520px; margin-bottom: 34px; font-size: clamp(20px, 1.8vw, 28px); line-height: 1.35; letter-spacing: -.02em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; min-height: 620px; overflow: hidden; background: #d9dddb; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-render { position: absolute; right: 28px; bottom: 28px; width: min(34%, 290px); margin: 0; padding: 9px; background: var(--surface); box-shadow: var(--shadow); }
.hero-render img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hero-render figcaption { padding: 8px 4px 2px; color: var(--muted); font-size: 11px; font-weight: 650; }
.hero-facts { display: grid; min-height: 116px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.hero-facts > div { display: grid; padding: 24px clamp(24px, 4vw, 58px); grid-template-columns: auto 1fr; align-items: center; gap: 18px; }
.hero-facts > div + div { border-left: 1px solid var(--line); }
.hero-facts strong { font-size: clamp(24px, 2.8vw, 42px); letter-spacing: -.04em; }
.hero-facts span { color: var(--muted); font-size: 14px; }

.project { background: var(--surface); }
.project-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(54px, 8vw, 120px); align-items: start; }
.project-copy { position: sticky; top: calc(var(--header) + 48px); padding-top: 24px; }
.project-image { overflow: hidden; min-height: 650px; background: #dfe1df; }
.project-image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.project-facts { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 0; border-top: 1px solid var(--ink); }
.project-facts > div { padding: 42px 40px 16px 0; }
.project-facts > div + div { padding-left: 40px; border-left: 1px solid var(--line); }
.fact-large strong { display: block; margin-bottom: 22px; color: var(--accent); font-size: clamp(82px, 10vw, 150px); line-height: .72; letter-spacing: -.08em; }
.fact-large p { margin-bottom: 12px; color: var(--ink); font-size: 24px; font-weight: 720; }
.fact-large span { color: var(--muted); }
.fact-group h3 { margin-bottom: 30px; font-size: 25px; line-height: 1.1; letter-spacing: -.03em; }
.fact-group p { padding-top: 16px; border-top: 1px solid var(--line); }

.site-plan { background: var(--bg); }
.site-plan-main { margin: 0; padding: clamp(12px, 2vw, 24px); background: var(--surface); box-shadow: 0 24px 60px rgba(35,40,35,.08); }
.site-plan-main img { width: 100%; aspect-ratio: 1.95 / 1; object-fit: contain; }
.garage-layout { display: grid; margin-top: clamp(50px, 7vw, 92px); grid-template-columns: .4fr 1.6fr; gap: 54px; align-items: center; }
.garage-layout h3 { margin-bottom: 18px; }
.garage-layout p { max-width: 300px; }
.garage-layout img { width: 100%; padding: 14px; background: var(--surface); }

.properties { background: var(--surface); }
.property-filters { display: flex; margin-bottom: 36px; gap: 0; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.property-filters::-webkit-scrollbar { display: none; }
.filter-button { flex: 0 0 auto; min-height: 50px; padding: 0 22px; border: 0; border-bottom: 3px solid transparent; background: transparent; font-weight: 700; cursor: pointer; }
.filter-button:hover, .filter-button:focus-visible { color: var(--accent); }
.filter-button.is-active { border-bottom-color: var(--accent); background: var(--accent); color: white; }
.property-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.property-card { overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.property-card[hidden] { display: none; }
.property-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.property-card:hover > img { transform: scale(1.025); }
.property-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.18fr .82fr; }
.property-featured > img { height: 100%; aspect-ratio: auto; }
.property-body { display: flex; min-width: 0; padding: clamp(26px, 3.5vw, 48px); flex-direction: column; }
.property-type { margin-bottom: 12px; color: var(--accent); font-size: 12px; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.property-card h3 { margin-bottom: 26px; }
.property-meta { display: flex; min-height: 54px; margin-bottom: 26px; gap: 10px 22px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.property-meta span + span { padding-left: 22px; border-left: 1px solid var(--line); }
.property-price { margin-top: auto; margin-bottom: 26px; color: var(--ink); font-size: clamp(30px, 3vw, 48px); font-weight: 780; line-height: 1; letter-spacing: -.05em; }
.property-price small { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.text-button, .text-link { display: inline-flex; width: fit-content; min-height: 48px; padding: 0 18px; align-items: center; border: 1px solid var(--accent); background: transparent; color: var(--accent); font-weight: 730; cursor: pointer; }
.text-button:hover, .text-button:focus-visible, .text-link:hover, .text-link:focus-visible { background: var(--accent); color: white; }
.property-object > img { object-position: center 38%; }
.extras { margin-top: 52px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.extras summary { padding: 28px 0; font-size: clamp(24px, 3vw, 38px); font-weight: 720; letter-spacing: -.04em; cursor: pointer; }
.extras summary::marker { color: var(--accent); }
.extras summary small { float: right; margin-top: .55em; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.extras[open] summary { border-bottom: 1px solid var(--line); }
.extras-grid { display: grid; padding: 30px 0 16px; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: clamp(28px, 4vw, 58px); }
.extras-panel { min-width: 0; }
.extras-panel-head { display: flex; padding-bottom: 18px; align-items: flex-end; justify-content: space-between; gap: 18px; }
.extras-panel-head h3 { margin-bottom: 0; font-size: clamp(25px, 2.2vw, 32px); }
.extras-count { flex: 0 0 auto; padding: 7px 11px; border: 1px solid rgba(15, 143, 139, .2); border-radius: 999px; background: rgba(15, 143, 139, .07); color: var(--accent-dark); font-size: 12px; font-weight: 750; }
.extras-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .72); }
.extras-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.extras-table th, .extras-table td { padding: 14px 12px; vertical-align: middle; }
.extras-table thead th { color: var(--muted); background: rgba(234, 245, 248, .82); font-size: 11px; font-weight: 750; line-height: 1.25; text-align: left; }
.extras-table thead th:first-child { width: 17%; }
.extras-table thead th:nth-child(2) { width: 24%; }
.extras-table thead th:nth-child(3) { width: 22%; }
.extras-table thead th:last-child { width: 37%; text-align: right; }
.extras-table tbody tr:not(.extras-group) { border-bottom: 1px solid rgba(215, 229, 237, .82); }
.extras-table tbody tr:not(.extras-group):last-child { border-bottom: 0; }
.extras-table tbody tr:not(.extras-group):hover { background: rgba(223, 245, 244, .38); }
.extras-table tbody th[scope="row"] { color: var(--ink); font-size: 14px; font-weight: 800; text-align: left; white-space: nowrap; }
.extras-table tbody td { color: var(--muted); font-size: 13px; font-weight: 650; white-space: nowrap; }
.extras-table .extras-value { color: var(--ink); font-weight: 800; text-align: right; }
.extras-group th { padding: 11px 12px; background: linear-gradient(135deg, rgba(15, 143, 139, .1), rgba(36, 119, 232, .07)); color: var(--accent-dark); text-align: left; }
.extras-group span { font-size: 13px; font-weight: 800; }
.extras-group small { margin-left: 8px; color: var(--muted); font-size: 11px; font-weight: 700; }
.extras-price { margin: 20px 0 18px; padding: 16px 18px; border: 1px solid rgba(15, 143, 139, .18); border-radius: 16px; background: linear-gradient(135deg, rgba(15, 143, 139, .08), rgba(36, 119, 232, .06)); color: var(--ink); font-size: 16px; font-weight: 780; }

.gallery { overflow: hidden; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: .42fr 1.58fr; gap: 54px; align-items: start; }
.gallery-copy { position: sticky; top: calc(var(--header) + 48px); padding-top: 20px; }
.gallery-copy > p:not(.eyebrow):not(.gallery-count) { max-width: 340px; }
.gallery-controls { display: flex; margin: 38px 0 20px; gap: 10px; }
.gallery-controls button { min-height: 44px; padding: 0 16px; border: 1px solid var(--ink); background: transparent; font-weight: 680; cursor: pointer; }
.gallery-controls button:hover, .gallery-controls button:focus-visible { background: var(--ink); color: white; }
.gallery-count { color: var(--muted); }
.gallery-count strong { color: var(--accent); }
.gallery-stage { overflow: hidden; background: #dfe1df; }
.gallery-stage img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-thumbs { grid-column: 2; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery-thumb { padding: 0; border: 2px solid transparent; background: transparent; cursor: pointer; }
.gallery-thumb.is-active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.location { padding-top: 0; }
.location-frame { position: relative; min-height: 610px; padding: 0; overflow: hidden; background: var(--surface-2); }
.location-frame > img { width: 100%; height: 610px; object-fit: cover; }
.location-panel { position: absolute; right: 40px; bottom: 40px; width: min(520px, calc(100% - 80px)); padding: clamp(34px, 5vw, 68px); background: var(--surface); box-shadow: var(--shadow); }
.location-panel h2 { font-size: clamp(43px, 5vw, 72px); }
.location-panel p { font-size: 19px; }

.payment { padding-block: clamp(70px, 7vw, 108px); background: var(--ink); color: white; }
.payment-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.payment h2 { margin-bottom: 0; color: white; }
.payment p { max-width: 720px; color: #d2d4d1; font-size: clamp(18px, 2vw, 25px); }
.payment p:last-child { margin-bottom: 0; }

.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header) + 48px); }
.contact-copy p { max-width: 520px; margin-bottom: 38px; font-size: 20px; }
.contact-copy a { display: block; width: fit-content; margin: 12px 0; font-size: clamp(23px, 2.7vw, 38px); font-weight: 720; letter-spacing: -.035em; }
.contact-copy a:hover, .contact-copy a:focus-visible { color: var(--accent); }
.contact-form { padding: clamp(28px, 5vw, 58px); background: var(--bg); border: 1px solid var(--line); }
.field { display: flex; margin-bottom: 24px; flex-direction: column; gap: 9px; }
.field label { font-size: 14px; font-weight: 740; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #9da29c; border-radius: var(--radius); background: var(--surface); color: var(--ink); outline: none; }
.field input, .field select { height: 54px; padding: 0 15px; }
.field textarea { min-height: 120px; padding: 15px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #747974; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(207,32,41,.14); }
.field [aria-invalid="true"] { border-color: var(--error); }
.form-status { min-height: 24px; margin-bottom: 16px; color: var(--error); font-weight: 680; }
.form-status.is-success { color: var(--success); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form .button:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-form .button { width: 100%; }
.form-note { margin: 14px 0 0; font-size: 12px; }

.site-footer { padding: 80px 0 24px; background: #202220; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr 1fr; gap: 70px; }
.footer-brand img { width: 145px; height: 110px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 310px; color: #bfc2bf; }
.site-footer nav, .site-footer address { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-style: normal; }
.site-footer a:hover, .site-footer a:focus-visible { color: #0a6877; }
.site-footer address span { color: #bfc2bf; }
.footer-bottom { display: flex; margin-top: 70px; padding-top: 24px; justify-content: space-between; gap: 20px; border-top: 1px solid #4a4e4a; color: #aeb2ae; font-size: 13px; }

.property-dialog { width: min(1180px, calc(100% - 36px)); max-height: calc(100dvh - 36px); padding: 0; border: 0; background: transparent; }
.property-dialog::backdrop { background: rgba(15,16,15,.72); backdrop-filter: blur(5px); }
.dialog-shell { overflow: auto; max-height: calc(100dvh - 36px); background: var(--surface); box-shadow: var(--shadow); }
.dialog-topbar { display: flex; min-height: 62px; padding: 0 24px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.dialog-topbar p { margin: 0; color: var(--accent); font-size: 12px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.dialog-topbar button { min-height: 40px; padding: 0 14px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
.dialog-grid { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 650px; }
.dialog-media { min-width: 0; padding: 24px; background: var(--bg); }
.dialog-media > img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: white; }
.dialog-thumbs { display: flex; margin-top: 12px; gap: 8px; overflow-x: auto; }
.dialog-thumb { flex: 0 0 100px; padding: 0; border: 2px solid transparent; background: white; cursor: pointer; }
.dialog-thumb.is-active { border-color: var(--accent); }
.dialog-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.dialog-copy { display: flex; min-width: 0; padding: clamp(30px, 3.4vw, 44px); flex-direction: column; overflow-wrap: break-word; }
.dialog-copy h2 { max-width: 100%; font-size: clamp(36px, 3.4vw, 52px); line-height: 1.02; overflow-wrap: anywhere; }
.dialog-price { color: var(--ink); font-size: clamp(28px, 3vw, 42px); font-weight: 780; letter-spacing: -.05em; overflow-wrap: anywhere; }
.dialog-copy dl { margin: 18px 0 42px; }
.dialog-copy dl div { display: grid; padding: 15px 0; grid-template-columns: 1fr auto; gap: 18px; border-bottom: 1px solid var(--line); }
.dialog-copy dt { color: var(--muted); }
.dialog-copy dd { font-weight: 700; text-align: right; }
.dialog-copy .button { width: 100%; margin-top: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .primary-nav { gap: 22px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .hero-copy { padding-inline: 40px; }
  .project-grid { gap: 56px; }
  .project-facts { grid-template-columns: 1fr 1fr; }
  .fact-large { grid-row: span 2; }
  .project-facts > div:nth-child(3) { border-top: 1px solid var(--line); }
  .contact-grid { gap: 60px; }
  .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header: 68px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: var(--header) 0 auto 0; display: grid; padding: 24px 18px 30px; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); opacity: 0; pointer-events: none; transform: translateY(-16px); transition: opacity .25s ease, transform .25s ease; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { padding: 15px 6px; border-bottom: 1px solid var(--line); }
  .header-phone { display: none; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: 520px; padding: 64px 28px; }
  .hero-media { min-height: 610px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .project-grid, .gallery-grid, .contact-grid { grid-template-columns: 1fr; }
  .project-copy, .gallery-copy, .contact-copy { position: static; }
  .project-image, .project-image img { min-height: 520px; }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts > div, .project-facts > div + div { padding: 34px 0; border-top: 1px solid var(--line); border-left: 0; }
  .garage-layout { grid-template-columns: 1fr; }
  .property-featured { grid-template-columns: 1fr; }
  .property-featured > img { aspect-ratio: 4 / 3; }
  .gallery-thumbs { grid-column: 1; }
  .payment-grid { grid-template-columns: 1fr; }
  .dialog-grid { grid-template-columns: 1fr; }
  .dialog-copy { min-height: 540px; }
}

@media (max-width: 640px) {
  .section { padding-block: 82px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  h2 { font-size: clamp(40px, 12vw, 58px); }
  .brand { width: 112px; }
  .hero-copy { min-height: 470px; padding: 54px 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: 500px; }
  .hero-render { right: 14px; bottom: 14px; width: 38%; }
  .hero-facts > div { padding-inline: 18px; }
  .project-image, .project-image img { min-height: 440px; }
  .site-plan-main { padding: 6px; }
  .site-plan-main img { aspect-ratio: 1.25 / 1; }
  .garage-layout { gap: 28px; }
  .property-grid { grid-template-columns: 1fr; }
  .property-featured { grid-column: auto; }
  .property-meta span + span { padding-left: 0; border-left: 0; }
  .extras summary small { float: none; display: block; margin: 8px 0 0; }
  .extras-grid { grid-template-columns: 1fr; gap: 34px; }
  .extras-panel-head { align-items: center; }
  .extras-table-wrap { overflow: visible; border: 0; background: transparent; }
  .extras-table, .extras-table tbody { display: block; }
  .extras-table thead { display: none; }
  .extras-table tbody { display: grid; gap: 10px; }
  .extras-table tr:not(.extras-group) { display: grid; padding: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 10px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .82); }
  .extras-table tbody tr:not(.extras-group):last-child { border-bottom: 1px solid var(--line); }
  .extras-table tbody th[scope="row"] { grid-column: 1 / -1; padding: 0 0 10px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .extras-table tbody td { padding: 0; font-size: 12px; white-space: normal; }
  .extras-table tbody td::before { content: attr(data-label); display: block; min-height: 30px; margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.25; }
  .extras-table .extras-value { text-align: left; }
  .extras-group { display: block; }
  .extras-group th { display: block; padding: 15px 3px 2px; background: transparent; }
  .extras-group:first-child th { padding-top: 2px; }
  .extras-price { margin-top: 24px; }
  .gallery-grid { gap: 28px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .location-frame { min-height: 560px; }
  .location-frame > img { height: 560px; }
  .location-panel { right: 16px; bottom: 16px; width: calc(100% - 32px); padding: 28px; }
  .contact-form { padding: 24px 18px; }
  .contact-copy a { overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .property-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .dialog-shell { max-height: calc(100dvh - 16px); }
  .dialog-media { padding: 10px; }
  .dialog-copy { min-height: 500px; padding: 30px 20px; }
}

@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; }
}
