/* =====================================================
   MONASHEE GROWTH PARTNERS — SITE STYLES
   Pass 3 — self-hosted fonts, polish, no external deps
   ===================================================== */

/* --- Self-hosted Montserrat (latin subset, variable weights) --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #1E3C3C;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a:hover { opacity: 0.75; }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1E3C3C;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; font-weight: 700; }
h2 { font-size: 1.875rem; margin-bottom: 0.75rem; font-weight: 700; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 600; }
h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2a6a6a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }
strong { font-weight: 600; color: #1E3C3C; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #2a6a6a;
  margin-bottom: 1rem;
}

.eyebrow.advisory { color: #1464A0; }
.eyebrow.operating { color: #28643C; }

.lead {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #3a5555;
}

.lead.italic {
  font-style: italic;
}

/* --- Layout containers --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4.5rem 0;
}

section.tight {
  padding: 3rem 0;
}

.divider {
  border-top: 1px solid #d5dede;
  margin: 2.5rem 0;
}

.rule {
  width: 3rem;
  height: 2px;
  background: #1E3C3C;
  margin: 0 0 1.5rem 0;
}

/* --- Navigation (default, on white pages) --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #eaefef;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.nav-brand img {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #1E3C3C;
}

.nav-brand-secondary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #1E3C3C;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1E3C3C;
  letter-spacing: 0.02em;
}

.nav-links a.active {
  color: #1464A0;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1E3C3C;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Home hero (full-bleed mountain, overlay text) --- */
.home-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  display: flex;
  flex-direction: column;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 35, 42, 0.25) 0%,
    rgba(20, 35, 42, 0.35) 40%,
    rgba(20, 35, 42, 0.75) 80%,
    rgba(20, 35, 42, 0.92) 100%
  );
  z-index: 1;
}

/* Nav variant for home — transparent over mountain image */
.home-hero .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.home-hero .nav-brand-primary,
.home-hero .nav-brand-secondary,
.home-hero .nav-links a,
.home-hero .nav-toggle {
  color: #ffffff;
}

.home-hero .nav-brand img {
  filter: brightness(0) invert(1);
}

.home-hero .nav-links a:hover {
  opacity: 0.8;
}

.home-hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 5.5rem 0;
}

.home-hero-content .container {
  width: 100%;
}

.home-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.home-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}

.home-hero-subtitle {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
  margin-bottom: 2.25rem;
}

.home-hero-cta {
  display: inline-block;
  background: #ffffff;
  color: #1E3C3C;
  padding: 0.85rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.15s ease;
}

.home-hero-cta:hover {
  background: #e8eded;
  opacity: 1;
  transform: translateY(-1px);
}

/* Secondary hero action — lives next to primary CTA */
.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-hero-cta-secondary {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.15s ease;
}

.home-hero-cta-secondary:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* --- Section head centered variant (home) --- */
.section-head.centered {
  text-align: center;
  margin: 0 auto 2.5rem auto;
  max-width: 52rem;
}

.section-head.centered h2 {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* --- Two Practices cards (home) --- */
.practice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.practice-card {
  display: block;
  padding: 2.25rem 2.25rem 2rem 2.25rem;
  background: #ffffff;
  border: 1px solid #e0e6e6;
  border-top: 4px solid #1E3C3C;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.practice-card:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 60, 60, 0.08);
}

.practice-card-advisory { border-top-color: #1464A0; }
.practice-card-operating { border-top-color: #28643C; }

.practice-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #2a6a6a;
  margin-bottom: 0.85rem;
}

.practice-card-advisory .practice-eyebrow { color: #1464A0; }
.practice-card-operating .practice-eyebrow { color: #28643C; }

.practice-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1E3C3C;
  margin-bottom: 0.85rem;
}

.practice-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3a5555;
  margin-bottom: 1.5rem;
}

.practice-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1E3C3C;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid #1E3C3C;
}

.practice-card-advisory .practice-cta { color: #1464A0; border-bottom-color: #1464A0; }
.practice-card-operating .practice-cta { color: #28643C; border-bottom-color: #28643C; }

/* --- Why Monashee grid (home) --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
  margin-top: 1.5rem;
}

.why-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1E3C3C;
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3a5555;
  margin-bottom: 0;
}

/* --- Engagement list (home) --- */
.engagement-list {
  margin-top: 1.5rem;
}

.engagement {
  padding: 1.35rem 0;
  border-top: 1px solid #d5dede;
}

.engagement:first-child { border-top: 2px solid #1E3C3C; }
.engagement:last-child { border-bottom: 1px solid #d5dede; }

.engagement-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #1464A0;
  margin-bottom: 0.5rem;
}

.engagement p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #1E3C3C;
  margin-bottom: 0;
}

/* --- Stats band (homepage) --- */
.stats-band {
  background: #1E3C3C;
  color: #ffffff;
  padding: 4rem 0 4.25rem 0;
}

.stats-head {
  max-width: 56rem;
  margin: 0 auto 2.75rem auto;
  text-align: center;
}

.stats-head .eyebrow.light {
  color: #8fb5b5;
  margin-bottom: 0.85rem;
}

.stats-head h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 0.65rem;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.stats-head p {
  color: #b8cbcb;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 46ch;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #c5d5d5;
  font-weight: 400;
}

/* --- Section link (at end of teaser sections) --- */
.engagements-cta {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d5dede;
}

.section-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1464A0;
  border-bottom: 2px solid #1464A0;
  padding-bottom: 2px;
}

/* --- Operating scope grid --- */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.5rem;
  margin-top: 1.5rem;
}

.scope-item h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #28643C;
  margin-bottom: 0.4rem;
}

