/* ============================================
   REACHIFY — Landing Page Stylesheet
   Traditional capital markets / boutique M&A firm aesthetic
   ============================================ */

:root {
  --bg:        #FAF8F5;
  --surface:   #F0EDE8;
  --border:    #D9D5CE;
  --fg:        #1C1C1C;
  --fg-muted:  #6B6557;
  --fg-dim:    #9A9286;
  --navy:      #0F1C2E;
  --burgundy:  #7B2D3B;
  --gold:      #9A7B4F;
  --gold-dim:  rgba(154,123,79,0.10);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: #FAF8F5;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--navy) !important;
  color: var(--navy) !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--navy) !important;
  color: #FAF8F5 !important;
}

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 96px 64px 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; }

.hero-image-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-family: 'Georgia', serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.hero-sub {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 460px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

.proof-label {
  font-family: 'Georgia', serif;
  font-size: 12px;
  color: var(--fg-dim);
  max-width: 140px;
  line-height: 1.4;
  font-style: italic;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- CTA BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--navy);
  color: #FAF8F5;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary:hover { background: #1a3050; }

.btn-secondary {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy);
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--navy); }

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- SECTION SHARED ---- */
.section-eyebrow {
  font-family: 'Georgia', serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head {
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: 48px;
  max-width: 540px;
  font-weight: 700;
}

.section-head.centered {
  max-width: none;
  text-align: center;
}

/* ---- CAPABILITIES ---- */
.capabilities {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.cap-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cap-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cap-card h3 {
  font-family: 'Georgia', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.cap-card p {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- BUY-SELL ---- */
.buysell {
  padding: 96px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.buysell .section-head { margin-bottom: 56px; }

.buysell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.buysell-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.buysell-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}

.buysell-card p {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.buysell-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ---- OUTCOMES ---- */
.outcomes {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes .section-head { margin-bottom: 48px; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}

.outcome {
  background: var(--bg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.outcome-num {
  font-family: 'Georgia', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.outcome-label {
  font-family: 'Georgia', serif;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
}

.outcomes-note {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--fg-dim);
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
  font-style: italic;
}

/* ---- PROCESS ---- */
.process {
  padding: 96px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process .section-head { margin-bottom: 64px; }

.process-steps {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

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

.step-num {
  font-family: 'Georgia', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.step-content h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-content p {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 28px 24px 0;
}

/* ---- CLOSING ---- */
.closing {
  padding: 96px 64px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.closing-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 8px;
}

.closing h2 {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 700;
}

.closing-sub {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 520px;
}

.closing-tagline {
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: normal;
}

.closing-cta {
  margin-top: 8px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--surface);
}

.footer .nav-logo { margin-bottom: 4px; }

.footer-tagline {
  font-family: 'Georgia', serif;
  font-size: 13px;
  color: var(--fg-dim);
  font-style: italic;
}

.footer-copy {
  font-family: 'Georgia', serif;
  font-size: 12px;
  color: var(--fg-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 48px;
  }

  .nav { padding: 22px 32px; }

  .cap-grid, .buysell-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-direction: column;
    gap: 36px;
  }

  .step-connector {
    width: 40px;
    height: 1px;
    margin: 0;
    transform: rotate(90deg);
    align-self: center;
  }

  .capabilities, .outcomes, .closing, .process, .buysell {
    padding: 64px 32px;
  }
}

@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}