:root {
  --bg: #f6f2eb;
  --paper: #fcfaf6;
  --ink: #14222c;
  --ink-2: #2b3a44;
  --muted: #65727a;
  --line: #e4ddd1;
  --sea: #1d5a68;
  --sea-2: #164a56;
  --sand: #d9c6a5;
  --terra: #b86a3c;
  --white: #fff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(20, 34, 44, .25);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.section--tight { padding: 70px 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #e9e4db; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sea);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--ink .eyebrow { color: var(--sand); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(34px, 4.4vw, 56px); margin: 14px 0 18px; }
h3 { font-size: 26px; }
.lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.section--ink .lead { color: #b9c0c4; }

.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--sea); color: #fff; }
.btn--primary:hover { background: var(--sea-2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg); }
.btn--ghost { border: 1px solid currentColor; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--wa { background: #25d366; color: #0b2e17; }
.btn--wa:hover { background: #1fbe5a; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* Header */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .3s, box-shadow .3s, color .3s;
  color: #fff;
}
.header__in { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.header.is-solid, .header--solid { background: rgba(252, 250, 246, .96); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(10px); }
.header.is-solid .header__in, .header--solid .header__in { height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { width: 38px; height: 38px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: .06em; }
.logo__sub { font-size: 9.5px; letter-spacing: .42em; text-transform: uppercase; opacity: .75; margin-top: 4px; }
.nav { display: flex; gap: 34px; font-size: 14.5px; font-weight: 500; }
.nav a { position: relative; padding: 6px 0; opacity: .9; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .25s; }
.nav a:hover::after { right: 0; }
.header__right { display: flex; align-items: center; gap: 22px; }
.header__phone { font-weight: 600; font-size: 15px; }
.lang { position: relative; }
.lang__btn { display: flex; align-items: center; gap: 6px; height: 38px; padding: 0 12px; border-radius: 100px; border: 1px solid currentColor; border-color: rgba(127, 127, 127, .35); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.lang__btn svg { width: 16px; height: 16px; }
.lang__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 190px; background: var(--paper); color: var(--ink); border-radius: var(--radius-sm); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 6px; display: none; }
.lang.is-open .lang__menu { display: block; }
.lang__menu a { display: flex; gap: 10px; align-items: center; padding: 9px 12px; border-radius: 6px; font-size: 14.5px; }
.lang__menu a:hover { background: var(--bg); }
.lang__menu a.is-on { font-weight: 700; color: var(--sea); }
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.5px; background: currentColor; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }

.mnav {
  position: fixed; inset: 0; z-index: 60; background: var(--ink); color: #fff;
  display: flex; flex-direction: column; padding: 90px 28px 40px; gap: 6px;
  transform: translateY(-100%); transition: transform .35s ease;
}
.mnav.is-open { transform: none; }
.mnav a { font-family: var(--serif); font-size: 34px; padding: 6px 0; }
.mnav__close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; color: #fff; font-size: 30px; }
.mnav__foot { margin-top: auto; display: grid; gap: 12px; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out both; }
.hero__bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero__bg video.is-on { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(10, 22, 30, .62) 0%, rgba(10, 22, 30, .42) 38%, rgba(10, 22, 30, .08) 70%, rgba(10, 22, 30, 0) 100%),
  linear-gradient(180deg, rgba(10, 22, 30, .5) 0%, rgba(10, 22, 30, .1) 28%, rgba(10, 22, 30, .25) 60%, rgba(10, 22, 30, .8) 100%); }
@media (max-width: 820px) {
  .hero__bg::after { background: linear-gradient(180deg, rgba(10, 22, 30, .6) 0%, rgba(10, 22, 30, .45) 45%, rgba(10, 22, 30, .8) 100%); }
}
.hero__in { position: relative; width: 100%; padding-bottom: 70px; padding-top: 140px; }
.hero .eyebrow { color: #f1e6d2; }
.hero h1 { font-size: clamp(44px, 6vw, 86px); max-width: 900px; text-shadow: 0 2px 30px rgba(0,0,0,.25); margin: 18px 0 20px; font-weight: 500; }
.hero h1 em { font-style: italic; color: #f1e6d2; }
.hero p { font-size: 19px; max-width: 560px; opacity: .92; }

.search {
  margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0;
  background: #fff; color: var(--ink); border-radius: 100px; padding: 8px; max-width: 900px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .5);
}
.search label { display: flex; flex-direction: column; padding: 8px 26px; border-right: 1px solid var(--line); }
.search label:nth-child(3) { border-right: 0; }
.search small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.search select { border: 0; background: none; font-weight: 600; font-size: 15.5px; padding: 2px 0; outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; }

/* Facts strip */
.strip { background: var(--ink); color: #e9e4db; }
.strip__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { padding: 34px 28px; border-right: 1px solid rgba(255, 255, 255, .08); }
.strip__item:last-child { border-right: 0; }
.strip__num { font-family: var(--serif); font-size: 40px; line-height: 1; color: #fff; }
.strip__label { font-size: 14px; color: #a9b3b8; margin-top: 8px; }

/* Filters */
.filters { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  height: 42px; padding: 0 20px; border-radius: 100px; border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; background: var(--paper); transition: all .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.select {
  height: 42px; padding: 0 40px 0 18px; border-radius: 100px; border: 1px solid var(--line); background: var(--paper);
  font-size: 14px; font-weight: 600; appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2314222c' stroke-width='1.6'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.filters__right { display: flex; gap: 8px; flex-wrap: wrap; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 28px; }
.card { display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius); overflow: hidden; transition: transform .35s, box-shadow .35s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--line); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.badge {
  position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 100px;
  background: rgba(252, 250, 246, .94); font-size: 12px; font-weight: 700; letter-spacing: .02em;
}
.badge--ready { background: var(--sea); color: #fff; }
.badge--resale { background: var(--ink); color: #fff; }
.card__count { position: absolute; right: 14px; bottom: 14px; padding: 5px 10px; border-radius: 100px; background: rgba(10, 22, 30, .6); color: #fff; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.card__count svg { width: 14px; height: 14px; }
.card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card__loc { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.card__title { font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.1; margin: 8px 0 6px; }
.card__sub { font-size: 14.5px; color: var(--muted); }
.card__specs { display: flex; gap: 18px; margin: 18px 0 20px; font-size: 14px; color: var(--ink-2); flex-wrap: wrap; }
.card__specs span { display: flex; align-items: center; gap: 7px; }
.card__specs svg { width: 17px; height: 17px; color: var(--sea); }
.card__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price { font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; }
.price small { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--muted); margin-right: 4px; }
.card__arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .25s; flex: none; }
.card__arrow svg { width: 16px; height: 16px; }
.card:hover .card__arrow { background: var(--sea); border-color: var(--sea); color: #fff; }
.empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--muted); }

/* Featured card (first) */
.grid .card--wide { grid-column: span 2; }
.grid .card--wide .card__img { aspect-ratio: 16 / 9.6; }

/* About */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__media .about__small { position: absolute; width: 48%; aspect-ratio: 1; right: -40px; bottom: -40px; border: 8px solid var(--paper); border-radius: var(--radius); object-fit: cover; }
.about__list { margin-top: 34px; display: grid; gap: 22px; }
.about__row { display: grid; grid-template-columns: 44px 1fr; gap: 18px; }
.about__row b { display: block; font-size: 17px; margin-bottom: 2px; }
.about__row p { color: var(--muted); font-size: 15.5px; }
.ico { width: 44px; height: 44px; border-radius: 50%; background: #e6eeef; color: var(--sea); display: grid; place-items: center; }
.ico svg { width: 20px; height: 20px; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); overflow: hidden; }
.service { background: var(--ink); padding: 38px 34px; transition: background .3s; }
.service:hover { background: #1a2b36; }
.service__n { font-family: var(--serif); font-size: 18px; color: var(--sand); }
.service h3 { color: #fff; margin: 18px 0 12px; font-size: 27px; }
.service p { color: #a9b3b8; font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: s; }
.step { border-top: 1px solid var(--ink); padding-top: 22px; }
.step::before { counter-increment: s; content: "0" counter(s); font-family: var(--serif); font-size: 46px; color: var(--sea); line-height: 1; }
.step b { display: block; font-size: 18px; margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Locations */
.locs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loc { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; color: #fff; display: flex; align-items: flex-end; }
.loc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.loc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 30, .8)); }
.loc:hover img { transform: scale(1.06); }
.loc__t { position: relative; z-index: 1; padding: 20px; }
.loc__t b { font-family: var(--serif); font-size: 28px; font-weight: 600; display: block; line-height: 1.1; }
.loc__t span { font-size: 13px; opacity: .85; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact__info { display: grid; gap: 22px; margin-top: 34px; }
.contact__info a, .contact__info div { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; }
.contact__info small { display: block; color: var(--muted); font-size: 13px; }
.contact__info b { font-size: 17px; }
.form { background: var(--paper); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form h3 { margin-bottom: 6px; }
.form > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--ink-2); }
.field input, .field select, .field textarea {
  height: 50px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 16px; background: #fff; outline: none; transition: border-color .2s; font-size: 15px;
}
.field textarea { height: 110px; padding: 14px 16px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sea); }
.form__note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.form__actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.form__actions .btn { flex: 1; }
.form__actions--col { flex-direction: column; }
.form__actions--col .btn { flex: none; width: 100%; }
.form__msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14.5px; margin-top: 14px; }
.form__msg--ok { background: #e3efe9; color: #1d5a3a; }
.form__msg--err { background: #f6e4df; color: #8a2f1c; }
.form__note a { text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
[hidden] { display: none !important; }

/* Footer */
.footer { background: #0e1920; color: #a9b3b8; padding: 70px 0 30px; font-size: 14.5px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer .logo { color: #fff; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: #75828a; }
.footer__about { margin-top: 18px; max-width: 320px; }

/* Floating WA */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .6); transition: transform .2s; }
.fab:hover { transform: scale(1.06); }
.fab svg { width: 28px; height: 28px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Property page ---------- */
.page-top { padding-top: 100px; }
.crumbs { font-size: 13.5px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 22px; }
.crumbs a:hover { color: var(--ink); }
.p-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 28px; }
.p-head h1 { font-size: clamp(38px, 5vw, 64px); margin: 10px 0 8px; }
.p-head__sub { color: var(--muted); font-size: 17px; }
.p-head__price { text-align: right; }
.p-head__price .price { font-size: 44px; }
.p-head__price small { display: block; font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.p-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag { padding: 6px 13px; border-radius: 100px; background: #e6eeef; color: var(--sea); font-size: 13px; font-weight: 600; }
.tag--status { background: var(--ink); color: #fff; }

.gallery { position: relative; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: min(620px, 62vw); border-radius: var(--radius); overflow: hidden; }
.gallery button { position: relative; overflow: hidden; background: var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .3s; }
.gallery button:hover img { transform: scale(1.04); filter: brightness(.92); }
.gallery button:first-child { grid-row: span 2; }
.gallery--n1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.gallery--n1 button:first-child { grid-row: auto; }
.gallery--n2 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr; }
.gallery--n2 button:first-child { grid-row: auto; }
.gallery--n3 { grid-template-columns: 2fr 1fr; }
.gallery--n4 { grid-template-columns: 2fr 1fr 1fr; }
.gallery--n4 button:nth-child(4) { grid-column: span 2; }
.gallery .gallery__all { position: absolute; overflow: visible; right: 16px; bottom: 16px; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 700; display: flex; gap: 8px; align-items: center; box-shadow: var(--shadow); }
.gallery__all svg { width: 16px; height: 16px; }

.p-body { display: grid; grid-template-columns: 1fr 380px; gap: 60px; margin-top: 54px; align-items: start; }
.p-lead { font-family: var(--serif); font-size: 28px; line-height: 1.3; margin-bottom: 30px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 44px; background: var(--paper); }
.fact { padding: 20px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact:nth-child(3n) { border-right: 0; }
.fact small { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.fact b { font-size: 16.5px; font-weight: 600; }
.p-text h2 { font-size: 36px; margin: 0 0 18px; }
.p-text p { margin-bottom: 16px; color: var(--ink-2); font-size: 16.5px; }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 20px 0 44px; list-style: none; }
.feat li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.feat li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--sea) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='m4 8.5 2.5 2.5L12 5.5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.map-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 600; color: var(--sea); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.map-link svg { width: 18px; height: 18px; }
.disclaimer { margin-top: 40px; padding: 18px 20px; border-radius: var(--radius-sm); background: #efe9df; font-size: 12.5px; color: var(--muted); }

.side { position: sticky; top: 96px; }
.side__card { background: var(--paper); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.side .form { padding: 0; box-shadow: none; background: none; }
.side__price { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.side__price small { font-size: 13px; color: var(--muted); }
.side__price .price { font-size: 38px; margin-top: 4px; }
.side .form__grid { grid-template-columns: 1fr; }
.side .form__actions .btn { flex: none; }
.agent { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.agent__ava { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; }
.agent__ava svg { width: 26px; height: 26px; }
.agent b { display: block; }
.agent small { color: var(--muted); font-size: 13px; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(8, 14, 18, .96); display: none; flex-direction: column; color: #fff; }
.lb.is-open { display: flex; }
.lb__top { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; font-size: 14px; }
.lb__close { width: 44px; height: 44px; font-size: 30px; color: #fff; line-height: 1; }
.lb__stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 80px; }
.lb__stage img { max-width: 100%; max-height: 100%; object-fit: contain; user-select: none; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; transition: background .2s; }
.lb__nav:hover { background: rgba(255, 255, 255, .22); }
.lb__nav svg { width: 22px; height: 22px; }
.lb__prev { left: 16px; } .lb__next { right: 16px; }
.lb__thumbs { display: flex; gap: 8px; padding: 16px 22px 20px; overflow-x: auto; justify-content: center; }
.lb__thumbs button { flex: none; width: 84px; height: 58px; border-radius: 6px; overflow: hidden; opacity: .45; transition: opacity .2s; outline: 2px solid transparent; }
.lb__thumbs button.is-on { opacity: 1; outline-color: #fff; }
.lb__thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .locs { grid-template-columns: repeat(2, 1fr); }
  .p-body { grid-template-columns: 1fr; }
  .side { position: static; }
  .about { gap: 60px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .search { grid-template-columns: 1fr; border-radius: var(--radius); padding: 10px; }
  .search label { border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 16px; }
  .search label:nth-child(3) { border-bottom: 0; }
  .search .btn { margin-top: 6px; }
  .strip__in { grid-template-columns: 1fr 1fr; }
  .strip__num { font-size: 30px; }
  .strip__item { padding: 26px 20px; }
  .strip__item:nth-child(2) { border-right: 0; }
  .strip__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .about, .contact { grid-template-columns: 1fr; }
  .about__media .about__small { right: -10px; bottom: -30px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr; height: 78vw; }
  .gallery button:first-child { grid-column: span 2; grid-row: auto; }
  .gallery button:nth-child(n+4) { display: none; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3n) { border-right: 1px solid var(--line); }
  .fact:nth-child(2n) { border-right: 0; }
  .p-head__price { text-align: left; }
  .lb__stage { padding: 0; }
  .lb__nav { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .grid { grid-template-columns: 1fr; }
  .grid .card--wide { grid-column: auto; }
  .grid .card--wide .card__img { aspect-ratio: 4 / 3; }
  .services { grid-template-columns: 1fr; }
  .locs { grid-template-columns: 1fr; }
  .form { padding: 26px 20px; }
  .form__grid { grid-template-columns: 1fr; }
  .feat { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero p { font-size: 17px; }
  .filters, .filters__right { width: 100%; }
  .filters__right .select { flex: 1; }
  .chips { flex-wrap: nowrap; overflow-x: auto; margin: 0 -16px; padding: 0 16px; scrollbar-width: none; }
  .chip { flex: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- PHP version additions ---------- */
.price__req { font-size: .8em; }
.strip__num small { font-family: var(--sans); font-size: 15px; color: #a9b3b8; }
.steps { margin-top: 44px; }
.p-text h2.mt { margin-top: 40px; }
.crumbs--light { color: rgba(255, 255, 255, .8); margin: 0 0 22px; }
.crumbs--light a:hover { color: #fff; }
.hero--city { min-height: 72vh; min-height: 72svh; }
.hero--city h1 { font-size: clamp(40px, 5.4vw, 76px); }
.hero--city p { max-width: 720px; }
.empty a { color: var(--sea); font-weight: 600; }
.mnav__langs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.mnav__langs a { font-family: var(--sans); font-size: 14px; font-weight: 700; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 100px; }
.mnav__langs a.is-on { background: #fff; color: var(--ink); }
.notfound { padding: 120px 0 140px; text-align: center; }
.notfound h1 { font-size: 52px; }
.notfound .lead { margin: 16px auto 30px; }
.similar { margin-top: 90px; }
.privacy { max-width: 780px; padding-bottom: 100px; }
.privacy h1 { font-size: clamp(38px, 5vw, 58px); margin: 10px 0 8px; }
.privacy h2 { font-size: 28px; margin: 34px 0 10px; }
.privacy p { color: var(--ink-2); }
@media (max-width: 640px) {
  .lang__btn span { display: none; }
  .lang__btn { padding: 0 10px; }
}
