/* ============================================
   LANDMARK DAVAO — STYLESHEET
   Palette: Forest Green + Warm Sand + Off-White
   Fonts: Playfair Display (display) + Inter (body)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #40916C;
  --green-500: #52B788;
  --green-300: #95D5B2;
  --green-100: #D8F3DC;
  --sand-900: #5C4A1E;
  --sand-600: #C9933A;
  --sand-400: #E9C46A;
  --sand-100: #FDF6E3;
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --transition: 0.25s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---- EYEBROW & HEADERS ---- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green-900);
  margin-bottom: 12px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .eyebrow { color: var(--green-300); }
.section-header.light .section-sub { color: rgba(255,255,255,0.75); }
.section-sub { color: var(--gray-500); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  white-space: nowrap;
}
.logo em { color: var(--green-700); font-style: normal; }
.logo-mark { font-size: 22px; color: var(--green-700); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green-700); }
.btn-nav {
  background: var(--green-800);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--green-900); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-200);
  gap: 14px;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 4px 0;
}
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1591154669695-5f2a8d20c089?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(27,67,50,0.6) 60%, rgba(45,106,79,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--sand-400);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Search bar */
.hero-search {
  display: flex;
  align-items: flex-end;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 16px 16px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 780px;
  flex-wrap: wrap;
  gap: 12px;
}
.hs-group {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hs-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}
.hs-group select {
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-900);
  background: transparent;
  cursor: pointer;
  padding: 4px 0;
  font-family: var(--font-body);
}
.btn-search {
  background: var(--green-800);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  font-family: var(--font-body);
  align-self: flex-end;
}
.btn-search:hover { background: var(--green-900); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hs-stat {
  display: flex;
  flex-direction: column;
}
.hs-stat strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.hs-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Floating cards */
.floating-cards {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  animation: floatIn 1s ease 0.3s both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(-40%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.fc {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  width: 200px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.fc:hover { transform: translateX(-4px); background: rgba(255,255,255,0.18); }
.fc1 { transform: translateX(20px); }
.fc2 { transform: translateX(0); }
.fc3 { transform: translateX(10px); }
.fc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand-400);
  margin-bottom: 4px;
}
.fc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.fc-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}

/* ---- SECTION GENERAL ---- */
.section { padding: 88px 0; }

/* ---- FILTER TABS ---- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ftab {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray-700);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.ftab:hover { border-color: var(--green-500); color: var(--green-800); }
.ftab.active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

/* ---- LISTING CARDS ---- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lc-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--green-100);
}
.lc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .lc-image img { transform: scale(1.05); }
.lc-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-new { background: var(--green-800); color: var(--white); }
.badge-featured { background: var(--sand-600); color: var(--white); }
.badge-sold { background: var(--gray-700); color: var(--white); }
.lc-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: transform var(--transition);
  border: none;
}
.lc-fav:hover { transform: scale(1.15); }
.lc-body { padding: 20px; }
.lc-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.lc-title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--green-900);
  margin-bottom: 4px;
  line-height: 1.3;
}
.lc-location {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lc-specs {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.lc-spec {
  font-size: 13px;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
}
.lc-spec span { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.lc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-900);
  font-weight: 700;
}
.lc-cta {
  background: none;
  border: 1.5px solid var(--green-700);
  color: var(--green-800);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lc-cta:hover { background: var(--green-800); color: var(--white); }
.listings-cta {
  text-align: center;
  margin-top: 48px;
}
.btn-outline {
  padding: 14px 36px;
  border: 2px solid var(--green-800);
  border-radius: var(--radius-sm);
  color: var(--green-800);
  font-weight: 600;
  font-size: 15px;
  background: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-outline:hover { background: var(--green-800); color: var(--white); }

/* ---- MAP SECTION ---- */
.map-section {
  background: var(--green-900);
  padding: 88px 0;
}
.map-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.map-sidebar {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-sidebar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.district-list { display: flex; flex-direction: column; gap: 4px; }
.district-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid transparent;
}
.district-item:hover { background: rgba(255,255,255,0.08); }
.district-item.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.di-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.district-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.district-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.map-container { display: flex; flex-direction: column; gap: 16px; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-embed iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(20%);
}
.map-info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px 24px;
  transition: all 0.3s ease;
}
.mic-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.mic-header strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}
.mic-header span {
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 3px 10px;
  border-radius: 100px;
}
.map-info-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.mic-stats {
  display: flex;
  gap: 32px;
}
.mic-stats div {
  display: flex;
  flex-direction: column;
}
.mic-stats strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
}
.mic-stats span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green-900);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
.testi-section {
  background: var(--green-900);
  padding: 88px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.12); }
.testi-stars { color: var(--sand-400); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}
.testi-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 12px; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--green-900);
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci-item strong { display: block; font-size: 14px; color: var(--green-900); margin-bottom: 2px; }
.ci-item span { font-size: 13px; color: var(--gray-500); }
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-900);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-700); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-800);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--green-900); }
.form-success {
  display: none;
  background: var(--green-100);
  color: var(--green-900);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--green-900);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 260px; line-height: 1.7; }
.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-300);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-100);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  color: var(--gray-700);
}
.modal-body { padding: 28px; }
.modal-img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.modal-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 6px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-900);
  margin-bottom: 6px;
}
.modal-loc { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }
.modal-desc { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.ms-box {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.ms-box strong { display: block; font-size: 18px; color: var(--green-900); }
.ms-box span { font-size: 11px; color: var(--gray-500); }
.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green-900);
  font-weight: 700;
}
.modal-inquire {
  background: var(--green-800);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.modal-inquire:hover { background: var(--green-900); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .floating-cards { display: none; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .map-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero-search { flex-direction: column; }
  .btn-search { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .modal-specs-grid { grid-template-columns: repeat(2,1fr); }
}