/* ============================================================
   Columbia Partners Real Estate (Timothy Lee) — stylesheet
   Palette: Columbia Partners blue + slate + gold
   ============================================================ */
:root {
  --brand: #0e5aa6;
  --brand-dark: #0a4680;
  --brand-deep: #0b2c4f;
  --cream: #f5f7fa;
  --cream-2: #e9eef3;
  --gold: #c8a45e;
  --gold-bright: #d9b876;
  --text: #1f2933;
  --muted: #5b6770;
  --white: #ffffff;
  --shadow: 0 18px 40px -18px rgba(11, 44, 79, 0.35);
  --shadow-soft: 0 10px 30px -16px rgba(11, 44, 79, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; line-height: 1.1; font-weight: 600; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--brand-dark); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
.eyebrow.light { color: var(--gold-bright); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(14, 90, 166, 0.7); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-gold { background: var(--gold); color: var(--brand-deep); box-shadow: 0 10px 24px -10px rgba(200, 164, 94, 0.7); }
.btn-gold:hover { background: var(--gold-bright); }

/* ---------- topbar ---------- */
.topbar { background: var(--brand-deep); color: #d7d7cf; font-size: 0.82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: #d7d7cf; transition: color 0.2s; }
.topbar a:hover { color: var(--gold-bright); }
.topbar-contact a { margin-right: 20px; }
.topbar-social a { margin-left: 16px; }

/* ---------- navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 rgba(11, 44, 79, 0.08);
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-soft); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 40px; width: auto; display: block; }
.footer-logo { height: 46px; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-family: "Fraunces", serif; font-weight: 700;
  border-radius: 12px; font-size: 1.05rem;
  box-shadow: inset 0 0 0 1.5px var(--gold);
}
.brand-text { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.25rem; color: var(--brand-dark); line-height: 1; }
.brand-text small { display: block; font-size: 0.6rem; letter-spacing: 0.32em; color: var(--gold); font-weight: 600; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--text); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--brand); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 0.55em 1.3em !important; border-radius: 999px; transition: background 0.2s, transform 0.2s; }
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--brand-dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Downtown_Seattle_skyline_%28Unsplash%29.jpg/1920px-Downtown_Seattle_skyline_%28Unsplash%29.jpg") center/cover no-repeat;
  transform: scale(1.1);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11, 44, 79, 0.82) 0%, rgba(11, 44, 79, 0.55) 45%, rgba(11, 44, 79, 0.25) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; max-width: 880px; }
.hero-eyebrow { color: var(--gold-bright); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; font-size: 0.85rem; }
.hero h1 { color: #fff; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 560px; color: #ece9e0; }

/* search bar */
.search-bar {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  max-width: 880px;
}
.search-field { display: flex; flex-direction: column; flex: 1 1 130px; text-align: left; }
.search-field label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin: 0 0 4px 6px; }
.search-field input, .search-field select {
  border: 1px solid #d3dbe3; background: #fff; border-radius: 10px;
  padding: 11px 12px; font-size: 0.95rem; font-family: inherit; color: var(--text);
  width: 100%;
}
.search-field input:focus, .search-field select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.search-btn { flex: 0 0 auto; height: 46px; }

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: #fff; font-size: 2rem; opacity: 0.8;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- stats ---------- */
.stats { background: var(--brand-deep); color: #fff; padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: "Fraunces", serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold-bright); }
.stat-label { font-size: 0.9rem; letter-spacing: 0.04em; color: #cfd4ca; text-transform: uppercase; }

/* ---------- listings ---------- */
.listings { background: var(--cream); }
.filter-bar { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  border: 1px solid #d3dbe3; background: #fff; color: var(--text);
  padding: 0.55em 1.3em; border-radius: 999px; cursor: pointer; font-weight: 500;
  font-family: inherit; font-size: 0.95rem; transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.card-badge.rent { background: #3a6ea5; }
.card-badge.sold { background: #8a1f2b; }
.card-fav {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px;
  border-radius: 50%; border: none; background: rgba(255,255,255,0.9); cursor: pointer;
  font-size: 1.05rem; line-height: 1; display: grid; place-items: center;
  transition: transform 0.2s, background 0.2s; color: #b33;
}
.card-fav:hover { transform: scale(1.12); }
.card-fav.active { background: #b33; color: #fff; }
.card-price { position: absolute; bottom: 12px; left: 14px; background: rgba(11, 44, 79,0.85); color: #fff; padding: 7px 14px; border-radius: 999px; font-weight: 700; font-size: 1.02rem; backdrop-filter: blur(4px); }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-title { font-family: "Fraunces", serif; font-size: 1.2rem; font-weight: 600; color: var(--brand-dark); }
.card-addr { color: var(--muted); font-size: 0.9rem; }
.card-specs { display: flex; gap: 16px; margin-top: 10px; padding-top: 14px; border-top: 1px solid #e6ecf2; color: var(--text); font-size: 0.9rem; }
.card-specs span { display: inline-flex; align-items: center; gap: 5px; }
.card-specs b { font-weight: 600; }

.no-results { text-align: center; color: var(--muted); margin-top: 30px; font-size: 1.05rem; }

/* ---------- services ---------- */
.services { background: var(--cream-2); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-soft); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-6px); border-top-color: var(--gold); box-shadow: var(--shadow); }
.service-icon { font-size: 2rem; width: 64px; height: 64px; display: grid; place-items: center; background: var(--cream); border-radius: 16px; margin-bottom: 16px; }
.service-card h3 { color: var(--brand-dark); }
.service-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute; bottom: -22px; right: -16px;
  background: #fff; border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1.2;
}
.about-badge-num { font-family: "Fraunces", serif; font-size: 1.7rem; font-weight: 700; color: var(--brand); }
.about-badge span:last-child { font-size: 0.82rem; color: var(--muted); }
.about-points { list-style: none; padding: 0; margin: 0 0 28px; }
.about-points li { padding: 8px 0 8px 30px; position: relative; color: var(--text); }
.about-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- areas ---------- */
.areas { background: var(--cream-2); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-soft);
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform 0.4s var(--ease);
}
.area-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 44, 79,0.85), rgba(11, 44, 79,0.05) 60%); transition: background 0.3s; }
.area-card:hover { transform: translateY(-6px); }
.area-card:hover::after { background: linear-gradient(to top, rgba(11, 44, 79,0.9), rgba(14, 90, 166,0.25) 70%); }
.area-info { position: relative; z-index: 2; padding: 20px; color: #fff; }
.area-info h3 { color: #fff; margin: 0 0 2px; }
.area-info span { font-size: 0.85rem; color: var(--gold-bright); }

/* ---------- testimonials ---------- */
.testimonials { background: var(--brand-deep); color: #fff; }
.testimonials h2 { color: #fff; }
.carousel { max-width: 800px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s var(--ease); }
.quote { flex: 0 0 100%; text-align: center; padding: 0 12px; margin: 0; }
.stars { color: var(--gold-bright); letter-spacing: 0.2em; font-size: 1.1rem; margin-bottom: 16px; }
.quote blockquote { font-family: "Fraunces", serif; font-size: clamp(1.2rem, 2.5vw, 1.7rem); line-height: 1.45; margin: 0 0 20px; font-weight: 500; }
.quote figcaption { color: #cfd4ca; font-size: 0.95rem; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.3); cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s; }
.carousel-dots button.active { background: var(--gold-bright); transform: scale(1.3); }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(48px, 7vw, 80px) 24px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: 6px; }
.cta-inner p { margin: 0; color: #e7ece4; }

/* ---------- contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 64px); }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid #dde4ec; display: flex; gap: 14px; }
.contact-list li span:first-child { font-weight: 600; color: var(--brand); min-width: 70px; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; padding-top: 2px; }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--brand-dark); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit; font-size: 0.98rem; font-weight: 400; color: var(--text);
  border: 1px solid #d3dbe3; border-radius: 10px; padding: 12px; background: #fbfcfe;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-status { margin: 0; padding: 12px; border-radius: 10px; background: #e6f0e8; color: var(--brand-dark); font-weight: 600; font-size: 0.92rem; text-align: center; }

/* ---------- footer ---------- */
.footer { background: var(--brand-deep); color: #c9cec4; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 48px; }
.footer .brand-text { color: #fff; }
.footer-brand p { margin-top: 16px; max-width: 280px; font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: #c9cec4; font-size: 0.92rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.newsletter { display: flex; gap: 8px; margin-top: 4px; }
.newsletter input { flex: 1; border: 1px solid #1d3a5a; background: #0f2742; color: #fff; border-radius: 999px; padding: 11px 16px; font-family: inherit; font-size: 0.9rem; }
.newsletter input:focus { outline: 1px solid var(--gold); }
.footer-bottom { border-top: 1px solid #143352; padding: 20px 0; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: #8f978c; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 44, 79, 0.7); backdrop-filter: blur(4px); animation: fade 0.3s; }
@keyframes fade { from { opacity: 0; } }
.modal-card {
  position: relative; z-index: 2; background: #fff; border-radius: var(--radius-lg);
  max-width: 920px; width: 100%; max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1.2fr 1fr; box-shadow: var(--shadow);
  animation: pop 0.35s var(--ease);
}
@keyframes pop { from { transform: translateY(20px) scale(0.97); opacity: 0; } }
.modal-close { position: absolute; top: 12px; right: 14px; z-index: 5; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--brand-dark); }
.modal-close:hover { background: #fff; }
.modal-gallery { position: relative; background: #000; }
.modal-gallery > img { width: 100%; height: 100%; max-height: 90vh; object-fit: cover; }
.gallery-nav { position: absolute; top: 45%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,0.85); cursor: pointer; font-size: 1.5rem; line-height: 1; color: var(--brand-dark); }
.gallery-nav.prev { left: 12px; } .gallery-nav.next { right: 12px; }
.gallery-nav:hover { background: #fff; }
.modal-thumbs { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 8px; }
.modal-thumbs img { width: 52px; height: 40px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.6; border: 2px solid transparent; }
.modal-thumbs img.active { opacity: 1; border-color: var(--gold); }
.modal-body { padding: 32px 30px; }
.modal-body .m-status { display: inline-block; background: var(--brand); color: #fff; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.modal-body .m-status.rent { background: #3a6ea5; } .modal-body .m-status.sold { background: #8a1f2b; }
.modal-body h3 { font-size: 1.6rem; color: var(--brand-dark); margin-bottom: 4px; }
.modal-body .m-addr { color: var(--muted); margin-bottom: 14px; }
.modal-body .m-price { font-family: "Fraunces", serif; font-size: 1.9rem; font-weight: 700; color: var(--brand); margin-bottom: 18px; }
.m-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0 0 20px; padding: 18px 0; border-top: 1px solid #e6ecf2; border-bottom: 1px solid #e6ecf2; }
.m-specs div { font-size: 0.9rem; color: var(--muted); }
.m-specs b { display: block; font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--text); font-weight: 600; }
.modal-body p.m-blurb { color: var(--text); font-size: 0.96rem; }
.modal-body .btn { margin-top: 8px; width: 100%; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-gallery > img { max-height: 320px; }
}

@media (max-width: 760px) {
  .topbar-social { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 110px; right: 16px; left: 16px;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.25s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 10px; border-bottom: 1px solid #eef2f6; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .search-field { flex: 1 1 100%; }
  .search-btn { width: 100%; }
}

@media (max-width: 540px) {
  .listing-grid, .service-grid, .area-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .about-badge { right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
