:root {
  --ink: #090909;
  --charcoal: #151515;
  --graphite: #242424;
  --gold: #d6ae57;
  --logo-yellow: #f2b705;
  --gold-dark: #a98132;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --facebook: #1877f2;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #6f6a60;
  --line: rgba(214, 174, 87, .26);
  --shadow: 0 28px 70px rgba(0, 0, 0, .18);
  --radius: 8px;
  --header: 92px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 22px); }
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding-top: var(--header);
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 980px; color: var(--white); font-size: clamp(2.3rem, 5.4vw, 5.4rem); }
h2 { color: var(--ink); font-size: clamp(1.9rem, 3.1vw, 3.15rem); }
h3 { color: var(--ink); font-size: 1.08rem; }
p { margin: 0; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: #fff4dc; }
.section--ink { color: var(--white); background: var(--ink); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section-kicker { margin: 0 0 12px; color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.section-heading { max-width: 790px; margin: 0 auto 42px; text-align: center; }
.section-heading p:not(.section-kicker) { margin-top: 14px; color: var(--muted); }
.section-heading--light p:not(.section-kicker) { color: #d9d2c4; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: var(--logo-yellow);
  border-bottom: 1px solid rgba(9, 9, 9, .16);
  backdrop-filter: blur(16px);
  transition: box-shadow .22s ease, background .22s ease;
}
.site-header.scrolled { background: var(--logo-yellow); box-shadow: 0 18px 42px rgba(0, 0, 0, .16); }
.navbar { min-height: var(--header); display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: stretch; min-width: 0; height: var(--header); line-height: 0; }
.brand img {
  width: auto;
  height: var(--header);
  max-width: min(32vw, 330px);
  object-fit: contain;
  border-radius: 0;
  image-rendering: auto;
}
.nav-menu { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 8px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: rgba(255, 255, 255, .24); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; min-width: 0; }
.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, .12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, .22);
}
.social-icon svg { width: 21px; height: 21px; fill: currentColor; }
.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--ink);
  color: var(--logo-yellow);
  font-size: .8rem;
  font-weight: 950;
}
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(9, 9, 9, .16); border-radius: var(--radius); background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--ink); }
.menu-overlay { position: fixed; inset: 0; z-index: 100; pointer-events: none; background: rgba(0,0,0,.58); opacity: 0; transition: opacity .24s ease; }
.mobile-panel { position: fixed; top: 0; right: 0; z-index: 110; width: min(92vw, 370px); height: 100dvh; padding: 18px; background: var(--ink); border-left: 1px solid var(--line); transform: translateX(105%); transition: transform .28s ease; overflow-y: auto; }
.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
.menu-open .mobile-panel { transform: translateX(0); }
.mobile-panel__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-panel__top span { color: var(--gold); font-size: .92rem; font-weight: 950; letter-spacing: 0; }
.panel-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--gold); background: transparent; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.mobile-links, .mobile-contact { display: grid; gap: 9px; }
.mobile-links { padding: 22px 0; }
.mobile-links a, .mobile-contact a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(214, 174, 87, .18);
  border-radius: var(--radius);
  color: #f4ead7;
  background: rgba(255, 255, 255, .05);
  font-weight: 850;
}
.mobile-contact a:last-child { color: var(--white); background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("img/hero-real-estate.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 49%, rgba(0,0,0,.28) 100%);
}
.hero__content { padding: 110px 0 128px; }
.hero__text { max-width: 710px; margin-top: 20px; color: #f3ead9; font-size: clamp(1.05rem, 1.5vw, 1.34rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__actions--triple { max-width: 760px; }
.hero__actions--triple .btn { flex: 1 1 220px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--ink); background: linear-gradient(135deg, #f3d27f, var(--gold)); box-shadow: 0 16px 34px rgba(214,174,87,.28); }
.btn--light { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn--whatsapp, .btn[href*="wa.me"] { color: var(--white); border-color: rgba(255,255,255,.12); background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); box-shadow: 0 16px 34px rgba(37,211,102,.26); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(214, 174, 87, .44);
  border-radius: var(--radius);
  color: #fff5df;
  background: rgba(0, 0, 0, .36);
  font-weight: 850;
}

.intro-strip { position: relative; z-index: 2; margin-top: -44px; }
.intro-strip__grid {
  display: grid;
  grid-template-columns: .8fr 1.4fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.intro-strip strong { color: var(--ink); font-size: 1.18rem; }
.intro-strip span { color: var(--muted); }
.intro-strip a { justify-self: end; padding: 10px 16px; border-radius: var(--radius); color: var(--white); background: var(--ink); font-weight: 900; }

.service-grid, .property-grid, .testimonial-grid, .steps-grid, .region-grid, .statement-grid { display: grid; gap: 20px; }
.service-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.service-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(9, 9, 9, .09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0,0,0,.06);
  transition: transform .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(214, 174, 87, .6); }
.line-icon { display: inline-flex; margin-bottom: 26px; color: var(--gold-dark); font-size: .82rem; font-weight: 950; }
.service-card p { margin-top: 12px; color: var(--muted); font-size: .94rem; }

#satilik.section { padding: 74px 0; }
#satilik .section-heading { margin-bottom: 28px; }
#satilik .section-heading p:not(.section-kicker) { margin-top: 10px; }
.property-grid { max-width: 920px; margin-inline: auto; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 12px; }
.property-card {
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(214, 174, 87, .2);
  border-radius: var(--radius);
  background: #151515;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.property-card::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.94)); pointer-events: none; }
.property-card img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; transition: transform .35s ease; }
.property-card:nth-child(1) img { object-position: center 44%; }
.property-card:nth-child(4) img { object-position: center 48%; }
.property-card:hover img { transform: scale(1.04); }
.property-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px;
}
.property-card h3 {
  min-height: 0;
  color: var(--white);
  font-size: .76rem;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card p { color: #d9d1c1; font-size: .68rem; line-height: 1.1; }
.location { color: var(--gold) !important; font-weight: 850; }
.badge { width: fit-content; padding: 2px 6px; border-radius: var(--radius); color: var(--ink); background: var(--gold); font-size: .56rem; font-weight: 950; line-height: 1.35; }
.property-card ul { display: flex; flex-wrap: wrap; gap: 5px; margin: 0; padding: 0; list-style: none; }
.property-card li { padding: 2px 5px; border-radius: var(--radius); color: #f8eedb; background: rgba(255,255,255,.08); font-size: .56rem; font-weight: 850; white-space: nowrap; line-height: 1.35; }
.property-card strong { color: var(--white); font-size: .78rem; line-height: 1; }
.property-card__body > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 1px; }
.mini-btn { min-height: 25px; display: inline-flex; align-items: center; justify-content: center; padding: 5px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); color: var(--white); font-size: .52rem; font-weight: 900; text-align: center; }
.mini-btn--gold, .property-whatsapp { color: var(--white); border-color: var(--whatsapp); background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }

.rental-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, rgba(9,9,9,.97), rgba(28,23,13,.88)), url("img/rental-home.jpg") center/cover no-repeat; }
.rental-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(214,174,87,.12), transparent 55%); pointer-events: none; }
.rental-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .82fr); gap: 38px; align-items: center; }
.rental-copy h2 { color: var(--white); }
.rental-copy p:not(.section-kicker) { margin: 18px 0 22px; color: #efe6d5; font-size: 1.06rem; }
.rental-services { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.rental-services span { padding: 8px 11px; border: 1px solid rgba(214,174,87,.35); border-radius: var(--radius); color: #fff4dd; background: rgba(255,255,255,.07); font-weight: 850; }
.rental-whatsapp { width: fit-content; min-width: 250px; }
.rental-showcase { display: grid; grid-template-columns: .95fr 1fr; gap: 14px; align-items: stretch; padding: 14px; border: 1px solid rgba(214,174,87,.35); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.rental-showcase > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; border-radius: var(--radius); }
.process-card { padding: 20px; border-radius: var(--radius); color: var(--white); background: rgba(0,0,0,.54); }
.process-card ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-card li { display: flex; gap: 14px; align-items: center; padding: 14px; border: 1px solid rgba(214, 174, 87, .24); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.process-card span { color: var(--gold); font-weight: 950; }
.process-card strong { color: var(--white); }

.mission-section { background: var(--white); }
.statement-grid { grid-template-columns: 1fr 1fr; }
.statement-grid article {
  padding: 32px;
  border: 1px solid rgba(9,9,9,.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fff5df);
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
}
.statement-grid p:not(.section-kicker) { margin-top: 18px; color: var(--muted); font-size: 1rem; }

.steps-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.steps-grid article {
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(9,9,9,.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.steps-grid span { display: inline-grid; place-items: center; width: 36px; height: 36px; margin-bottom: 18px; border-radius: 50%; color: var(--ink); background: var(--gold); font-weight: 950; }
.steps-grid p { margin-top: 6px; color: var(--muted); }
.license-note { width: fit-content; margin: 28px auto 0; padding: 12px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink); color: var(--white); font-weight: 850; }
.license-note strong { color: var(--gold); }

.document-section { background: #121212; color: var(--white); }
.document-section h2 { color: var(--white); }
.document-grid { display: grid; grid-template-columns: minmax(260px, 420px) minmax(0, 1fr); gap: 46px; align-items: center; }
.document-cover { min-height: 470px; padding: 16px; border: 1px solid rgba(214,174,87,.38); border-radius: var(--radius); background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.document-cover img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); }
.document-fallback { min-height: 438px; display: none; place-items: center; align-content: center; gap: 14px; border: 1px solid rgba(214,174,87,.5); border-radius: var(--radius); background: linear-gradient(145deg, #1d1d1d, #080808); text-align: center; }
.document-fallback span { color: var(--gold); font-weight: 950; text-transform: uppercase; }
.document-fallback strong { max-width: 260px; color: var(--white); font-size: 2rem; line-height: 1.05; }
.document-fallback small { color: #f4e6c8; font-weight: 850; }
.document-grid p:not(.section-kicker) { max-width: 650px; margin: 18px 0; color: #ddd4c4; font-size: 1.05rem; }
.document-meta { width: fit-content; display: grid; gap: 2px; margin: 20px 0 24px; padding: 14px 18px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.06); }
.document-meta span { color: #d9d1c1; font-size: .82rem; font-weight: 850; }
.document-meta strong { color: var(--gold); font-size: 1.25rem; }

.testimonial-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.testimonial-grid article,
.review-card {
  padding: 22px;
  border: 1px solid rgba(214,174,87,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}
.stars { color: var(--gold); letter-spacing: 0; }
.testimonial-grid p,
.review-card p { margin: 12px 0 16px; color: #ece2d1; font-size: .94rem; }
.testimonial-grid strong,
.review-card strong { display: block; color: var(--white); }
.testimonial-grid span,
.review-card span { color: var(--gold); font-size: .82rem; font-weight: 850; }
.review-carousel {
  position: relative;
  overflow: hidden;
  padding-inline: 52px;
}
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  min-height: 230px;
  scroll-snap-align: start;
}
.review-card p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-nav {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214,174,87,.35);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 1.5rem;
  font-weight: 950;
  transform: translateY(-50%);
  cursor: pointer;
}
.review-nav--prev { left: 0; }
.review-nav--next { right: 0; }

.region-section { background: var(--white); }
.region-grid { grid-template-columns: 1fr 1fr; }
.region-grid article { min-height: 230px; padding: 30px; border: 1px solid rgba(9,9,9,.08); border-radius: var(--radius); background: #fff7e7; box-shadow: 0 16px 35px rgba(0,0,0,.06); }
.region-grid p { margin-top: 16px; color: var(--muted); }

.contact-section { background: linear-gradient(135deg, var(--ink), #252018); color: var(--white); }
.contact-section h2 { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, .72fr); gap: 34px; align-items: start; }
.contact-grid > div > p:not(.section-kicker) { margin: 18px 0 24px; color: #e4dccd; font-size: 1.05rem; }
.contact-list { display: grid; gap: 10px; max-width: 480px; }
.contact-list a, .contact-list span { display: flex; align-items: center; min-height: 46px; padding: 11px 13px; border: 1px solid rgba(214,174,87,.24); border-radius: var(--radius); color: #fff5de; background: rgba(255,255,255,.06); font-weight: 850; }
.contact-list .contact-whatsapp { color: var(--white); border-color: rgba(37,211,102,.5); background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }
.contact-form { display: grid; gap: 13px; padding: 26px; border: 1px solid rgba(214,174,87,.28); border-radius: var(--radius); background: rgba(255,255,255,.07); box-shadow: var(--shadow); }
label { display: grid; gap: 7px; color: #efe4cf; font-size: .86rem; font-weight: 850; }
input, select, textarea { width: 100%; min-width: 0; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); color: var(--white); background: rgba(0,0,0,.25); outline: 0; }
input, select { min-height: 46px; padding: 0 12px; }
textarea { padding: 12px; resize: vertical; }
select option { color: var(--ink); background: var(--white); }
.contact-form p { color: #d6c7aa; font-size: .84rem; }

.floating-socials {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  gap: 10px;
}
.floating-social {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0,0,0,.26);
  transition: transform .18s ease, opacity .18s ease;
}
.floating-social:hover { transform: translateY(-2px); }
.floating-social svg { width: 28px; height: 28px; fill: currentColor; }
.floating-social--whatsapp { background: var(--whatsapp); }
.floating-social--instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0 12%, #fd5949 42%, #d6249f 64%, #285aeb 100%); }
.floating-social--facebook { background: var(--facebook); }
.to-top {
  border: 0;
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; }

.site-footer { padding: 62px 0 26px; color: #e9ddc6; background: var(--ink); border-top: 1px solid rgba(214,174,87,.2); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr .8fr; gap: 30px; }
.footer-grid > div { display: grid; align-content: start; gap: 9px; }
.footer-grid h3 { color: var(--white); font-size: 1rem; }
.footer-grid p, .footer-grid span { color: #cfc4b0; }
.footer-grid a { color: #e9ddc6; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid .footer-whatsapp { width: fit-content; padding: 8px 11px; border-radius: var(--radius); color: var(--white); background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }
.brand--footer { width: fit-content; height: auto; padding: 10px 14px; border-radius: var(--radius); background: var(--logo-yellow); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.brand--footer img { width: clamp(260px, 22vw, 340px); height: auto; max-height: 88px; object-fit: contain; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #cfc4b0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .nav-menu, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .navbar { display: flex; justify-content: space-between; }
  .menu-toggle { margin-left: auto; flex: 0 0 44px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header: 76px; }
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 70px 0; }
  .brand { height: var(--header); }
  .brand img { width: auto; height: var(--header); max-width: 70vw; }
  .hero { min-height: 650px; }
  .hero__content { padding: 82px 0 112px; }
  .hero::before { background: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.72)); }
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.55rem); line-height: 1.08; }
  .hero__text { font-size: .98rem; }
  .hero__actions, .btn { width: 100%; }
  .hero__actions--triple .btn { flex-basis: 100%; min-height: 46px; }
  .trust-row span { width: 100%; }
  .intro-strip { margin-top: -34px; }
  .intro-strip__grid, .service-grid, .rental-grid, .rental-showcase, .statement-grid, .steps-grid, .document-grid, .testimonial-grid, .region-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .intro-strip a { justify-self: stretch; text-align: center; }
  .service-card { min-height: auto; }
  .property-card__body { padding: 8px; gap: 3px; }
  .property-card h3 { font-size: .74rem; }
  .property-card p { font-size: .66rem; }
  .property-card li { font-size: .6rem; padding: 3px 5px; }
  .property-card strong { font-size: .74rem; }
  .mini-btn { min-height: 24px; font-size: .52rem; }
  .document-cover { min-height: 360px; }
  .document-fallback { min-height: 330px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .property-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .property-card h3 { font-size: .86rem; }
  .property-card p { font-size: .76rem; }
  .property-card li { font-size: .62rem; }
  .property-card strong { font-size: .88rem; }
  .mini-btn { min-height: 29px; font-size: .63rem; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 20px, var(--container)); }
  h1 { font-size: 2.1rem; }
  .contact-form, .statement-grid article, .process-card { padding: 20px; }
  .floating-social { width: 50px; height: 50px; }
}

.property-grid--catalog {
  max-width: 1120px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.property-grid--wide {
  max-width: none;
}
.property-card--stack {
  aspect-ratio: auto;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #101010;
}
.property-card--stack::after {
  display: none;
}
.property-card--stack .property-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #202020;
}
.property-card--stack .property-card__image img,
.property-card--stack > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.property-card--stack .property-card__body {
  position: static;
  min-height: 176px;
  padding: 12px;
  gap: 7px;
}
.property-card--stack h3 {
  min-height: 36px;
  font-size: .95rem;
  line-height: 1.16;
  -webkit-line-clamp: 2;
}
.property-card--stack p {
  font-size: .78rem;
  line-height: 1.25;
}
.property-card--stack li {
  font-size: .68rem;
}
.property-card--stack strong {
  margin-top: auto;
  font-size: 1rem;
}
.property-card--stack .property-card__body > div:last-child {
  gap: 8px;
  margin-top: 2px;
}
.property-card--stack .mini-btn {
  min-height: 34px;
  padding: 7px;
  font-size: .62rem;
}
.catalog-link {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.portfolio-links {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 22px;
}
.portfolio-links a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  padding: 16px;
  border: 1px solid rgba(214,174,87,.34);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(214,174,87,.1));
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.portfolio-links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(214,174,87,.18), rgba(255,255,255,.09));
}
.portfolio-links img {
  grid-row: span 2;
  width: 136px;
  max-height: 46px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  padding: 7px;
}
.portfolio-links strong {
  font-size: .98rem;
  line-height: 1.15;
}
.portfolio-links small {
  color: #d9d2c4;
  font-weight: 750;
}
.inner-page {
  background: var(--paper);
}
.page-hero,
.listing-detail-hero {
  padding-top: 118px;
}
.listing-filters {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr .8fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(9,9,9,.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
}
.listing-filters label {
  color: var(--ink);
}
.listing-filters input,
.listing-filters select {
  color: var(--ink);
  border-color: rgba(9,9,9,.14);
  background: #fffaf0;
}
.empty-state {
  padding: 42px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
}
.detail-cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(214,174,87,.35);
}
.detail-cover img,
.listing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-price {
  margin: 22px 0;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 950;
}
.listing-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}
.detail-content,
.detail-box {
  padding: 28px;
  border: 1px solid rgba(9,9,9,.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
}
.detail-content p,
.detail-box p {
  margin: 14px 0;
  color: var(--muted);
}
.detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.detail-features span {
  padding: 8px 11px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #f4d57f;
  font-weight: 850;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.spec-grid div {
  padding: 12px;
  border-radius: var(--radius);
  background: #fff4dc;
}
.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}
.spec-grid strong {
  display: block;
  margin-top: 3px;
}
.detail-map {
  display: inline-flex;
  margin: 2px 0 18px;
  color: var(--gold-dark);
  font-weight: 950;
}
.listing-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.listing-gallery img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}
.empty-note {
  max-width: 620px;
  margin: 0 auto;
  color: #d9d2c4;
  text-align: center;
}
.faq-section {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-grid article {
  padding: 24px;
  border: 1px solid rgba(9,9,9,.09);
  border-radius: var(--radius);
  background: #fff7e7;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.faq-grid p {
  margin-top: 10px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .property-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-filters, .detail-grid, .listing-detail-layout, .faq-grid, .spec-grid { grid-template-columns: 1fr; }
  .review-track { grid-auto-columns: calc((100% - 16px) / 2); }
}

@media (max-width: 560px) {
  .property-grid--catalog { grid-template-columns: 1fr; max-width: 350px; }
  .portfolio-links { grid-template-columns: 1fr; }
  .portfolio-links a { grid-template-columns: 112px minmax(0, 1fr); }
  .portfolio-links img { width: 112px; max-height: 42px; }
  .review-carousel { padding-inline: 0; }
  .review-track { grid-auto-columns: 86%; }
  .review-nav { display: none; }
  .property-card--stack .property-card__body { min-height: 182px; }
  .listing-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
