/* ═══════════════════════════════════════════
   EraNova Properties — Premium Stylesheet
   Palette: Navy #0D1B3E | Gold #C9A84C | Off-White #F8F6F1
   Type: Cormorant Garamond (display) + Inter (body)
═══════════════════════════════════════════ */

:root {
  --navy:      #0D1B3E;
  --navy-mid:  #173A78;
  --navy-lite: #2B4A8C;
  --gold:      #C9A84C;
  --gold-lite: #E2C47A;
  --gold-dim:  #8A6E2F;
  --cream:     #F8F6F1;
  --white:     #FFFFFF;
  --gray-lt:   #F0EDE8;
  --gray-mid:  #C7CDD8;
  --gray-txt:  #5A5A6E;
  --black:     #0A0A14;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1240px;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(13,27,62,0.08);
  --shadow-md: 0 8px 40px rgba(13,27,62,0.13);
  --shadow-lg: 0 20px 60px rgba(13,27,62,0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

select, input, textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

select:focus, input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

textarea { resize: vertical; }

/* ── HELPERS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-txt);
  font-size: 0.97rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-lite);
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; text-align: center; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAVIGATION ═══ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 2rem;          /* ← tighter padding; logo itself provides visual height */
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  background: var(--navy);
  padding: 0.35rem 2rem;
  box-shadow: 0 4px 30px rgba(13,27,62,0.45);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* Real logo image in navbar */
.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Vertical separator between logo image and brand text */
.nav-logo-divider {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
  margin: 0 12px;
  flex-shrink: 0;
  align-self: center;
}

/* Footer text logo (kept as text fallback) */
.logo-mark {
  display: none;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.logo-text em { font-style: italic; font-weight: 300; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-lite); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slides {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }

.slide-overlay {
  position: absolute; inset: 0;
  pointer-events: none;        /* ← never intercept clicks */
  background: linear-gradient(
    135deg,
    rgba(13,27,62,0.78) 0%,
    rgba(13,27,62,0.5) 50%,
    rgba(13,27,62,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;                 /* ← above indicators (z-index 3) and slides (z-index 0) */
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 115px;           /* ← accounts for 80px logo + header padding */
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  max-width: 680px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-lite);
  font-weight: 300;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Search Bar */
.hero-search {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  max-width: 860px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 20;                 /* ← highest in hero, unambiguously on top */
  pointer-events: auto;
  isolation: isolate;          /* ← creates own stacking context */
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-txt);
  margin-bottom: 0.4rem;
}
.search-field select {
  border-color: #E0DDD8;
  padding: 0.65rem 0.9rem;
}

.search-btn {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.search-btn:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 20px rgba(13,27,62,0.25);
}

/* Slider indicators */
.hero-indicators {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.indicator {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  transition: background var(--transition), width var(--transition);
}
.indicator.active {
  background: var(--gold);
  width: 44px;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(13,27,62,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 1.1rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lite);
  line-height: 1;
}
.stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

/* ═══ PROPERTIES ═══ */
.properties-section { background: var(--cream); }

.properties-filter {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  color: var(--gray-txt);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 0.7s ease;
}
.property-card:hover .card-img-wrap img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.card-type {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(13,27,62,0.82);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.card-body { padding: 1.4rem 1.6rem 1.6rem; }

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.card-location {
  font-size: 0.8rem;
  color: var(--gray-txt);
  margin-bottom: 0.7rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--gray-txt);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--gray-txt);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.card-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.card-cta:hover {
  background: var(--navy);
  color: var(--white);
}

/* ═══ WHY ERANOVA ═══ */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.why-left { padding-top: 1rem; }

.why-body {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
  font-size: 0.97rem;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), border-color var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.2);
}

.why-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.why-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ═══ SERVICES ═══ */
.services-section { background: var(--gray-lt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--gray-txt);
  line-height: 1.7;
}

/* ═══ ABOUT ═══ */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 1.8rem; right: 1.8rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray-txt);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-value {
  padding: 1.2rem 1rem;
  background: var(--gray-lt);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
}
.about-value strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.about-value p {
  font-size: 0.8rem;
  color: var(--gray-txt);
  line-height: 1.5;
  margin: 0;
}

/* ═══ CONTACT ═══ */
.contact-section { background: var(--navy); }
.contact-section .section-title { color: var(--white); }
.contact-section p { color: rgba(255,255,255,0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }
.contact-item a { color: var(--gold-lite); }
.contact-item a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-note {
  font-size: 0.75rem;
  color: var(--gray-txt);
  text-align: center;
  margin-top: 0.2rem;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--black);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { display: block; margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h5, .footer-contact h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { line-height: 2; }
.footer-bottom {
  text-align: center;
  padding: 1.4rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ═══ WHATSAPP FAB ═══ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; transform: translateX(-105%) scale(1); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-95%) scale(0.9);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-left { padding-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 44px; }

  /* Hero */
  .hero-content { padding-top: 105px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-btn { grid-column: 1 / -1; }
  .hero-stats { display: none; }
  .hero-indicators { bottom: 5.5rem; }

  /* Properties */
  .properties-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { height: 360px; }
  .about-values { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* WhatsApp */
  .whatsapp-fab { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-search { padding: 1rem; }
  .search-row { grid-template-columns: 1fr; }
  .properties-filter { gap: 0.4rem; }
  .filter-btn { font-size: 0.72rem; padding: 0.4rem 1rem; }
  .stat-divider { display: none; }
  .hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: none; }
  * { transition-duration: 0.01ms !important; }
}
