/* ═══════════════════════════════════════════════════════════════
   IMOBILAR IMÓVEIS — Stylesheet
   Brand Colors: Burgundy #7B1A1A / Grey #6E6E6E
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --brand:       #7B1A1A;
  --brand-light: #9B2C2C;
  --brand-dark:  #5A1212;
  --brand-bg:    #FDF6F6;
  --grey-900:    #1A1A1A;
  --grey-700:    #4A4A4A;
  --grey-600:    #6E6E6E;
  --grey-400:    #9E9E9E;
  --grey-200:    #E5E5E5;
  --grey-100:    #F5F5F5;
  --white:       #FFFFFF;
  --gold:        #C9A84C;
  --gold-light:  #E8D48B;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.15);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
  --font-main:   'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--grey-900); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--grey-600);
  font-size: 1.05rem;
}
.text-center { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123,26,26,.3);
}
.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123,26,26,.4);
}
.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--brand);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #B8943F;
  transform: translateY(-2px);
}

/* ── Header / Navbar ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: all var(--transition);
}
.header.scrolled {
  padding: 10px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  height: 68px;
  width: auto;
  transition: height var(--transition);
}
.header.scrolled .header-logo img { height: 54px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-700);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--brand); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--brand);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brand-light); color: var(--white) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--grey-900);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2D0A0A 60%, #1A0505 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123,26,26,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-decoration {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-decoration::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); }
.hero-text {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hero-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

/* Hero search bar */
.hero-search {
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
  display: flex;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}
.hero-search select,
.hero-search input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  font-family: var(--font-main);
  font-size: .9rem;
  color: var(--grey-700);
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  outline: none;
}
.hero-search select { max-width: 140px; cursor: pointer; }
.hero-search button {
  padding: 14px 28px;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.hero-search button:hover { background: var(--brand-light); }

/* ── Section spacing ───────────────────────────────────────── */
section { padding: 100px 0; }

/* ── Property Cards ────────────────────────────────────────── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--grey-200);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.property-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.property-card:hover .property-card-image img { transform: scale(1.08); }
.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.property-badge.venda { background: var(--brand); color: var(--white); }
.property-badge.aluguel { background: var(--gold); color: var(--white); }
.property-card-body { padding: 24px; }
.property-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 4px;
}
.property-card-location {
  font-size: .85rem;
  color: var(--grey-400);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-card-features {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  margin-bottom: 16px;
}
.property-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--grey-600);
}
.property-feature svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
}
.property-price small { font-size: .7rem; font-weight: 400; color: var(--grey-400); }
.property-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.property-link:hover { gap: 8px; }

/* ── About Section ─────────────────────────────────────────── */
.about { background: var(--grey-100); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.about-content .section-label { margin-bottom: 12px; }
.about-content p {
  margin-bottom: 16px;
  color: var(--grey-600);
  font-size: .95rem;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  margin: 24px 0;
}
.about-highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-highlight-icon svg { width: 24px; height: 24px; color: var(--brand); }
.about-highlight-text {
  font-size: .85rem;
  color: var(--grey-700);
  font-style: italic;
}

/* ── Services ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--brand-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; color: var(--brand); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .9rem; color: var(--grey-600); }

/* ── Tianguá Section ───────────────────────────────────────── */
.tiangua {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2D0A0A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.tiangua::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,168,76,.1) 0%, transparent 60%);
}
.tiangua .container { position: relative; z-index: 1; }
.tiangua .section-label { color: var(--gold); }
.tiangua .section-title { color: var(--white); }
.tiangua .section-desc { color: rgba(255,255,255,.65); }

.tiangua-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.tiangua-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.tiangua-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.tiangua-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tiangua-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.tiangua-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.tiangua-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── Founder Tribute ───────────────────────────────────────── */
.founder { background: var(--grey-100); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.founder-image {
  position: relative;
}
.founder-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}
.founder-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.founder-content blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brand);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.founder-content p {
  color: var(--grey-600);
  margin-bottom: 14px;
  font-size: .95rem;
}
.founder-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-signature img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.founder-signature-name { font-weight: 700; color: var(--grey-900); }
.founder-signature-role { font-size: .82rem; color: var(--grey-400); }

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter {
  background: var(--brand-bg);
  padding: 80px 0;
}
.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--grey-200);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button { white-space: nowrap; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--grey-100);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.contact-info-card:hover {
  background: var(--brand-bg);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-info-label { font-size: .78rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-info-value { font-weight: 600; color: var(--grey-900); font-size: .95rem; }
.contact-info-value a { color: var(--brand); }
.contact-info-value a:hover { text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,.5);
  padding: 28px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: .7; }
.footer-text { font-size: .82rem; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6); }
.footer-social a:hover svg { fill: var(--white); }

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 998;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--brand-light);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ── Cookie Consent ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--grey-900);
  color: rgba(255,255,255,.8);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .5s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: .85rem; max-width: 700px; }
.cookie-banner-actions { display: flex; gap: 12px; }
.cookie-accept {
  padding: 10px 24px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--brand-light); }

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Properties Page (imoveis.html) ────────────────────────── */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2D0A0A 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.1rem; }

.filters-bar {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filters-bar select,
.filters-bar input {
  flex: 1;
  min-width: 150px;
  padding: 12px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.filters-bar select:focus,
.filters-bar input:focus { border-color: var(--brand); }
.filters-bar .btn { min-width: 120px; justify-content: center; }

.properties-section { padding: 60px 0 100px; }
.properties-count {
  font-size: .9rem;
  color: var(--grey-400);
  margin-bottom: 28px;
}
.properties-count strong { color: var(--grey-900); }
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-400);
}
.no-results svg { width: 64px; height: 64px; margin-bottom: 16px; color: var(--grey-200); }

/* ── Mobile Menu Overlay ───────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 500px; margin: 48px auto 0; }
  .hero-decoration { display: none; }
  .hero-search { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-secondary { right: 10px; bottom: -20px; width: 160px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-image { text-align: center; }
  .founder-image img { margin: 0 auto; }
  .founder-image::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--grey-700) !important; font-size: 1.05rem; }
  .menu-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat { padding: 14px 8px; }
  .hero-stat-number { font-size: 1.4rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; }
  .hero-search select { max-width: 100%; }
  .newsletter-form { flex-direction: column; }
  .footer .container { flex-direction: column; text-align: center; }
  .filters-bar { flex-direction: column; }
  .filters-bar select,
  .filters-bar input { min-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-number { font-size: 1.2rem; }
  .hero-stat-label { font-size: .7rem; }
  .about-image-secondary { display: none; }
  .cookie-banner .container { flex-direction: column; text-align: center; }
}
