/* =====================================================================
   SIX Real Estate — Styles
   ===================================================================== */

/* ── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; font-weight: 300; background: #fff; color: #0e1014; -webkit-font-smoothing: antialiased; }

/* ── Design tokens ────────────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg-deep:   #f4f2ee;
  --ink:       #0e1014;
  --ink-2:     #5a6070;
  --accent:    #1b2d4f;
  --accent-dk: #111e35;
  --gold:      #c09a5b;
  --muted:     #7b818b;
  --sans:      'Outfit', sans-serif;
  --mono:      'JetBrains Mono', monospace;
  --radius:    14px;
  --max:       1200px;
}

/* ── Typography ───────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--sans); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 30px); }
p  { line-height: 1.7; color: var(--ink-2); }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.mono { font-family: var(--mono); }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; }
.lede { font-size: 20px; font-weight: 300; line-height: 1.6; color: var(--ink-2); }

/* ── Layout ───────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 28px; border: 1.5px solid var(--ink); border-radius: 100px;
  transition: all 0.2s; cursor: pointer; background: transparent; color: var(--ink);
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--filled { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--filled:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: #a8844a; border-color: #a8844a; }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center;
  height: 68px;
}
.header-right {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.nav { margin: 0 auto; }
.header-phone-corner {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-2); text-transform: uppercase; text-decoration: none;
}
.header-phone-corner:hover { color: var(--accent); }
.header-cta-corner {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 100px;
  transition: background 0.2s; text-decoration: none;
}
.header-cta-corner:hover { background: var(--accent-dk); }

.brand { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.brand__logo { height: 64px; width: auto; object-fit: contain; }
.brand__sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

.nav { display: flex; gap: 32px; }
.nav a {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); transition: color 0.2s; padding-bottom: 2px;
}
.nav a:hover, .nav a.is-current { color: var(--accent); border-bottom: 1.5px solid var(--accent); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; padding-bottom: 80px; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,35,0.7) 0%, rgba(10,18,35,0.2) 60%, transparent 100%); }
.hero__inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 32px; width: 100%; }
.hero__inner h1 { color: #fff; max-width: 14ch; line-height: 1.05; }
.hero__inner .hero-sub { color: rgba(255,255,255,0.75); font-size: 18px; margin-top: 20px; max-width: 48ch; }
.hero__inner .hero-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero__inner .btn { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero__inner .btn:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ── Stats bar ────────────────────────────────────────────────────── */
.stats-bar { background: var(--accent); color: #fff; padding: 0; }
.stats-bar__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; }
.stats-bar__item { flex: 1; padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.12); }
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num { font-size: clamp(32px, 4vw, 52px); font-weight: 300; letter-spacing: -0.02em; color: #fff; }
.stats-bar__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ── About strip ──────────────────────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip__body p { margin-top: 20px; max-width: 56ch; }
.about-strip__body p + p { margin-top: 16px; }

/* ── Services grid ────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card { border-radius: var(--radius); overflow: hidden; position: relative; display: block; cursor: pointer; text-decoration: none; }
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover img { transform: scale(1.04); }
.service-card__body { padding: 20px 24px 12px; color: var(--ink-2); font-size: 15px; }
.service-card__label { padding: 0 24px 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; }

/* ── Agents grid ──────────────────────────────────────────────────── */
.agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.agent-card { text-align: center; }
.agent-card__photo {
  width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px;
  background: var(--bg-deep); border: 3px solid rgba(27,45,79,0.12);
}
.agent-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.agent-card__name { font-size: 17px; font-weight: 400; color: var(--ink); }
.agent-card__dre { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); margin-top: 4px; }
.agent-card__phone { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-top: 8px; }
.agent-card__email { font-size: 13px; color: var(--muted); margin-top: 4px; word-break: break-all; }
.agent-card__email a { color: inherit; text-decoration: none; }
.agent-card__email a:hover { color: var(--accent); }

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-carousel { position: relative; }
.testi-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px; margin: -4px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track .testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start;
}
.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.testi-arrow {
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 22px; line-height: 1; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.15s, opacity 0.15s, border-color 0.15s;
}
.testi-arrow:hover:not([disabled]) { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.testi-arrow[disabled] { opacity: 0.3; cursor: default; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; }
.testimonial-card__quote { font-size: 17px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.9); }
.testimonial-card__quote::before { content: '\201C'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -20px; margin-right: 4px; }
.testimonial-card__author { margin-top: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── Listings (properties page) ───────────────────────────────────── */
.properties-hero { background: var(--accent); padding: 160px 0 80px; text-align: center; }
.properties-hero h1 { color: #fff; }
.properties-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 18px; }

.region-header { text-align: center; padding: 80px 0 40px; }
.region-header .eyebrow { color: var(--gold); }
.region-header h2 { margin-top: 12px; }
.region-header .region-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-top: 8px; }
.region-divider { width: 48px; height: 1px; background: var(--gold); margin: 16px auto 0; }

