/* ============================================
   THE METHOD RE — MASTER STYLESHEET
   themethodre.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&family=Bebas+Neue&display=swap');

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

:root {
  --ink:        #0A0A0A;
  --ink2:       #1C1C1C;
  --gold:       #C9A84C;
  --gold-light: #E4C97E;
  --cream:      #F5F3EE;
  --cream2:     #EAE7E0;
  --muted:      #6B6560;
  --white:      #FFFFFF;
  --display:    'Cormorant Garamond', Georgia, serif;
  --body:       'DM Sans', sans-serif;
  --stat:       'Bebas Neue', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
img { display: block; width: 100%; }

/* ============================================
   NAV
   ============================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #888;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body);
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); color: var(--ink); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); color: var(--ink); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid #3A3630;
  font-family: var(--body);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-dark:hover { background: #222; color: var(--white); }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.eyebrow, .section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
  display: block;
}
.section-label.muted-label { color: var(--muted); }
.section-headline {
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-headline.light { color: var(--white); }
.section-headline em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 460px;
}
.section-body.muted { color: #7A7570; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--ink);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-content {
  padding: 100px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 16px;
  color: #888;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  background: #0d0d0d;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, #1a1a1a 59px, #1a1a1a 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, #1a1a1a 59px, #1a1a1a 60px);
}
.hero-watermark {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--stat);
  font-size: 140px;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  user-select: none;
}
.hero-badge {
  position: absolute;
  top: 48px;
  right: 48px;
  border: 1px solid #2A2620;
  padding: 22px 24px;
  max-width: 180px;
  background: rgba(10,10,10,0.6);
}
.hero-badge-num {
  font-family: var(--stat);
  font-size: 46px;
  color: var(--white);
  line-height: 1;
}
.hero-badge-text {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================
   AUTHORITY STRIP
   ============================================ */
.strip {
  background: var(--gold);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 18px 48px;
  flex-wrap: wrap;
  gap: 12px;
}
.strip span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.strip-div {
  width: 1px;
  height: 18px;
  background: rgba(0,0,0,0.2);
}

/* ============================================
   AUTHORITY
   ============================================ */
