/* ============================================================
   OLIVIA MERLINO GROUP — SHARED STYLESHEET
   omgdmv.com · TTR Sotheby's International Realty
   ============================================================ */

:root {
  --navy:      #002349;
  --navy-mid:  #1a3a5c;
  --gold:      #B8965A;
  --gold-lt:   #d4b07a;
  --white:     #ffffff;
  --cream:     #F4F2ED;
  --cream-dk:  #E8E5DE;
  --rule:      #D6D2C9;
  --muted:     #9A9890;
  --dark:      #3D3C38;
  --body:      #4a4845;
  --green:     #2E7D52;
  --red:       #9E3030;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--cream);
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

h1 { font-size: 52px; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: 32px; line-height: 1.15; }
h3 { font-size: 18px; line-height: 1.2; }

em { font-style: italic; color: var(--gold-lt); }

p { font-size: 13px; line-height: 1.8; color: var(--body); }

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

/* ── SHARED ELEMENTS ── */
.eyebrow, .label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule { width: 40px; height: 1.5px; background: var(--gold); }
.gold-rule-full { height: 3px; background: var(--gold); }

.text-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
}

.text-link.light { color: rgba(255,255,255,0.45); }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 14px 0;
  border: none;
  cursor: pointer;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-header h2 { margin-top: 8px; }
.section-header h2.light { color: var(--white); }

/* ── NAV ── */
.nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; }

