/* ==========================================================================
   HOMELY INMOBILIARIA — Design System
   Paleta: negro como base, morado del logo como acento (no predominante)
   Tipografía: Helvetica Neue, jerarquía por peso y estilo
   ========================================================================== */

:root {
  /* Color — PRUEBA: base clara cálida (crema), con negro cálido como
     acento en las secciones alternas (--stone ahora es el oscuro).
     Se conservan los nombres de variable por compatibilidad. */
  --ivory:        #F3ECDE;  /* fondo crema de la página (antes negro) */
  --stone:        #ECE0C9;  /* beige apenas más profundo que el fondo, para dar ritmo sutil sin ser oscuro */
  --stone-dark:   #DCCEB0;  /* borde cálido claro, sobre el fondo crema */
  --ink:          #2A2118;  /* texto oscuro principal (sobre crema) */
  --ink-soft:     #6B5F52;  /* texto oscuro secundario (sobre crema) */
  --white:        #FFFFFF;  /* blanco puro — solo para texto/íconos sobre botones de color */
  --surface:      #FBF7EF;  /* reservada, sin uso activo por ahora */

  /* Color — acento morado (del logo), usado con moderación */
  --plum:         #7C4FB0;
  --plum-deep:    #5C3A78;
  --plum-light:   #EFE0FA;

  /* Color — acento cálido secundario (WhatsApp / CTA de contacto) */
  --leaf:         #3FA56E;

  /* Tipografía — Bodoni Moda (serif editorial de alto contraste, con
     personalidad) para títulos, Instrument Sans (limpia, discreta) para
     texto. El contraste entre ambas es la firma tipográfica del sitio. */
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body:    "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Espaciado */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* Otros */
  --radius: 20px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7), 0 0 40px -12px rgba(157, 111, 224, 0.15);
  --max-width: 1180px;
}

/* ---------- Divisor curvo entre secciones (elemento de firma) ---------- */
.curve-divider {
  display: block;
  width: 100%;
  height: 64px;
  margin-bottom: -1px;
}
.curve-divider svg { display: block; width: 100%; height: 100%; }
.curve-divider.flip svg { transform: scaleY(-1); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(75vw, 950px);
  aspect-ratio: 1023 / 665;
  background: url('../assets/logo-flor.png') center / contain no-repeat;
  opacity: 0.11;
  pointer-events: none;
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.005em; margin: 0 0 var(--space-sm); line-height: 1.15; }
p { margin: 0 0 var(--space-sm); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xs);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-primary:hover { background: rgba(42, 33, 24, 0.06); border-color: var(--plum); color: var(--plum); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--stone-dark);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); background: rgba(42, 33, 24, 0.05); }

.btn-whatsapp {
  background: transparent;
  border: 1.5px solid var(--leaf);
  color: var(--leaf);
}
.btn-whatsapp:hover { background: rgba(63, 165, 110, 0.1); transform: translateY(-2px); }

.btn-plum {
  background: transparent;
  border: 1.5px solid var(--plum);
  color: var(--plum);
}
.btn-plum:hover { background: rgba(157, 111, 224, 0.1); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 236, 222, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xs);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 76px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: var(--space-md); }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--plum);
}
.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--stone-dark);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.hero-lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: var(--space-md);
}
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-md); }
.hero-trust {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--stone-dark);
  margin-top: var(--space-md);
}
.hero-trust div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-trust div span { font-size: 0.85rem; color: var(--ink-soft); }

.hero-search {
  background: transparent;
  border-radius: 40px 12px 40px 12px;
  border: 1px solid var(--stone-dark);
  padding: var(--space-md);
}
.hero-search h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
.search-tabs { display: flex; gap: 0.5rem; margin-bottom: var(--space-sm); }
.search-tabs button {
  flex: 1;
  padding: 0.6rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  background: #EFE7D6;
  color: var(--ink-soft);
}
.search-tabs button.active { background: var(--ink); color: var(--ivory); }
.field-group { margin-bottom: var(--space-sm); }
.field-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.field-group select, .field-group input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--ivory);
}

