/* =============================================================
   FindHomesWithSophia.com — Main Stylesheet
   Sophia | REALTOR® | Travers Miran Realty
   ============================================================= */

/* ============================================================
   EDIT COLORS HERE
   Change any value after the colon to update that color
   across the ENTIRE website automatically.
   All colors live in one place — right here.
   ============================================================ */
:root {
  /* -- Page backgrounds -- */
  --color-bg:       #FDFAF6;   /* Main page background — warm off-white */
  --color-bg-alt:   #F4EFE5;   /* Alternate section background — soft cream */
  --color-bg-dark:  #1C1A16;   /* Dark section background — near-black warm */

  /* -- Text -- */
  --color-text:       #2C2C2C;   /* Main body text — charcoal */
  --color-text-muted: #6B6560;   /* Secondary / caption text — warm gray */
  --color-text-light: #FDFAF6;   /* Text on dark backgrounds */

  /* -- Gold accent (brand color) -- */
  --color-gold:       #B8964E;   /* Main gold — buttons, highlights, borders */
  --color-gold-dark:  #9A7A38;   /* Darker gold — hover states */
  --color-gold-light: #EAD9A8;   /* Light gold — subtle backgrounds */

  /* -- UI chrome -- */
  --color-border:  #E0D5C5;            /* Dividers and card borders */
  --color-white:   #FFFFFF;            /* Pure white */
  --color-shadow:  rgba(40, 30, 15, 0.10);  /* Drop shadows */

  /* -- Listing status badge colors -- */
  --color-status-sale:     #2C7A4B;   /* "For Sale" — deep green */
  --color-status-contract: #9A7A38;   /* "Under Contract" — dark gold */
  --color-status-sold:     #7A3535;   /* "Sold" — muted brick red */

  /* -- Layout -- */
  --max-width: 1160px;
  --nav-height: 76px;

  /* -- Typography -- */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}
/* ============================================================
   END EDIT COLORS HERE
   ============================================================ */


/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }


/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section--alt { background-color: var(--color-bg-alt); }

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

.section--dark .section-subtitle { color: rgba(253, 250, 246, 0.65); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 24px;
}

.text-center .gold-line { margin-left: auto; margin-right: auto; }


/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  text-align: center;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(253, 250, 246, 0.5);
}
.btn-outline-light:hover {
  background: rgba(253, 250, 246, 0.12);
  border-color: var(--color-text-light);
}


/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

/* NAV */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 14px;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-text); }

.main-nav .nav-cta {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 9px 20px;
  transition: background 0.18s;
}
.main-nav .nav-cta:hover { background: var(--color-gold-dark); color: var(--color-white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px 8px;
}


/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(253, 250, 246, 0.7);
  padding: 56px 0 32px;
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-inner p { margin-bottom: 4px; line-height: 1.6; }

.footer-inner a {
  color: rgba(253, 250, 246, 0.7);
  transition: color 0.18s;
}
.footer-inner a:hover { color: var(--color-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(253, 250, 246, 0.4);
}

.footer-gold { color: var(--color-gold); font-weight: 500; }


/* ── Hero (Home page) ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  /* EDIT BACKGROUND IMAGE: Replace the gradient below with:
     background-image: url('images/hero.jpg');
     and remove the linear-gradient line */
  background-image: linear-gradient(160deg, #2C2418 0%, #4A3C28 60%, #1C1A16 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(253, 250, 246, 0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(20, 16, 10, 0.75);
  border: 1px solid var(--color-gold);
  padding: 16px 24px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 2px;
}


/* ── Value Props (3-column cards) ─────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  transition: box-shadow 0.22s;
}
.value-card:hover { box-shadow: 0 8px 32px var(--color-shadow); }

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-card p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.7; }


/* ── Listing Cards ────────────────────────────────────────── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.listing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.listing-card:hover {
  box-shadow: 0 12px 40px var(--color-shadow);
  transform: translateY(-4px);
}

.listing-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.04); }

.listing-status {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 5px 10px;
}
.status-sale     { background: var(--color-status-sale); }
.status-contract { background: var(--color-status-contract); }
.status-sold     { background: var(--color-status-sold); }

.listing-card-body { padding: 20px 22px 24px; }

.listing-price {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.listing-address {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.listing-specs {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  margin-bottom: 14px;
}

.listing-spec span { font-weight: 600; color: var(--color-text); }

.listing-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── IDX Placeholder ──────────────────────────────────────── */
.idx-placeholder {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  padding: 60px 40px;
  text-align: center;
  margin-top: 48px;
}
.idx-placeholder h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-text);
}
.idx-placeholder p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 20px;
}
.idx-note {
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}


