/* ── RESET & VARS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1b2d4f;
  --navy2:  #243a63;
  --gold:   #c8a96e;
  --gold2:  #e2c99a;
  --white:  #ffffff;
  --off:    #f8f7f4;
  --gray:   #6b7280;
  --border: #e5e7eb;
  --text:   #1a1a2e;
  --sans:   'Inter', system-ui, sans-serif;
  --serif:  'Playfair Display', Georgia, serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --trans: .22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── TIPOGRAFÍA ── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BOTONES ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px; font-weight: 600;
  font-size: .9rem; letter-spacing: .04em; cursor: pointer;
  border: 2px solid transparent; transition: var(--trans);
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,45,79,.3); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 70px; display: flex; align-items: center;
}
.header-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 40px; }
.logo-text { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-weight: 700; }
.logo-text span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 8px 14px; font-size: .85rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--gray); border-radius: 4px; transition: var(--trans);
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); }
.site-nav a.active { border-bottom: 2px solid var(--gold); }
.nav-cta { background: var(--navy); color: #fff !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--navy2) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú desplegable móvil */
.nav-mobile {
  display: none; position: absolute; top: 70px; left: 0; right: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  flex-direction: column; padding: 12px 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 13px 24px; font-size: .9rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--gray); border-left: 3px solid transparent; transition: var(--trans);
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--navy); border-left-color: var(--gold); background: var(--off); }
.nav-mobile .lang-switcher { padding: 12px 24px 4px; border-top: 1px solid var(--border); margin-top: 8px; }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .site-nav.nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: 100vh;
  background: linear-gradient(160deg, #0d1e3a 0%, #1b2d4f 50%, #0f2040 100%);
  overflow: hidden;
}

@keyframes heroLogoIn {
  from { opacity:0; transform: scale(1.04); }
  to   { opacity:1; transform: scale(1); }
}

/* Columna logo */
.hero-logo-col {
  position: relative; overflow: hidden;
}
.hero-logo-col img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
  animation: heroLogoIn .7s cubic-bezier(.22,1,.36,1) both;
}

/* Columna contenido */
.hero-content-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 48px 64px 40px;
}
.hero-badge {
  display: inline-block; background: rgba(200,169,110,.2); color: var(--gold);
  border: 1px solid rgba(200,169,110,.4); padding: 6px 16px;
  border-radius: 20px; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 700; display: block; }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

.hero-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
  padding: 32px; color: #fff;
}
.hero-card-title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 24px; color: var(--gold); }
.search-form { display: flex; flex-direction: column; gap: 14px; }
.search-form input, .search-form select {
  padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color: #fff; font-size: .9rem;
  outline: none; transition: var(--trans);
}
.search-form input::placeholder { color: rgba(255,255,255,.5); }
.search-form input:focus, .search-form select:focus { border-color: var(--gold); background: rgba(255,255,255,.15); }
.search-form select option { background: var(--navy); }
.search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── SERVICES ── */
.services { background: var(--off); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--navy); margin-bottom: 12px; }
.section-header p  { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block; color: var(--gold); font-size: .78rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 8px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: var(--trans); border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { color: var(--gray); font-size: .9rem; }

/* ── CATÁLOGO ── */
.catalog { background: var(--white); }
.catalog-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
.filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--border);
  background: #fff; font-size: .84rem; font-weight: 500; cursor: pointer;
  transition: var(--trans); color: var(--gray);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--navy); color: var(--navy); background: var(--off); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.properties-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px;
}
.prop-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans); border: 1px solid var(--border);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prop-card:hover .prop-img img { transform: scale(1.06); }