.scope-item p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3a5555;
  margin-bottom: 0;
}

/* --- Tier price line (Operating) --- */
.tier-price {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e0e6e6;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #28643C;
  letter-spacing: 0.01em;
}

/* --- Engagements page --- */
.eng-group {
  margin-bottom: 3rem;
}

.eng-group > h2 {
  font-size: 1.375rem;
  color: #1E3C3C;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #1E3C3C;
  margin-bottom: 1.75rem;
}

.eng-full {
  padding: 1.5rem 0 1.75rem 0;
  border-bottom: 1px solid #d5dede;
}

.eng-full:last-child {
  border-bottom: none;
}

.eng-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1464A0;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: #eaf1f7;
  border-radius: 2px;
}

.eng-tag.operating {
  color: #28643C;
  background: #e7f0ea;
}

.eng-full h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E3C3C;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.eng-full p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #1E3C3C;
  margin-bottom: 0.75rem;
}

.eng-full p:last-child {
  margin-bottom: 0;
}

.eng-note {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: #f4f7f7;
  border-left: 3px solid #2a6a6a;
}

.eng-note p {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #3a5555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- About stats list --- */
.about-stats-list {
  margin: 1.25rem 0;
  padding-left: 0;
}

.about-stats-list li {
  font-size: 1rem;
  line-height: 1.55;
  color: #1E3C3C;
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-top: 1px solid #e0e6e6;
  position: relative;
}

.about-stats-list li:first-child {
  border-top: 2px solid #1E3C3C;
}

.about-stats-list li:last-child {
  border-bottom: 1px solid #e0e6e6;
}

.about-stats-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.6rem;
  height: 2px;
  background: #1464A0;
}

/* --- Page header (subpages) --- */
.page-header {
  padding: 4.5rem 0 2.5rem 0;
}

.page-header h1 {
  font-size: 2.875rem;
  margin-bottom: 1rem;
  line-height: 1.08;
  max-width: 24ch;
}

.page-header .lead {
  max-width: 62ch;
  color: #3a5555;
}

/* --- Section header patterns --- */
.section-head {
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  margin-bottom: 0.75rem;
}

.section-head h2 {
  max-width: 28ch;
}

.section-head p {
  max-width: 60ch;
  font-size: 1.05rem;
  color: #3a5555;
  line-height: 1.55;
  margin-top: 0.75rem;
}

/* --- POV / callout blocks --- */
.pov {
  border-left: 3px solid #1E3C3C;
  padding: 1rem 1.5rem;
  background: #f4f7f7;
  margin: 2rem 0;
}

.pov.advisory { border-left-color: #1464A0; }
.pov.operating { border-left-color: #28643C; }

.pov-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #1E3C3C;
  margin-bottom: 0.5rem;
}

.pov p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* --- Capability grid (Advisory) --- */
.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.capability {
  padding: 1.5rem 0 0 0;
  border-top: 2px solid #1464A0;
}

.capability h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.capability p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3a5555;
  margin-bottom: 0;
}