.listing-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08); background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}
.listing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.listing-card__media { position: relative; aspect-ratio: 4/3; background: var(--bg-deep); overflow: hidden; }
.listing-card__media img { width: 100%; height: 100%; object-fit: cover; }
.listing-card__media .placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #e8e4dc, #e8e4dc 10px, #f0ece4 10px, #f0ece4 20px); }
.listing-card__status {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; font-weight: 500;
}
.listing-card__status--active { background: #e8f4ea; color: #1a6b30; }
.listing-card__status--sold { background: #1b2d4f; color: #fff; }
.listing-card__status--pending { background: #fff3cd; color: #856404; }
.listing-card__status--off { background: #f0f0f0; color: #555; }

.listing-card__body { padding: 24px; }
.listing-card__price { font-size: 24px; font-weight: 400; color: var(--ink); letter-spacing: -0.02em; }
.listing-card__address { font-size: 15px; color: var(--ink-2); margin-top: 4px; line-height: 1.4; }
.listing-card__stats { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.07); flex-wrap: wrap; }
.listing-card__stat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.listing-card__mls { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 10px; }
.listing-card__actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.listing-card__actions a {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(0,0,0,0.15);
  color: var(--ink-2); transition: all 0.2s; cursor: pointer;
}
.listing-card__actions a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

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

/* ── Contact form panel ───────────────────────────────────────────── */
.form-panel { background: var(--accent); padding: 100px 0; }
.form-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-panel h2 { color: #fff; }
.form-panel .lede { color: rgba(255,255,255,0.65); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 14px 16px; color: #fff; font-family: var(--sans); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--accent-dk); color: #fff; }

/* ── Contact page hero ────────────────────────────────────────────── */
.contact-hero { position: relative; height: 50vh; min-height: 400px; display: flex; align-items: flex-end; padding-bottom: 60px; margin-top: 80px; }
.contact-hero__media { position: absolute; inset: 0; overflow: hidden; }
.contact-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,35,0.75) 0%, rgba(10,18,35,0.3) 100%); }
.contact-hero__inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.contact-hero__inner h1 { color: #fff; }
.contact-hero__inner p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 18px; max-width: 50ch; }

.contact-body { padding: 80px 0; }
.contact-body__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.contact-body__agents { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-agent { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; }
.contact-agent__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--bg-deep); flex-shrink: 0; }
.contact-agent__name { font-weight: 400; font-size: 14px; }
.contact-agent__phone { font-family: var(--mono); font-size: 11px; color: var(--accent); margin-top: 2px; }
.contact-agent__email { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 2px; word-break: break-all; }

.contact-form .contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .contact-form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.contact-form label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea {
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 10px; padding: 14px 16px;
  font-family: var(--sans); font-size: 15px; outline: none; transition: border-color 0.2s; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form__submit {
  background: var(--accent); color: #fff; border: none; border-radius: 100px;
  padding: 16px 40px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.contact-form__submit:hover { background: var(--accent-dk); }
.contact-form__status { font-size: 14px; color: var(--muted); margin-top: 8px; }
.req { color: var(--muted); font-weight: 300; }

/* ── Page headers (interior pages) ───────────────────────────────── */
.page-header { background: var(--accent); padding: 160px 0 80px; }
.page-header .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.page-header h1 { color: #fff; }
.page-header .lede { color: rgba(255,255,255,0.65); margin-top: 16px; }
.page-header__right { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.8; }

/* ── Buying/Selling content ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.step-card { padding: 32px; background: #fff; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.step-card__num { font-family: var(--mono); font-size: 36px; color: var(--gold); opacity: 0.6; letter-spacing: -0.02em; }
.step-card__title { font-size: 20px; font-weight: 400; margin-top: 12px; color: var(--ink); }
.step-card__body { margin-top: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.65; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section__media { border-radius: var(--radius); overflow: hidden; }
.split-section__media img { width: 100%; display: block; }
.split-section__body p { margin-top: 16px; }
.split-section__body p + p { margin-top: 12px; }

/* ── About page ───────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card { padding: 32px; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); }
.value-card__icon { font-size: 28px; margin-bottom: 16px; }
.value-card__title { font-size: 20px; font-weight: 400; color: var(--ink); }
.value-card__body { margin-top: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.65; }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer { background: #0e1420; color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.site-footer__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.site-footer ul li a:hover { color: #fff; }
.site-footer p { font-size: 14px; line-height: 1.7; }
.site-footer__legal {
  max-width: var(--max); margin: 0 auto; padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.25);
}

/* ── Lightbox ─────────────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lightbox.hidden { display: none; }
.lightbox__inner { position: relative; width: 90vw; max-width: 900px; aspect-ratio: 16/9; }
.lightbox__inner iframe { width: 100%; height: 100%; border: none; border-radius: 8px; }
.lightbox__close { position: absolute; top: -44px; right: 0; font-size: 28px; color: #fff; cursor: pointer; background: none; border: none; line-height: 1; }

/* ── Interior page first section (clears fixed header) ───────────── */
.page-first { padding-top: 168px; }

/* ── Full-width CTA banner (image + overlay + centered text) ──────── */
.cta-banner { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,18,35,0.12) 0%, rgba(10,18,35,0.58) 100%); z-index: 1; }
.cta-banner__inner { position: relative; z-index: 2; text-align: center; padding: 80px 24px; color: #fff; }
.cta-banner__inner h2 { color: #fff; margin-bottom: 32px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.cta-banner__btn { display: inline-block; background: #fff; color: var(--ink); padding: 16px 48px; border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: background 0.2s, color 0.2s; }
.cta-banner__btn:hover { background: var(--gold); color: #fff; }

/* ── Testimonial highlight (dark section with quote) ──────────────── */
.testimonial-highlight { padding: 96px 0; }
.testimonial-highlight h2 { font-weight: 300; margin-bottom: 28px; }
.testimonial-highlight__rule { height: 1px; background: rgba(255,255,255,0.25); margin-bottom: 36px; max-width: 640px; }
.testimonial-highlight__quote { font-size: 18px; line-height: 1.7; max-width: 700px; margin-bottom: 20px; font-weight: 300; }
.testimonial-highlight__author { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; }

/* ── Utility ──────────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.pt-0 { padding-top: 0 !important; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-phone-corner { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-track .testimonial-card { flex-basis: 100%; }
  .form-panel__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-strip { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-body__grid { grid-template-columns: 1fr; }
  .page-header .container { grid-template-columns: 1fr; }
  .stats-bar__inner { flex-direction: column; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav { gap: 16px; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
  .hero__inner .hero-ctas { flex-direction: column; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