.authority { display: grid; grid-template-columns: 1fr 1fr; }
.auth-left { background: var(--cream); padding: 100px 64px; }
.auth-right { background: var(--ink2); padding: 100px 64px; }
.stat-row { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.stat-num {
  font-family: var(--stat);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.proof-list { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.proof-item { display: flex; align-items: flex-start; gap: 14px; }
.proof-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.proof-text { font-size: 14px; color: #7A7570; line-height: 1.6; }

/* ============================================
   LISTINGS PREVIEW
   ============================================ */
.listings-preview { background: var(--cream); padding: 100px 48px; }
.listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.view-all {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--cream2);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.view-all:hover { color: var(--ink); }
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.listing-card {
  background: var(--white);
  cursor: pointer;
  transition: transform 0.25s;
}
.listing-card:hover { transform: translateY(-4px); }
.listing-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.img1 { background: linear-gradient(160deg, #1a2030 0%, #2a1510 100%); }
.img2 { background: linear-gradient(160deg, #0d1a1a 0%, #1a2a20 100%); }
.img3 { background: linear-gradient(160deg, #1a1020 0%, #201530 100%); }
.listing-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.listing-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  z-index: 1;
}
.listing-status {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 4px 10px;
  margin-bottom: 8px;
  font-weight: 500;
}
.listing-addr {
  font-family: var(--display);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}
.listing-details {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cream2);
}
.listing-price {
  font-family: var(--stat);
  font-size: 28px;
  color: var(--ink);
}
.listing-meta { font-size: 12px; color: var(--muted); }

/* ============================================
   DIFFERENTIATION
   ============================================ */
.diff { background: var(--ink); padding: 120px 48px; }
.diff-inner { max-width: 960px; margin: 0 auto; }
.diff-top { margin-bottom: 72px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.diff-item {
  background: #111;
  padding: 40px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s;
}
.diff-item:hover { border-left-color: var(--gold); }
.diff-num {
  font-family: var(--stat);
  font-size: 54px;
  color: #222;
  line-height: 1;
  margin-bottom: 16px;
}
.diff-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   RECRUITING
   ============================================ */
.recruit { display: grid; grid-template-columns: 55fr 45fr; }
.recruit-left { background: var(--gold); padding: 100px 64px; }
.recruit-right { background: var(--cream2); padding: 100px 64px; }
.recruit-headline {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}
.recruit-body {
  font-size: 16px;
  color: rgba(10,10,10,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.recruit-cta-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 15px 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body);
  transition: background 0.2s;
}
.recruit-cta-btn:hover { background: #222; color: var(--white); }
.recruit-features { display: flex; flex-direction: column; gap: 24px; }
.recruit-feat { display: flex; align-items: flex-start; gap: 16px; }
.recruit-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.recruit-feat-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.recruit-feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--cream);
  padding: 130px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, #DDD9D1 39px, #DDD9D1 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #DDD9D1 39px, #DDD9D1 40px);
  opacity: 0.4;
}
.final-cta-inner { position: relative; z-index: 2; }
.final-headline {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 78px);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  max-width: 800px;
  margin: 0 auto 20px;
}
.final-headline em { font-style: italic; color: var(--gold); }
.final-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 300;
}
.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-logo {
  font-family: var(--display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--gold); }
.footer-broker {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-license { font-size: 11px; color: #333; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { text-align: right; }
.footer-phone a, .footer-email a {
  color: #888;
  font-size: 14px;
  transition: color 0.2s;
  display: block;
  margin-bottom: 8px;
}
.footer-phone a:hover, .footer-email a:hover { color: var(--gold); }
.footer-legal { font-size: 11px; color: #333; margin-top: 16px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--ink);
  padding: 100px 64px 80px;
}
.page-hero-inner { max-width: 700px; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 17px;
  color: #888;
  line-height: 1.75;
  max-width: 500px;
  font-weight: 300;
}

/* ============================================
   CONTACT / FORM STYLES
   ============================================ */
.contact-section { padding: 100px 48px; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1000px; }
.contact-info h2 {
  font-family: var(--display);
  font-size: 40px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.contact-detail { margin-bottom: 16px; }
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail a, .contact-detail span {
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
}
.contact-detail a:hover { color: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #D8D5CE;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }

/* ============================================
   SELL PAGE
   ============================================ */
.sell-process { background: var(--white); padding: 100px 48px; }
.sell-process-inner { max-width: 960px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-top: 56px; }
.process-step { padding: 40px 28px; background: var(--cream); border-top: 3px solid transparent; transition: border-color 0.3s; }
.process-step:hover { border-top-color: var(--gold); }
.process-step-num {
  font-family: var(--stat);
  font-size: 52px;
  color: var(--cream2);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.process-step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ============================================
   JOIN PAGE
   ============================================ */
.join-split { display: grid; grid-template-columns: 1fr 1fr; }
.join-left { background: var(--ink); padding: 100px 64px; }
.join-right { background: var(--cream); padding: 100px 64px; }
.requirements-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.req-item { display: flex; align-items: flex-start; gap: 12px; }
.req-check { color: var(--gold); font-size: 14px; margin-top: 2px; }
.req-text { font-size: 14px; color: #7A7570; line-height: 1.6; }

/* ============================================
   LISTINGS PAGE
   ============================================ */
.listings-page { padding: 80px 48px; background: var(--cream); }
.listings-page-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}
.listings-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid #D8D5CE;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.2s;
  color: var(--muted);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.loading-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-column: 1/-1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .listings-page-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--ink); padding: 20px 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 64px 24px 48px; }
  .hero-visual { min-height: 260px; }
  .authority { grid-template-columns: 1fr; }
  .auth-left, .auth-right { padding: 72px 24px; }
  .listings-preview { padding: 72px 24px; }
  .listings-grid { grid-template-columns: 1fr; }
  .listings-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .diff { padding: 80px 24px; }
  .diff-grid { grid-template-columns: 1fr; }
  .recruit { grid-template-columns: 1fr; }
  .recruit-left, .recruit-right { padding: 72px 24px; }
  .final-cta { padding: 80px 24px; }
  .footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-contact { text-align: left; }
  .strip { padding: 14px 20px; }
  .strip-div { display: none; }
  .page-hero { padding: 72px 24px 60px; }
  .contact-section { padding: 72px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .sell-process { padding: 72px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .join-split { grid-template-columns: 1fr; }
  .join-left, .join-right { padding: 72px 24px; }
  .listings-page { padding: 60px 24px; }
  .listings-page-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE OVERFLOW FIX + RESPONSIVE FOR NEW SECTIONS
   ============================================================ */

/* Prevent horizontal scroll on all pages */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* All sections with inline padding should respect mobile viewport */
section, div.strip, nav.nav {
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 768px) {

  /* Founder section — 2 col → 1 col */
  .founder-section-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Any inline 2-column grid section — force single column on mobile */
  section > div[style*="grid-template-columns:1fr 1fr"],
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }

  /* Proof section cards — 1 column */
  .proof-card-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reviews grid — 1 column */
  section [style*="grid-template-columns:repeat(3"] {
    display: block !important;
  }
  section [style*="grid-template-columns:repeat(2"] {
    display: block !important;
  }

  /* Fix inline padding on new sections — prevent them overflowing */
  section[style*="padding:100px 48px"],
  section[style*="padding: 100px 48px"] {
    padding: 64px 24px !important;
  }
  section[style*="padding:80px 48px"],
  section[style*="padding: 80px 48px"] {
    padding: 60px 24px !important;
  }
  section[style*="padding:60px 48px"],
  section[style*="padding: 60px 48px"] {
    padding: 48px 24px !important;
  }

  /* Inline max-width containers */
  div[style*="max-width:960px"],
  div[style*="max-width: 960px"] {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Gap reductions on mobile */
  div[style*="gap:80px"],
  div[style*="gap: 80px"] {
    gap: 36px !important;
  }
  div[style*="gap:60px"],
  div[style*="gap: 60px"] {
    gap: 32px !important;
  }

  /* Team page founder section */
  .founder-section {
    grid-template-columns: 1fr !important;
  }
  .founder-photo {
    min-height: 380px;
  }
  .founder-bio {
    padding: 48px 24px !important;
  }

  /* Stats bar — 2 col on mobile */
  .team-stats {
    grid-template-columns: 1fr 1fr !important;
    padding: 28px 24px !important;
  }

  /* Agent grid — 1 col */
  .agents-grid {
    grid-template-columns: 1fr !important;
  }
  .agents-section {
    padding: 64px 24px !important;
  }

  /* Urgency bar on sell page */
  div[style*="background:#1a0a0a"] {
    padding: 14px 20px !important;
  }

  /* Mobile sticky bar — ensure it doesn't overflow */
  .mobile-sticky {
    padding: 12px 16px !important;
  }
  .mobile-sticky a:first-child {
    font-size: 11px !important;
  }

  /* Proof section cards spacing */
  .proof-card-grid {
    gap: 12px !important;
  }

  /* Review cards — stack vertically */
  section [style*="grid-column:1/-1"] {
    grid-column: 1 !important;
  }

  /* Location map section on about page */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] {
    display: block !important;
  }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] > div {
    margin-bottom: 32px !important;
  }

  /* iframe map */
  iframe {
    width: 100% !important;
    height: 260px !important;
  }

  /* Join page lead gen section */
  .join-split {
    padding: 64px 24px !important;
  }

  /* Quick form in sell hero */
  form[name="Quick Sell Lead"] {
    flex-direction: column !important;
  }
  form[name="Quick Sell Lead"] input,
  form[name="Quick Sell Lead"] button {
    width: 100% !important;
  }
}