/* ---------- Sections ---------- */
.section { padding: var(--space-xl) 0; }
.section-alt {
  background: var(--stone);
  color: var(--ink);
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.section-head.left { margin: 0 0 var(--space-lg); text-align: left; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.section-divider {
  display: flex;
  justify-content: center;
  padding: var(--space-md) 0;
}
.section-divider img { width: 40px; opacity: 0.5; }

/* ---------- Spotlight editorial (Propiedad destacada) ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}
.spotlight-media {
  aspect-ratio: 4/5;
  border-radius: 60px 12px 60px 12px;
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  background: linear-gradient(135deg, #E8DFCF 0%, #C9BCA3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5040;
  font-size: 0.85rem;
  text-align: center;
}
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-media span.placeholder-text { padding: var(--space-md); }
.spotlight-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}
.spotlight h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}
.spotlight-blurb {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: var(--space-md);
}
.spotlight-meta {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
  margin-bottom: var(--space-md);
}
.spotlight-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.spotlight-meta div span { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Detalle de propiedad (spread editorial) ---------- */
.property-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: start;
}
.property-hero-media {
  aspect-ratio: 4/5;
  border-radius: 60px 12px 60px 12px;
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  background: linear-gradient(135deg, #E8DFCF 0%, #C9BCA3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5040;
  font-size: 0.85rem;
  text-align: center;
  position: sticky;
  top: 100px;
}
.property-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.property-hero-media span.placeholder-text { padding: var(--space-md); }
.property-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}
.property-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm) var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
  margin: var(--space-md) 0;
}
.property-detail-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}
.property-detail-meta div span { font-size: 0.75rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.property-description {
  color: var(--ink-soft);
  line-height: 1.75;
  white-space: pre-line;
}
.property-detail-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-md); }
.property-not-found { text-align: center; padding: var(--space-xl) 0; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.pillar-card {
  background: transparent;
  border-radius: 36px 36px 36px 4px;
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--stone-dark);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pillar-card:nth-child(2) { border-radius: 36px 36px 4px 36px; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-card .num { font-family: var(--font-display); font-size: 0.82rem; color: var(--plum); font-weight: 500; }
.pillar-card h3 { font-size: 1.4rem; font-weight: 500; margin: var(--space-xs) 0; }
.pillar-card p { color: var(--ink-soft); }

/* ---------- Property cards ---------- */
.property-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--stone-dark);
}
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-pills button {
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  border: 1px solid var(--stone-dark);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
}
.filter-pills button.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.property-card {
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.property-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #E8DFCF 0%, #C9BCA3 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5040;
  font-size: 0.8rem;
  text-align: center;
  padding: var(--space-sm);
}
.property-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  text-transform: uppercase;
}
.property-tag.renta { background: var(--plum); }
.property-body { padding: var(--space-sm) var(--space-md) var(--space-md); }
.property-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; font-style: italic; color: var(--ink); }
.property-title { font-size: 0.96rem; font-weight: 500; margin: 0.3rem 0; }
.property-loc { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.property-specs {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--stone);
  padding-top: 0.7rem;
}

/* ---------- Values / why us ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.value-item { text-align: left; }
.value-item .mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--plum-light);
  color: var(--plum);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.value-item h3 { font-size: 1.05rem; font-weight: 500; }
.value-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Family banner ---------- */
.family-banner {
  background: transparent;
  border: 1px solid var(--stone-dark);
  color: var(--ink);
  border-radius: var(--radius);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-md);
}
.family-banner h2 { color: var(--ink); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 500; }
.family-banner p { color: var(--ink-soft); max-width: 55ch; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: transparent;
  border-radius: var(--radius);
  padding: var(--space-md);
  border: 1px solid var(--stone-dark);
}
.testimonial-card .stars { color: var(--plum); letter-spacing: 2px; margin-bottom: var(--space-xs); }
.testimonial-card p { font-style: italic; color: var(--ink-soft); }
.testimonial-name { font-weight: 500; font-size: 0.88rem; margin-top: var(--space-sm); }
.testimonial-role { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--stone);
  margin: 0 auto var(--space-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.8rem;
  border: 2px solid var(--plum-deep);
  box-shadow: var(--shadow);
}
.team-card h4 { font-size: 1.02rem; margin-bottom: 0.1rem; }
.team-card span { font-size: 0.82rem; color: var(--plum); font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.contact-form { display: grid; gap: var(--space-sm); }
.contact-form label { font-size: 0.85rem; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-info-card {
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius);
  padding: var(--space-lg);
  border: 1px solid var(--stone-dark);
}
.contact-info-card h3 { color: var(--ink); }
.contact-info-row {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--stone-dark);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row strong { display: block; font-size: 0.85rem; color: var(--ink-soft); }
.map-placeholder {
  margin-top: var(--space-md);
  aspect-ratio: 16/9;
  background: var(--stone);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-sm);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.blog-card {
  background: transparent;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #EFE0FA, #E8DFCF);
  display: flex; align-items: center; justify-content: center;
  color: #5C3A78;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-sm);
}
.blog-body { padding: var(--space-md); }
.blog-cat { font-size: 0.72rem; color: var(--plum); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-body h3 { font-size: 1.05rem; font-weight: 500; margin: 0.4rem 0; }
.blog-body p { font-size: 0.9rem; color: var(--ink-soft); }
.blog-date { font-size: 0.8rem; color: var(--ink-soft); margin-top: var(--space-sm); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--stone);
  color: var(--ink-soft);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--stone-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--stone-dark);
}
.footer-brand img { height: 44px; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-col h4 { color: var(--ink); font-size: 0.9rem; margin-bottom: var(--space-sm); }
.footer-col ul li { margin-bottom: 0.6rem; font-size: 0.88rem; }
.footer-col a:hover { color: var(--ink); }
.footer-social { display: flex; gap: 0.7rem; margin-top: var(--space-sm); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--stone-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--leaf);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(63, 165, 110, 0.6);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: var(--space-lg) 0 var(--space-md);
  border-bottom: 1px solid var(--stone-dark);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 500; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--space-sm); }
.breadcrumb .sep { margin: 0 0.4rem; }

/* ---------- Utilities ---------- */
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .property-hero { grid-template-columns: 1fr; }
  .property-hero-media { position: static; }
  .pillars, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .property-grid, .testimonial-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .family-banner { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 680px) {
  .main-nav, .nav-actions .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .property-grid, .testimonial-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: var(--space-md); }
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }
}

/* Mobile nav drawer */
.main-nav.open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--stone-dark);
  flex-direction: column;
  padding: var(--space-sm) var(--space-md) var(--space-md);
}
.main-nav.open ul { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