/* --- Tier cards (Operating) --- */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tier-card {
  padding: 1.75rem 2rem;
  border: 1px solid #e0e6e6;
  border-top: 3px solid #28643C;
  background: #ffffff;
}

.tier-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.tier-target {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6a7373;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.tier-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* --- Protections grid --- */
.protections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.protection {
  padding-top: 1rem;
  border-top: 1px solid #d5dede;
}

.protection h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3C3C;
  margin-bottom: 0.35rem;
}

.protection p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Network page --- */
.network-blocks > div {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e6e6;
}

.network-blocks > div:first-child {
  border-top: 2px solid #1E3C3C;
}

.network-blocks h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.network-blocks p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1E3C3C;
  margin-bottom: 0;
}

.network-email {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3C3C;
  border-bottom: 2px solid #1464A0;
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 0.5rem;
}

/* --- About page founder blocks --- */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.founder h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.founder .founder-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2a6a6a;
  margin-bottom: 1rem;
}

.founder p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1E3C3C;
  margin-bottom: 0.75rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-card {
  padding: 2rem;
  border-top: 3px solid #1464A0;
  background: #f4f7f7;
}

.contact-card.network { border-top-color: #2a6a6a; }

.contact-card .contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #1464A0;
  margin-bottom: 0.75rem;
}

.contact-card.network .contact-label { color: #2a6a6a; }

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.contact-email {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3C3C;
  border-bottom: 2px solid #1464A0;
  padding-bottom: 2px;
  display: inline-block;
}

.contact-card.network .contact-email { border-bottom-color: #2a6a6a; }

/* --- FAQ --- */
.faq {
  margin-top: 3rem;
}

.faq-item {
  padding: 1.25rem 0;
  border-top: 1px solid #d5dede;
}

.faq-item:first-child { border-top: 2px solid #1E3C3C; }

.faq-q {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3C3C;
  margin-bottom: 0.4rem;
}

.faq-a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1E3C3C;
}

/* --- CTA band --- */
.cta-band {
  background: #1E3C3C;
  color: #ffffff;
  padding: 3.5rem 0;
}

.cta-band h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  max-width: 24ch;
}

.cta-band p {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #c5d5d5;
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #1E3C3C;
  padding: 0.85rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta-button:hover {
  background: #e8eded;
  opacity: 1;
  transform: translateY(-1px);
}

/* --- Footer --- */
.footer {
  background: #f4f7f7;
  padding: 2.5rem 0 1.75rem 0;
  font-size: 0.85rem;
  color: #3a5555;
  border-top: 1px solid #e0e6e6;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand img { width: 32px; }

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #1E3C3C;
}

.footer-brand-secondary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: #1E3C3C;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.footer-tagline {
  font-family: Georgia, serif;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  color: #3a5555;
  max-width: 36ch;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #1E3C3C;
  margin-bottom: 0.75rem;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #3a5555;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #e0e6e6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: #6a7373;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.55rem; }

  .home-hero-title { font-size: 2.5rem; }
  .home-hero-subtitle { font-size: 1.05rem; }
  .home-hero-content { padding: 0 0 3.5rem 0; }

  .page-header h1 { font-size: 2.1rem; }
  .page-header { padding: 2.5rem 0 2rem 0; }

  .capabilities {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .practice-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.75rem;
  }

  .stat-number {
    font-size: 1.85rem;
  }

  .scope-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stats-band {
    padding: 3rem 0;
  }

  .stats-head {
    margin-bottom: 2rem;
  }

  .stats-head h2 {
    font-size: 1.45rem;
  }

  .practice-card {
    padding: 1.75rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-hero-actions {
    gap: 1rem;
  }

  .section-head.centered {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .section-head.centered h2 {
    margin-left: 0;
    margin-right: 0;
  }

  .protections {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  section { padding: 3rem 0; }
  section.tight { padding: 2.25rem 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e6e6;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.85rem 1.5rem;
    border-top: 1px solid #eaefef;
    color: #1E3C3C !important;
  }

  .home-hero .nav-links.open {
    background: #ffffff;
  }

  .nav-toggle {
    display: block;
  }

  .cta-band h2 { font-size: 1.4rem; }

  .tier-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .home-hero-title { font-size: 2rem; }
  .page-header h1 { font-size: 1.75rem; }

  .container,
  .container-narrow {
    padding: 0 1rem;
  }

  .cta-band h2 { font-size: 1.3rem; }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 1.85rem;
  }
}
