/* ── Base ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --gold:    #c9a96e;
  --gold-d:  #a8833f;
  --navy:    #0f1923;
  --navy-2:  #1a2c3d;
  --cream:   #f9f5ef;
  --text:    #1e1e1e;
  --muted:   #6b7280;
  --white:   #ffffff;
  --border:  rgba(201,169,110,.25);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Utility ─────────────────────────────────────────────────────────── */
.gold   { color: var(--gold); }
.serif  { font-family: 'Playfair Display', serif; }
.btn {
  display: inline-block; padding: .75rem 2rem; border-radius: 2px;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: all .3s;
}
.btn-gold {
  background: var(--gold); color: var(--white); border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-d); border-color: var(--gold-d); }
.btn-outline {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-dark {
  background: var(--navy); color: var(--white); border: 2px solid var(--navy);
}
.btn-dark:hover { background: var(--navy-2); }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--navy);
  line-height: 1.15; margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 600px;
}
.divider {
  width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0;
}

/* ── Navbar ──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 76px;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.navbar.scrolled .nav-link { color: var(--navy); }
.navbar.scrolled .logo { color: var(--navy); }
.navbar.scrolled .logo span { color: var(--gold); }
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--white); letter-spacing: .02em; white-space: nowrap;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  color: rgba(255,255,255,.9); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 500; transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px; background: currentColor;
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: var(--white); font-size: 1.1rem; }

/* ── Hero Slideshow ──────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 700px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,35,.55) 0%, rgba(10,20,35,.5) 50%, rgba(10,20,35,.72) 100%);
}
/* Ken Burns animation */
@keyframes kenburns-1 { 0%{transform:scale(1) translate(0,0)} 100%{transform:scale(1.12) translate(-2%,-1%)} }
@keyframes kenburns-2 { 0%{transform:scale(1.1) translate(-2%,0)} 100%{transform:scale(1) translate(2%,-2%)} }
@keyframes kenburns-3 { 0%{transform:scale(1) translate(2%,1%)} 100%{transform:scale(1.1) translate(-1%,-2%)} }
@keyframes kenburns-4 { 0%{transform:scale(1.08) translate(0,-2%)} 100%{transform:scale(1) translate(-2%,1%)} }
.hero-slide:nth-child(1).active { animation: kenburns-1 8s ease-in-out forwards; }
.hero-slide:nth-child(2).active { animation: kenburns-2 8s ease-in-out forwards; }
.hero-slide:nth-child(3).active { animation: kenburns-3 8s ease-in-out forwards; }
.hero-slide:nth-child(4).active { animation: kenburns-4 8s ease-in-out forwards; }

.hero-content {
  position: relative; z-index: 1; text-align: center; padding: 0 20px;
  animation: fadeUp .8s .3s ease both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.08; margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.85);
  margin-bottom: 3rem; font-weight: 300; letter-spacing: .02em;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-indicators {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4);
  cursor: pointer; transition: all .3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.4); }
.scroll-hint {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,.3); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ── Search bar ──────────────────────────────────────────────────────── */
.hero-search {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 860px; z-index: 2; padding: 0 20px;
}
.search-bar {
  background: var(--white); border-radius: 4px 4px 0 0;
  display: flex; align-items: stretch; box-shadow: 0 -4px 40px rgba(0,0,0,.2);
}
.search-bar input {
  flex: 1; padding: 1.25rem 1.5rem; border: none; outline: none;
  font-size: 1rem; font-family: inherit; background: transparent;
}
.search-bar select {
  padding: 1.25rem 1rem; border: none; border-left: 1px solid #eee;
  outline: none; font-family: inherit; font-size: .9rem;
  background: transparent; cursor: pointer; color: var(--muted);
}
.search-bar button {
  padding: 1.25rem 2rem; background: var(--gold); color: var(--white);
  border: none; cursor: pointer; font-family: inherit; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  border-radius: 0 4px 0 0; transition: background .2s;
}
.search-bar button:hover { background: var(--gold-d); }

/* ── Stats strip ─────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy); padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold); margin-bottom: .25rem;
}
.stat-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ── About strip ─────────────────────────────────────────────────────── */
.about-strip { background: var(--cream); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: 2px; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--white); padding: 24px 28px; text-align: center;
  font-family: 'Playfair Display', serif;
}
.about-badge-num { font-size: 2.4rem; line-height: 1; }
.about-badge-text { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; margin-top: .25rem; }