.nav-wordmark {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.nav-team {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-team a { color: var(--white); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-lt); }

.nav-cta {
  background: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 20px;
}

/* ── PAGE HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 48px 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-headline { color: var(--white); }

.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; align-items: center; }

.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  margin-bottom: 4px;
}

.hero-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  color: var(--gold-lt);
  line-height: 1;
}

.hero-stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Sub-page hero */
.page-hero {
  background: var(--navy);
  padding: 56px 48px 52px;
}

.page-hero.has-stats {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.page-breadcrumb {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-title { color: var(--white); }
.page-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 12px;
}

/* ── INTRO SECTION ── */
.intro {
  background: var(--white);
  padding: 64px 48px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.intro-left {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.intro-left h2 { margin-top: 4px; }

.intro-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── AGENT CARDS ── */
.agent-card {
  border: 0.5px solid var(--rule);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
}

.agent-photo {
  width: 72px;
  height: 86px;
  background: var(--navy-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  overflow: hidden;
}

.agent-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.agent-photo svg { opacity: 0.3; }

.agent-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.agent-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.agent-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.agent-sub-title {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.agent-contact { font-size: 11px; color: #6a6864; line-height: 1.7; margin-top: 2px; }
.agent-bio { font-size: 12px; color: #6a6864; line-height: 1.65; margin-top: 4px; }

/* Large agent cards (about page) */
.agent-card-lg {
  background: var(--white);
  border: 0.5px solid var(--rule);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.agent-card-lg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.agent-photo-lg {
  width: 100%;
  height: 360px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  overflow: hidden;
}

.agent-photo-lg img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.agent-photo-lg svg { opacity: 0.2; }

.agent-name-lg {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  color: var(--navy);
}

.agent-details { display: flex; flex-direction: column; gap: 5px; border-top: 0.5px solid var(--rule); padding-top: 14px; margin-top: 4px; }
.agent-detail { font-size: 11px; color: #6a6864; display: flex; gap: 8px; }
.detail-label { color: var(--gold); min-width: 60px; flex-shrink: 0; }

/* ── NEIGHBORHOODS BAND ── */
.neighborhoods-band {
  background: var(--navy);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hoods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hood-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s, border-color 0.15s;
}

.hood-card:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); }

.hood-rule { width: 20px; height: 1px; background: var(--gold); }
.hood-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; color: var(--white); }
.hood-sub { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

/* ── WHY SECTION ── */
.why-section {
  background: var(--cream);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.why-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.why-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  color: var(--rule);
  line-height: 1;
}

.why-card h3 { font-size: 17px; color: var(--navy); }
.why-card p { font-size: 12px; color: #6a6864; line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-left { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.cta-left h2 { color: var(--white); }
.cta-left p { color: rgba(255,255,255,0.5); }

.cta-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }

.cta-form { display: flex; }

.cta-form input {
  font-size: 12px;
  padding: 14px 18px;
  border: 0.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  width: 240px;
  outline: none;
}

.cta-form input::placeholder { color: rgba(255,255,255,0.35); }

.cta-form button {
  background: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta-note { font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* ── FOOTER ── */
.footer {
  background: #001830;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brokerage {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  line-height: 1.9;
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--gold-lt); }

.footer-compliance { font-size: 10px; color: rgba(255,255,255,0.2); }

/* ── STAT STACK (used on about/sellers) ── */
.stat-stack {
  background: var(--navy);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-bottom: none; padding-bottom: 0; }

.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  color: var(--gold-lt);
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── FORM ELEMENTS ── */
.form-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  font-size: 13px;
  color: var(--navy);
  padding: 12px 14px;
  border: 0.5px solid var(--rule);
  background: var(--cream);
  outline: none;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
}

.form-input:focus { border-color: var(--gold); background: var(--white); }

.form-select {
  font-size: 13px;
  color: var(--navy);
  padding: 12px 14px;
  border: 0.5px solid var(--rule);
  background: var(--cream);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  font-family: 'Montserrat', Arial, sans-serif;
}

.form-textarea {
  font-size: 13px;
  color: var(--navy);
  padding: 12px 14px;
  border: 0.5px solid var(--rule);
  background: var(--cream);
  outline: none;
  width: 100%;
  min-height: 100px;
  resize: vertical;
  font-family: 'Montserrat', Arial, sans-serif;
}

.form-submit {
  background: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  font-family: 'Montserrat', Arial, sans-serif;
}

.form-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── STEP CARDS (buyers/sellers process) ── */
.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--rule);
}

.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  color: var(--rule);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}

.step-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.step-rule { width: 24px; height: 1.5px; background: var(--gold); margin-top: 4px; }
.step-body h3 { font-size: 19px; color: var(--navy); margin-top: 4px; }
.step-body p { font-size: 12.5px; color: #6a6864; line-height: 1.75; }

/* ── PROCESS GRID (sellers) ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.process-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.process-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: var(--rule);
  line-height: 1;
}

.process-card h3 { font-size: 17px; color: var(--navy); }
.process-card p { font-size: 12.5px; color: #6a6864; line-height: 1.75; }

/* ── VALUES (about) ── */
.values-section {
  background: var(--navy);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.value-item {
  background: var(--navy);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-rule { width: 32px; height: 2px; background: var(--gold); }
.value-item h3 { font-size: 18px; color: var(--white); }
.value-item p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.72; }

/* ── BROKERAGE BLOCK ── */
.brokerage-block {
  background: var(--white);
  padding: 48px;
  border-top: 3px solid var(--gold);
}

.brokerage-block h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.brokerage-block p { font-size: 12.5px; color: #6a6864; line-height: 1.72; max-width: 560px; }
.brokerage-contact { font-size: 12px; color: var(--gold); margin-top: 8px; }

/* ── KPI REPORT (sellers) ── */
.kpi-section {
  background: var(--navy);
  padding: 64px 48px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.kpi-left { max-width: 420px; display: flex; flex-direction: column; gap: 18px; }
.kpi-left h2 { color: var(--white); }
.kpi-left p { color: rgba(255,255,255,0.55); }

.kpi-panel {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kpi-caption {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.kpi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.kpi-row:last-child { border-bottom: none; padding-bottom: 0; }

.kpi-metric {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.kpi-sub {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 2px;
}

.kpi-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--gold-lt);
}

/* ── NEIGHBORHOOD CARDS (full page) ── */
.hood-full {
  background: var(--white);
  border: 0.5px solid var(--rule);
  display: flex;
  overflow: hidden;
}

.hood-accent { width: 4px; background: var(--gold); flex-shrink: 0; }

.hood-img {
  width: 200px;
  flex-shrink: 0;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.hood-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hood-img svg { opacity: 0.2; }
.hood-img-label { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

.hood-body { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; gap: 10px; }
.hood-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hood-body h3 { font-size: 24px; color: var(--navy); }
.hood-desc { font-size: 12.5px; color: var(--body); line-height: 1.75; }

.hood-stats {
  display: flex;
  gap: 24px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 0.5px solid var(--rule);
}

.hood-stat-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--navy);
}

.hood-stat-label { font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hood-cta { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); cursor: pointer; margin-top: 4px; }

/* ── CONTACT SIDEBAR ── */
.contact-agent-block {
  background: var(--navy);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-agent-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.contact-agent-row:last-child { border-bottom: none; padding-bottom: 0; }

.contact-thumb {
  width: 48px;
  height: 56px;
  background: var(--navy-mid);
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.contact-thumb svg { opacity: 0.3; }

.contact-agent-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-agent-role {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-agent-detail { font-size: 11.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 4px; }

.office-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  padding: 24px;
}

.office-card .label { margin-bottom: 8px; }
.office-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.office-detail { font-size: 12px; color: #6a6864; line-height: 1.75; }

.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }

.social-btn {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  border: 0.5px solid var(--rule);
  padding: 10px 14px;
  cursor: pointer;
  background: var(--white);
  text-align: center;
  transition: background 0.15s;
}

.social-btn:hover { background: var(--cream); }

/* ── DARK FORM (contact valuation, listings) ── */
.dark-form-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dark-form-group { display: flex; flex-direction: column; gap: 6px; }
.dark-label { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.dark-input {
  font-size: 13px;
  color: var(--white);
  padding: 12px 14px;
  border: 0.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  outline: none;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
}

.dark-input::placeholder { color: rgba(255,255,255,0.25); }
.dark-input:focus { border-color: var(--gold); }

.dark-select {
  font-size: 13px;
  color: var(--white);
  padding: 12px 14px;
  border: 0.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  font-family: 'Montserrat', Arial, sans-serif;
}

.dark-select option { color: var(--navy); background: var(--white); }

.dark-submit {
  background: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  font-family: 'Montserrat', Arial, sans-serif;
}

.dark-note { font-size: 10px; color: rgba(255,255,255,0.25); line-height: 1.5; }

/* ── PHOTO BAND (about) ── */
.photo-band {
  width: 100%;
  height: 340px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.photo-band svg { opacity: 0.3; }
.photo-hint { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; color: rgba(255,255,255,0.3); letter-spacing: 0.14em; }
.photo-spec { font-size: 8px; letter-spacing: 0.12em; color: rgba(255,255,255,0.18); }

/* ── UTILITY ── */
.content-section {
  background: var(--white);
  padding: 64px 48px;
  display: flex;
  gap: 64px;
}

.content-section.cream { background: var(--cream); }
.content-section.navy { background: var(--navy); }

.content-left { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.content-right { width: 340px; flex-shrink: 0; }
.content-right.wide { width: 420px; }

.vert-rule-light { width: 0.5px; height: 52px; background: rgba(255,255,255,0.14); flex-shrink: 0; }

/* ============================================================
   MOBILE RESPONSIVE — added update
   ============================================================ */

/* Hamburger menu button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 0 20px; position: relative; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; border-bottom: 0.5px solid rgba(255,255,255,0.08); font-size: 12px; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }

  /* Hero */
  .hero { flex-direction: column; padding: 48px 20px 40px; gap: 32px; }
  .hero-stats { align-items: flex-start; flex-direction: row; gap: 24px; flex-wrap: wrap; }
  .hero-stat { align-items: flex-start; border-bottom: none; border-right: 0.5px solid rgba(255,255,255,0.12); padding-right: 24px; padding-bottom: 0; margin-bottom: 0; }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-size: 24px; }

  /* Page hero */
  .page-hero { padding: 40px 20px 36px; }
  .page-hero.has-stats { flex-direction: column; gap: 24px; }

  /* Content sections */
  .content-section { flex-direction: column; padding: 40px 20px; gap: 32px; }
  .content-right { width: 100% !important; }
  .content-right.wide { width: 100% !important; }

  /* Intro */
  .intro { flex-direction: column; padding: 40px 20px; gap: 32px; }
  .intro-left { max-width: 100%; }

  /* Agent cards */
  .agent-card { flex-direction: column; }
  .agent-photo-lg { height: 320px; }

  /* About agent grid */
  .about-agent-grid { grid-template-columns: 1fr !important; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr !important; }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr !important; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr !important; gap: 0; }

  /* Hoods grid */
  .hoods-grid { grid-template-columns: 1fr 1fr !important; }

  /* CTA band */
  .cta-band { flex-direction: column; padding: 40px 20px; gap: 24px; }
  .cta-right { align-items: flex-start; width: 100%; }
  .cta-form { flex-direction: column; width: 100%; }
  .cta-form input { width: 100%; }

  /* Footer */
  .footer { flex-direction: column; padding: 32px 20px; gap: 20px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* Neighborhoods band */
  .neighborhoods-band { padding: 40px 20px; }

  /* Why section */
  .why-section { padding: 40px 20px; }

  /* Stat stack */
  .stat-stack { padding: 24px 20px; }

  /* Brokerage block */
  .brokerage-block { padding: 32px 20px; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }

  /* Listings slideshow */
  .listing-slideshow { padding: 0 20px; }
  .listing-card { min-width: 280px; }

  /* Step */
  .step { gap: 16px; }
  .step-num { font-size: 28px; min-width: 40px; }

  /* KPI section */
  .kpi-section { flex-direction: column; padding: 40px 20px; gap: 32px; }
  .kpi-left { max-width: 100%; }

  /* General sections with inline padding */
  section[style*="padding:64px 48px"] { padding: 40px 20px !important; }
  section[style*="padding: 64px 48px"] { padding: 40px 20px !important; }
}

/* About hero split — mobile stack */
@media (max-width: 768px) {
  .about-hero-split { flex-direction: column !important; }
  .about-hero-split .hero-photos { flex-direction: row !important; padding: 0 20px 0 20px !important; justify-content: center; }
  .about-hero-split .hero-photos > div { margin-top: 0 !important; }
  .about-hero-split .hero-photos > div > div:first-child { height: 220px !important; width: 150px !important; }
  .about-hero-split .hero-photos > div > div:last-child { width: 150px !important; }
}