/* ── About Page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.headshot-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.headshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-bg-alt), var(--color-border));
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: center;
  gap: 12px;
}
.headshot-placeholder .ph-icon { font-size: 3rem; opacity: 0.4; }

.photo-caption {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

.about-bio p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.credentials-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.credential-item::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
}


/* ── Buyers/Sellers Page ──────────────────────────────────── */
.bs-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 48px;
}
.bs-tab {
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.18s, border-color 0.18s;
}
.bs-tab.active {
  color: var(--color-text);
  border-color: var(--color-gold);
}
.bs-tab:hover { color: var(--color-text); }

.bs-panel { display: none; }
.bs-panel.active { display: block; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.process-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.resource-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.resource-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.resource-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.resource-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 36px 30px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--color-text);
}
.contact-detail-value a:hover { color: var(--color-gold); }


/* ── Quote / CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: var(--color-bg-dark);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(253, 250, 246, 0.65);
  margin-bottom: 36px;
}

.cta-banner .gold-line { margin: 0 auto 32px; }


/* ── Filter bar (listings page) ───────────────────────────── */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  color: var(--color-text-muted);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

#listings-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}


/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--color-bg-dark);
  padding: 64px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(253, 250, 246, 0.65);
  max-width: 480px;
  margin: 0 auto;
}

.page-hero .hero-subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(253, 250, 246, 0.85);
  max-width: 620px;
  margin: 0 auto 18px;
}

.page-hero .hero-trust {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.75rem;
  color: rgba(253, 250, 246, 0.45);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--color-gold); }
.breadcrumb a:hover { text-decoration: underline; }


/* ── Testimonial / Quote ──────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--color-gold);
  padding: 20px 28px;
  background: var(--color-bg-alt);
  margin: 36px 0;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 8px;
}
.quote-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* ── Empty state (no listings) ────────────────────────────── */
.listings-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
}
.listings-empty p { font-size: 1rem; margin-top: 12px; }


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--color-white); border-bottom: 1px solid var(--color-border); padding: 16px 0; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 12px 24px; }
  .main-nav .nav-cta { margin: 8px 24px 4px; padding: 10px 20px; }
  .nav-toggle { display: block; }
  .value-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .bs-tabs { overflow-x: auto; }
  .bs-tab { white-space: nowrap; padding: 12px 20px; }
}


/* ── Investor Page ─────────────────────────────────────────── */

/* South Florida Focus callout strip */
.inv-focus-callout {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 32px 36px;
}
.inv-focus-callout h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.inv-focus-callout p {
  font-size: 0.9rem;
  color: rgba(253, 250, 246, 0.65);
}

/* How It Works — 2×2 step grid */
.inv-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inv-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.inv-step-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.inv-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.inv-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Deal Criteria — 2×2 card grid */
.inv-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inv-criteria-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 32px 28px;
}
.inv-criteria-icon { font-size: 1.8rem; margin-bottom: 12px; }
.inv-criteria-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.inv-criteria-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inv-criteria-items li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.inv-criteria-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text);
  flex-shrink: 0;
  margin-top: 7px;
}

/* How You Get Paid — 3-col cards on dark section */
.inv-exit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inv-exit-card {
  border: 1px solid rgba(253, 250, 246, 0.12);
  background: rgba(253, 250, 246, 0.05);
  padding: 32px 28px;
}
.inv-exit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
.inv-exit-card p {
  font-size: 0.88rem;
  color: rgba(253, 250, 246, 0.6);
  line-height: 1.7;
}

/* Contact section — 2-equal-col layout */
.inv-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

/* Responsive — investor-specific breakpoints */
@media (max-width: 900px) {
  .inv-steps-grid { grid-template-columns: 1fr; }
  .inv-criteria-grid { grid-template-columns: 1fr; }
  .inv-exit-grid { grid-template-columns: 1fr; }
  .inv-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .inv-focus-callout { padding: 24px 20px; }
  .inv-step { flex-direction: column; gap: 8px; }
}
