:root {
  --charcoal: #10100f;
  --ink: #222222;
  --muted: #6a6258;
  --paper: #fffaf2;
  --surface: #ffffff;
  --line: rgba(34, 34, 34, .12);
  --gold: #c89b3c;
  --gold-dark: #8f6824;
  --sand: #eadcc6;
  --green: #113c35;
  --shadow: rgba(0,0,0,.04) 0 2px 6px, rgba(0,0,0,.1) 0 12px 28px;
  --soft-shadow: rgba(0,0,0,.02) 0 0 0 1px, rgba(0,0,0,.06) 0 8px 24px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --page-pad: clamp(32px, 7vw, 144px);
  --content-max: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
img { max-width: 100%; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 6vw, 90px);
  color: white;
  background: linear-gradient(180deg, rgba(16,16,15,.58), rgba(16,16,15,.18) 58%, transparent);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px);
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand strong { display: block; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand small { display: block; color: rgba(255,255,255,.68); font-size: 12px; margin-top: 1px; }
.main-nav { display: flex; gap: 28px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a { color: rgba(255,255,255,.7); }
.main-nav a:hover { color: white; }
.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(120px, 11vw, 160px) clamp(20px, 6vw, 90px) clamp(60px, 8vw, 110px);
  color: white;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,16,15,.96), rgba(16,16,15,.82) 42%, rgba(16,16,15,.38)),
    url('assets/brand/hero-bg.webp') center/cover;
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 18%;
  height: 360px;
  background: radial-gradient(circle, rgba(200,155,60,.24), transparent 65%);
  filter: blur(20px);
}
.hero-content, .consultant-card { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--gold-dark); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.55;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-gold { background: linear-gradient(135deg, #e1bd64, #a87923); color: #16120a; }
.btn-secondary { color: white; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.hero-stats {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: clamp(38px, 5vw, 72px);
  row-gap: 22px;
  width: auto;
  margin-top: 44px;
  padding-top: 28px;
  padding-right: clamp(28px, 5vw, 74px);
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat {
  display: grid;
  grid-template-rows: 56px auto;
  align-items: end;
  min-width: 112px;
}
.hero-stat-logo { min-width: 178px; }
.hero-stats strong {
  display: flex;
  align-items: end;
  height: 56px;
  color: var(--gold);
  font-size: clamp(42px, 5vw, 66px);
  line-height: .88;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.stat-logo {
  display: block;
  width: clamp(156px, 15vw, 220px);
  height: 56px;
  object-fit: contain;
  object-position: left bottom;
}
.hero-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.consultant-card {
  justify-self: center;
  width: min(420px, 100%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 36px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
  box-shadow: rgba(0,0,0,.22) 0 28px 80px;
  backdrop-filter: blur(18px);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.photo-placeholder {
  height: 430px;
  border-radius: 26px;
  overflow: hidden;
  background: #1a1714;
}
.consultant-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.consultant-info { padding: 20px 6px 8px; }
.consultant-info p { margin: 0; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.consultant-info h2 { margin: 6px 0 4px; font-size: 28px; color: white; }
.consultant-info span { color: rgba(255,255,255,.58); }

.search-panel, .properties, .about, .contact {
  width: min(var(--content-max), calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}
.search-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: clamp(64px, 7vw, 128px);
  align-items: center;
  margin-top: clamp(92px, 8vw, 150px);
  margin-bottom: clamp(104px, 8vw, 158px);
  padding: clamp(56px, 5.4vw, 86px) clamp(54px, 6vw, 96px);
  border: 1px solid var(--line);
  border-radius: 48px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--soft-shadow);
}
.filter-intro .eyebrow { margin-bottom: 7px; }
.filter-intro h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-head h2, .about h2, .contact h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.035em;
}
.filters { display: flex; justify-content: flex-end; gap: clamp(24px, 3vw, 44px); flex-wrap: wrap; }
.filters label { display: grid; gap: 16px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
select {
  min-width: clamp(280px, 21vw, 390px);
  height: 70px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 17px;
  padding: 0 28px;
  box-shadow: rgba(0,0,0,.03) 0 4px 12px;
}

.properties { padding-top: 0; padding-bottom: clamp(120px, 9vw, 184px); }
.section-head { display: flex; justify-content: space-between; gap: clamp(56px, 7vw, 116px); align-items: end; margin-bottom: clamp(76px, 6vw, 104px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p:last-child { color: var(--muted); font-weight: 700; font-size: clamp(15px, 1.1vw, 19px); padding-bottom: 18px; }
.property-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(38px, 3.2vw, 58px); }
.property-card {
  border: 0;
  padding: 0;
  text-align: left;
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #ddd1bf; }
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.property-card:hover .card-image img { transform: scale(1.045); }
.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,16,15,.82);
  color: white;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge-esgotado {
  background: rgba(180,30,30,.88);
}
.card-body { padding: clamp(30px, 2.5vw, 42px); }
.location { color: var(--gold-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.card-body h3 { margin: 16px 0 18px; font-size: clamp(20px, 1.45vw, 25px); line-height: 1.14; letter-spacing: -.035em; }
.card-body p { margin: 0 0 24px; color: var(--muted); line-height: 1.68; }
.specs { color: var(--muted); font-size: 14px; font-weight: 750; }
.card-cta {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-cta::after { content: '›'; margin-left: 6px; font-size: 15px; line-height: .8; }

.about {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(44px, 4vw, 72px);
  padding-bottom: clamp(120px, 9vw, 184px);
}
.about-card {
  border-radius: 36px;
  background: white;
  box-shadow: var(--soft-shadow);
  padding: clamp(42px, 5vw, 72px);
}
.profile-summary p:last-child { color: var(--muted); font-size: 18px; line-height: 1.7; }
.checklist { background: var(--green); color: white; }
.checklist h3 { margin: 0 0 20px; font-size: 26px; }
.checklist ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.checklist li { padding-left: 28px; position: relative; color: rgba(255,255,255,.82); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.contact {
  margin-bottom: 56px;
  padding: clamp(42px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at 75% 30%, rgba(225,189,100,.2), transparent 35%),
    linear-gradient(135deg, #10100f, #123c35);
}
.contact h2 { color: white; }
.contact p { color: rgba(255,255,255,.72); font-size: 18px; }
footer { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding: 32px clamp(18px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); }
footer strong { color: var(--ink); }
.muted { opacity: .7; }

.property-modal {
  width: min(1080px, calc(100% - 28px));
  max-height: min(880px, calc(100vh - 28px));
  padding: 0;
  border: 0;
  border-radius: 30px;
  overflow: auto;
  box-shadow: rgba(0,0,0,.35) 0 30px 100px;
}
.property-modal::backdrop { background: rgba(16,16,15,.74); backdrop-filter: blur(6px); }
.contact-modal {
  width: min(560px, calc(100% - 28px));
  padding: clamp(24px, 4vw, 38px);
  border: 0;
  border-radius: 30px;
  background: white;
  box-shadow: rgba(0,0,0,.34) 0 28px 90px;
}
.contact-modal::backdrop { background: rgba(16,16,15,.68); backdrop-filter: blur(6px); }
.contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f4eadb;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}
.contact-modal-head { padding-right: 44px; }
.contact-modal-head h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}
.contact-modal-head p:last-child { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.contact-form { display: grid; gap: 14px; margin-top: 24px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form span { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input,
.contact-form select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 16px;
  padding: 0 18px;
  box-shadow: rgba(0,0,0,.03) 0 4px 12px;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(200,155,60,.32);
  border-color: var(--gold);
}
.contact-form .btn { width: 100%; margin-top: 8px; cursor: pointer; }
.modal-close {
  position: fixed;
  top: max(22px, calc((100vh - min(880px, calc(100vh - 28px))) / 2 + 14px));
  right: max(22px, calc((100vw - min(1080px, calc(100% - 28px))) / 2 + 14px));
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(16,16,15,.72);
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.modal-gallery { background: #0f0f0e; }
.gallery-stage { position: relative; height: clamp(330px, 56vw, 560px); background: #ddd; touch-action: pan-y; }
.gallery-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72)); }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.gallery-nav:hover { background: rgba(0,0,0,.7); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-fullscreen {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  color: white;
  background: rgba(16,16,15,.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gallery-fullscreen:hover { background: rgba(16,16,15,.9); }
.gallery-count {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(16,16,15,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px;
  overflow-x: auto;
  background: #11100f;
}
.gallery-thumb {
  flex: 0 0 112px;
  height: 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #2d2a26;
  opacity: .72;
  transition: .18s ease;
}
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--gold); transform: translateY(-1px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-title { position: absolute; left: clamp(22px, 4vw, 44px); right: 90px; bottom: 30px; color: white; z-index: 2; }
.modal-title h2 { margin: 8px 0 0; font-size: clamp(32px, 5vw, 56px); line-height: .95; letter-spacing: -.05em; }
.modal-content { padding: clamp(22px, 4vw, 44px); display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 34px; }
.modal-content p { color: var(--muted); line-height: 1.7; font-size: 16px; }
.modal-helper {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fbf3e8;
  border: 1px solid var(--line);
  color: #4b4034 !important;
  font-weight: 700;
}
.feature-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.feature-list span { padding: 8px 11px; border-radius: 999px; background: #f4eadb; color: #4b4034; font-size: 12px; font-weight: 800; }
.side-panel { border-radius: 24px; background: #fbf3e8; padding: 22px; align-self: start; }
.side-panel h3 { margin: 0 0 14px; }
.side-panel dl { margin: 0; display: grid; gap: 14px; }
.side-panel dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.side-panel dd { margin: 3px 0 0; font-weight: 900; }
.side-panel .btn { width: 100%; margin-top: 20px; }
.fullscreen-open { overflow: hidden; }
.fullscreen-gallery {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 28px clamp(16px, 5vw, 72px);
  border: 0;
  background: rgba(5,5,5,.94);
}
.fullscreen-gallery.open { display: flex; }
.fullscreen-gallery::backdrop { background: rgba(5,5,5,.94); }
.fullscreen-gallery figure {
  width: min(1400px, 100%);
  height: min(860px, calc(100vh - 80px));
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}
.fullscreen-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fullscreen-gallery figcaption {
  color: rgba(255,255,255,.76);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fullscreen-close,
.fullscreen-nav {
  position: fixed;
  z-index: 101;
  border: 1px solid rgba(255,255,255,.24);
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.fullscreen-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
}
.fullscreen-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  border-radius: 999px;
  transform: translateY(-50%);
  font-size: 52px;
  line-height: 1;
}
.fullscreen-prev { left: 20px; }
.fullscreen-next { right: 20px; }
.fullscreen-close:hover,
.fullscreen-nav:hover { background: rgba(255,255,255,.18); }

/* Sticky WhatsApp FAB */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  right: 20px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.3); }

@media (max-width: 1440px) {
  .property-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .search-panel { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
  .filters { width: 100%; }
  .filters label, .search-panel select { width: 100%; min-width: 0; }
}
@media (max-width: 1120px) {
  .property-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; }
  .consultant-card { justify-self: start; max-width: 390px; }
  .photo-placeholder { height: 360px; }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .whatsapp-fab { display: flex; }
  .site-header { padding: 16px 18px; }
  .hero { min-height: auto; padding: 112px 18px 38px; }
  .search-panel, .section-head, .about, .contact { grid-template-columns: 1fr; display: grid; }
  .filters { width: 100%; }
  .filters label, select { width: 100%; }
  .property-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { margin-inline: 18px; }
  .modal-content { grid-template-columns: 1fr; }
  .property-modal { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 22px; }
  .contact-modal { width: calc(100% - 20px); max-height: calc(100dvh - 20px); overflow: auto; border-radius: 22px; }
  .modal-close { top: 18px; right: 18px; width: 46px; height: 46px; }
  /* Extra bottom padding so content isn't hidden behind FAB */
  footer { padding-bottom: max(80px, calc(env(safe-area-inset-bottom, 0px) + 80px)); }
}
@media (max-width: 560px) {
  .site-header { padding: 12px 16px; }
  .brand { gap: 10px; }
  .brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
  .brand strong { max-width: calc(100vw - 92px); }
  .brand small { display: none; }
  .hero { gap: 28px; padding: 96px 18px 32px; }
  .hero-bg { background-position: 58% center; }
  .eyebrow { font-size: 10px; line-height: 1.55; letter-spacing: .24em; }
  .hero h1 { font-size: clamp(38px, 11vw, 44px); line-height: .95; }
  .hero-copy { margin-top: 22px; font-size: 16px; line-height: 1.55; }
  .hero-actions { margin-top: 28px; }
  .btn { min-height: 50px; padding: 0 18px; letter-spacing: .11em; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: auto auto; gap: 18px; margin-top: 34px; padding-top: 24px; padding-right: 0; }
  .hero-stat, .hero-stat-logo { min-width: 0; }
  .hero-stat { grid-template-rows: 34px auto; }
  .hero-stats strong { height: 34px; font-size: 27px; letter-spacing: -.04em; }
  .stat-logo { width: 112px; height: 34px; }
  .hero-stats span { margin-top: 8px; font-size: 9px; line-height: 1.35; letter-spacing: .1em; white-space: normal; }
  .consultant-card { width: 100%; }
  .photo-placeholder { height: 280px; }
  .consultant-photo { object-position: center 35%; }
  .consultant-info { padding: 16px 6px 6px; }
  .search-panel { padding: 42px 24px; margin-top: 56px; margin-bottom: 64px; border-radius: 30px; }
  .search-panel h2, .section-head h2, .about h2, .contact h2 { font-size: 33px; }
  .section-head { align-items: start; margin-bottom: 42px; }
  .property-grid { grid-template-columns: 1fr; gap: 28px; }
  .card-body { padding: 26px; }
  .badge { top: 16px; left: 16px; }
  .property-card { border-radius: 22px; }
  .about { padding-bottom: 72px; gap: 28px; }
  .about-card { border-radius: 24px; padding: 30px 24px; }
  .contact { border-radius: 24px; margin-bottom: 36px; }
  .property-modal { width: 100%; max-height: 100dvh; border-radius: 0; }
  .contact-modal { width: 100%; max-height: 100dvh; border-radius: 0; padding: 24px 18px; }
  .contact-modal-head { padding-right: 46px; }
  .modal-close { top: 10px; right: 10px; width: 46px; height: 46px; }
  .gallery-stage { height: 270px; }
  .gallery-nav { width: 44px; height: 44px; font-size: 26px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-fullscreen { top: 12px; right: 12px; height: 36px; padding: 0 11px; font-size: 10px; }
  .gallery-thumb { flex-basis: 88px; height: 64px; }
  .modal-title { left: 18px; right: 64px; bottom: 22px; }
  .gallery-count { right: 16px; bottom: 16px; }
  .fullscreen-gallery { padding: max(64px, env(safe-area-inset-top)) 12px max(22px, env(safe-area-inset-bottom)); }
  .fullscreen-gallery figure { height: calc(100dvh - 96px); }
  .fullscreen-nav { width: 44px; height: 54px; font-size: 38px; }
  .fullscreen-prev { left: 10px; }
  .fullscreen-next { right: 10px; }
  footer { display: grid; }
}