.prop-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.prop-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8edf5, #d0d9e8);
}
.prop-img-placeholder svg { width: 48px; height: 48px; fill: #9ba8bf; }
.prop-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 20px; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.badge-sale  { background: var(--navy); color: #fff; }
.badge-rent  { background: var(--gold); color: var(--navy); }
.badge-sold  { background: #64748b; color: #fff; }
.badge-new   { background: #16a34a; color: #fff; }

.prop-body { padding: 20px; }
.prop-price {
  font-family: var(--serif); font-size: 1.5rem; color: var(--navy);
  font-weight: 700; margin-bottom: 6px;
}
.prop-price sup { font-size: .9rem; }
.prop-title { font-size: .95rem; color: var(--text); font-weight: 500; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prop-location { font-size: .82rem; color: var(--gray); display: flex; align-items: center; gap: 4px; margin-bottom: 16px; }
.prop-location svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.prop-features {
  display: flex; gap: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--gray);
}
.prop-feat { display: flex; align-items: center; gap: 5px; }
.prop-feat svg { width: 15px; height: 15px; fill: var(--navy); }

.no-results { text-align: center; padding: 60px 0; color: var(--gray); }
.no-results svg { width: 64px; height: 64px; fill: var(--border); margin: 0 auto 16px; }

/* Paginación */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: .9rem; font-weight: 500;
  border: 1.5px solid var(--border); transition: var(--trans);
}
.pagination a:hover { border-color: var(--navy); color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── WHY US ── */
.whyus { background: var(--navy); color: #fff; }
.whyus .section-header h2 { color: #fff; }
.whyus .section-label { color: var(--gold); }
.whyus .section-header p { color: rgba(255,255,255,.65); }
.whyus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.why-card {
  padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  transition: var(--trans);
}
.why-card:hover { background: rgba(200,169,110,.1); border-color: rgba(200,169,110,.3); }
.why-num {
  font-family: var(--serif); font-size: 2.5rem; color: var(--gold);
  font-weight: 700; line-height: 1; margin-bottom: 14px;
}
.why-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.why-card p  { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ── CONTACTO ── */
.contact { background: var(--off); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 16px; }
.contact-info p  { color: var(--gray); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-item strong { display: block; font-size: .85rem; color: var(--navy); margin-bottom: 2px; }
.contact-item span   { font-size: .9rem; color: var(--gray); }

.contact-form-wrap {
  background: #fff; border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .92rem; outline: none; transition: var(--trans);
  font-family: var(--sans); background: #fff;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-error { border-color: #dc2626 !important; }
.form-success {
  background: #f0fdf4; border: 1px solid #86efac; border-radius: 8px;
  padding: 14px 18px; color: #15803d; font-size: .9rem; margin-top: 14px; display: none;
}

/* ── FOOTER ── */
.site-footer {
  background: #0f1a2e; color: rgba(255,255,255,.6);
  padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text { color: #fff; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; transition: var(--trans); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── SINGLE PROPIEDAD ── */
.prop-hero { background: var(--navy); padding: 32px 0 0; }
.prop-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; fill: currentColor; }
.prop-hero-meta { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 32px; }
.prop-hero-left h1 { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 10px; }
.prop-hero-loc { color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 6px; font-size: .9rem; }
.prop-hero-loc svg { width: 16px; height: 16px; fill: var(--gold); }
.prop-hero-price { text-align: right; }
.prop-hero-price .price-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); font-weight: 700; display: block; }
.prop-hero-price .price-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

.prop-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding: 40px 0 80px; }
.prop-main {}
.prop-sidebar { position: sticky; top: 88px; }

/* Galería */
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 12px; cursor: zoom-in; background: #eee; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .3s ease; display: block; }
.gallery-main:hover img { transform: scale(1.02); }
.gallery-count {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,.6); color: #fff; padding: 5px 12px;
  border-radius: 20px; font-size: .78rem; backdrop-filter: blur(4px);
}
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.gallery-thumbs img {
  width: 80px; height: 60px; object-fit: cover; border-radius: 6px;
  cursor: pointer; flex-shrink: 0; opacity: .65; border: 2px solid transparent;
  transition: var(--trans);
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; border-color: var(--gold); }

/* Features strip */
.features-strip {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0;
  padding: 20px; background: var(--off); border-radius: var(--radius);
}
.feature-item {
  display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text);
  padding: 8px 14px; background: #fff; border-radius: 8px; border: 1px solid var(--border);
}
.feature-item svg { width: 18px; height: 18px; fill: var(--navy); flex-shrink: 0; }
.feature-item strong { color: var(--navy); }

/* Tabs */
.prop-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.prop-tab {
  padding: 12px 20px; font-size: .88rem; font-weight: 600; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; color: var(--gray);
  transition: var(--trans);
}
.prop-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.prop-tab-content { display: none; }
.prop-tab-content.active { display: block; }

/* Descripción */
.prop-description { color: var(--text); line-height: 1.8; font-size: .95rem; }
.prop-description p + p { margin-top: 14px; }

/* Detalles tabla */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.detail-row {
  display: contents;
}
.detail-row > span {
  padding: 12px 16px; font-size: .88rem; border-bottom: 1px solid var(--border);
}
.detail-row > span:first-child { color: var(--gray); font-weight: 500; }
.detail-row > span:last-child  { color: var(--text); font-weight: 600; }

/* Video */
.video-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Mapa */
#prop-map { height: 360px; border-radius: var(--radius); overflow: hidden; }

/* Sidebar card */
.sidebar-card {
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 20px;
}
.sidebar-price {
  background: var(--navy); padding: 24px; text-align: center;
}
.sidebar-price .price-big { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 700; }
.sidebar-price .price-type { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }
.sidebar-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sidebar-feat {
  padding: 14px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
}
.sidebar-feat:nth-child(2n) { border-right: 0; }
.sidebar-feat svg { width: 20px; height: 20px; fill: var(--navy); }
.sidebar-feat strong { font-size: .95rem; color: var(--navy); }
.sidebar-feat span   { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }

.contact-sidebar { padding: 24px; }
.contact-sidebar h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 18px; }
.contact-sidebar .form-group { margin-bottom: 10px; }
.contact-sidebar .form-group input,
.contact-sidebar .form-group textarea { padding: 10px 12px; font-size: .88rem; }
.contact-sidebar .btn { width: 100%; justify-content: center; padding: 13px; }
.sidebar-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; background: #25d366; color: #fff; border-radius: 8px;
  font-weight: 600; font-size: .88rem; transition: var(--trans); margin-top: 10px;
}
.sidebar-whatsapp:hover { background: #1dbc5c; }
.sidebar-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

/* Propiedades relacionadas */
.related { padding: 48px 0 80px; background: var(--off); }
.related h2 { color: var(--navy); margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── LIGHTBOX ── */
.scandi-lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.scandi-lightbox.open { display: flex; }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; font-size: 1.4rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: var(--trans); backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,.3); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-close {
  position: fixed; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; font-size: 1.3rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: var(--trans);
}
#lb-close:hover { background: rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-logo-col { height: 60vw; max-height: 420px; margin-top: 24px; }
  .hero-content-col { padding: 36px 24px 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prop-layout { grid-template-columns: 1fr; }
  .prop-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .details-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: 1fr; }
  .hero-stats    { gap: 20px; }
  .site-nav .nav-links { display: none; }
}
@media (max-width: 480px) {
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .whyus-grid      { grid-template-columns: 1fr; }
}