/* ── Featured listings ───────────────────────────────────────────────── */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.listing-card {
  background: var(--white); border-radius: 3px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: transform .3s, box-shadow .3s;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.listing-img { position: relative; overflow: hidden; height: 240px; }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.listing-card:hover .listing-img img { transform: scale(1.06); }
.listing-badge {
  position: absolute; top: 16px; left: 16px; background: var(--gold);
  color: var(--white); font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 2px; font-weight: 600;
}
.listing-body { padding: 24px; }
.listing-price {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: .5rem;
}
.listing-address { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.listing-meta { display: flex; gap: 1.5rem; font-size: .8rem; color: var(--muted); border-top: 1px solid #f0f0f0; padding-top: 1rem; }
.listing-meta span { display: flex; align-items: center; gap: .4rem; }

/* ── Neighborhoods ───────────────────────────────────────────────────── */
.neighborhoods { background: var(--navy); color: var(--white); }
.neighborhoods .section-title { color: var(--white); }
.neighborhoods .section-subtitle { color: rgba(255,255,255,.65); }
.hoods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.hood-card {
  position: relative; height: 380px; overflow: hidden; cursor: pointer;
  border-radius: 2px;
}
.hood-card.large { grid-column: span 2; }
.hood-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.hood-card:hover .hood-img { transform: scale(1.06); }
.hood-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,25,35,.9) 0%, rgba(15,25,35,.1) 60%);
}
.hood-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
}
.hood-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: .4rem; }
.hood-sub { font-size: .8rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* ── Blog / News ─────────────────────────────────────────────────────── */
.blog-tabs { display: flex; gap: 0; margin-bottom: 48px; border-bottom: 2px solid #eee; }
.blog-tab {
  padding: .75rem 1.75rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s;
}
.blog-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.blog-panel { display: none; }
.blog-panel.active { display: block; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--cream); border-radius: 3px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.news-img { height: 180px; background: #ddd; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-source-badge {
  background: var(--navy); color: var(--gold); font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase; padding: .3rem .7rem;
  display: inline-block; margin-bottom: .75rem;
}
.news-body { padding: 20px; }
.news-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.4; }
.news-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: .75rem; }
.news-meta { font-size: .75rem; color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: 3px; overflow: hidden; border: 1px solid #eee;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-cat { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .6rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem; line-height: 1.4; }
.blog-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-date { font-size: .75rem; color: var(--muted); }

/* ── Mortgage Calculator ─────────────────────────────────────────────── */
.calc-wrap {
  background: var(--navy); border-radius: 6px; padding: 48px; color: var(--white);
  max-width: 780px; margin: 50px auto 0;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.calc-field label {
  display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.calc-field input, .calc-field select {
  width: 100%; padding: .85rem 1rem; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2); color: var(--white); border-radius: 3px;
  font-family: inherit; font-size: 1rem; outline: none; transition: border .2s;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--gold); }
.calc-field select option { background: var(--navy); }
.calc-result {
  background: rgba(201,169,110,.1); border: 1px solid var(--border);
  border-radius: 4px; padding: 24px; text-align: center; margin-top: 20px;
}
.calc-payment { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gold); }
.calc-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .3rem; }
.calc-breakdown { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── Agents ──────────────────────────────────────────────────────────── */
.agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 50px; }
.agent-card { text-align: center; }
.agent-photo {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.25rem; border: 3px solid var(--gold);
  background: var(--cream);
}
.agent-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .3rem; }
.agent-role { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.agent-dre { font-size: .75rem; color: var(--muted); }
.agent-contacts { margin-top: .75rem; display: flex; justify-content: center; gap: 1rem; }
.agent-contacts a { font-size: .8rem; color: var(--navy); transition: color .2s; }
.agent-contacts a:hover { color: var(--gold); }

/* ── Reviews ─────────────────────────────────────────────────────────── */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.review-card { background: var(--white); padding: 36px; border-radius: 3px; position: relative; }
.review-card::before {
  content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem;
  color: var(--gold); position: absolute; top: 10px; left: 28px; line-height: 1; opacity: .3;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.review-text { font-size: .92rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.review-author { font-weight: 600; font-size: .85rem; }
.review-location { font-size: .78rem; color: var(--muted); }

/* ── Contact CTA ─────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold); padding: 80px 0; text-align: center;
}
.cta-strip h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 2.5rem; }
.btn-white { background: var(--white); color: var(--gold); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-about { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-heading { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.dre-notice { font-size: .72rem; color: rgba(255,255,255,.25); text-align: right; }

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Inner page hero ─────────────────────────────────────────────────── */
.page-hero {
  height: 44vh; min-height: 360px; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; padding-bottom: 60px; position: relative;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,25,35,.3), rgba(15,25,35,.7));
}
.page-hero-content { position: relative; z-index: 1; }
.page-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: .5rem;
}
.page-breadcrumb { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .1em; }
.page-breadcrumb a { color: var(--gold); }

/* ── Contact form ────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1/-1; }
.form-group label {
  display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1px solid #ddd; border-radius: 3px;
  font-family: inherit; font-size: 1rem; outline: none; transition: border .2s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-icon { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; }
.contact-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.contact-value { font-size: 1rem; color: var(--navy); font-weight: 500; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hoods-grid { grid-template-columns: 1fr 1fr; }
  .hood-card.large { grid-column: span 1; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .listings-grid, .news-grid, .blog-grid, .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .calc-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .hoods-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .hero-title { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .search-bar { flex-direction: column; }
  .search-bar select, .search-bar button { border-left: none; border-top: 1px solid #eee; }
}
