/* ==========================================================================
   Blue Jay Capital — Site Stylesheet
   Palette: #388aca · #21487e · #a7b5d8 · #635a6c · #c7b7ba
   Aesthetic: Refined & understated, no gradients, quiet authority
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --blue-mid:    #388aca;
  --blue-deep:   #21487e;
  --blue-pale:   #a7b5d8;
  --plum:        #635a6c;
  --blush:       #c7b7ba;

  /* functional roles */
  --bg:          #fafafa;
  --bg-soft:     #f2f4f8;
  --bg-rule:     #e8ecf3;
  --surface:     #ffffff;
  --navy:        #21487e;
  --text:        #1a1f2e;
  --text-mid:    #3d4455;
  --text-soft:   #4a5468;
  --text-pale:   #8f8696;
  --border:      #dde2ec;
  --border-soft: #eaecf2;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;

  --shadow-xs:   0 1px 3px rgba(33,72,126,0.06);
  --shadow-sm:   0 2px 8px rgba(33,72,126,0.08);
  --shadow-md:   0 8px 28px rgba(33,72,126,0.11);
  --shadow-lg:   0 20px 60px rgba(33,72,126,0.13);

  --max:         1180px;
  --font-head:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --transition:  0.22s ease;
}

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

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

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

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

a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--blue-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .55em;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Brand logo ---------- */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  display: block;
  height: 160px;
  width: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-mid);
  color: #ffffff !important;
  border-color: var(--blue-mid);
  padding: 14px 32px;
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-pale);
}
.btn-outline:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-muted {
  background: var(--bg-soft);
  color: var(--text-mid);
  border-color: var(--border);
}
.btn-muted:hover {
  background: var(--border);
  color: var(--navy);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-deep);
  color: var(--blue-pale);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a { color: #ffffff; transition: color var(--transition); }
.topbar a:hover { color: var(--blue-pale); }
.topbar span { color: rgba(255,255,255,0.6); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--text-mid);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: var(--blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 10px; }
.nav-cta .btn-primary,
.nav-cta .btn-primary:hover,
.nav-cta .btn-primary:visited,
.nav-cta .btn-primary:active {
  color: #ffffff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  margin: 6px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--blue-mid);
  color: #fff;
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric accent — no gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border: 60px solid rgba(167,181,216,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 200px;
  width: 240px; height: 240px;
  border: 40px solid rgba(167,181,216,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-pale);
  margin-bottom: 28px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--blue-mid);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border: 48px solid rgba(167,181,216,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 0;
}

.bg-soft { background: var(--bg-soft); }
.bg-rule { background: var(--bg-rule); }

/* navy section */
.bg-navy {
  background: var(--navy);
}
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: var(--blue-pale); }

/* ---------- Divider ---------- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--blue-mid);
  margin: 20px auto 0;
}
.divider-left { margin-left: 0; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(167,181,216,0.15);
  transition: background var(--transition);
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(255,255,255,0.03); }

.stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-mid);
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue-pale);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue-mid);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: height var(--transition);
}
.card:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card:hover::before { height: 100%; }

.card .icon {
  width: 44px; height: 44px;
  background: rgba(56,138,202,0.1);
  border: 1px solid rgba(56,138,202,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-head);
  color: var(--blue-mid);
}

.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-soft); margin-bottom: 0; font-size: 0.95rem; line-height: 1.65; }

/* ---------- Split / Feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split ul { padding: 0; list-style: none; margin: 20px 0 0; }
.split li {
  padding: 13px 0 13px 28px;
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
  color: var(--text-mid);
}
.split li:first-child { border-top: 1px solid var(--border-soft); }
.split li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
}

.feature-panel {
  background: var(--blue-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.feature-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 36px solid rgba(167,181,216,0.1);
  border-radius: 50%;
}
.feature-panel-label {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.feature-panel-sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-pale);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* ---------- Process Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  padding: 36px 28px;
  border-right: 1px solid var(--border-soft);
  background: var(--surface);
  position: relative;
  transition: background var(--transition);
}
.step:last-child { border-right: 0; }
.step:hover { background: var(--bg-soft); }

.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.step:hover .step-num { color: var(--blue-mid); }

.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: var(--text-soft); margin: 0; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--blue-mid);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  opacity: 0.6;
}

.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 0.97rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial cite::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid);
  flex-shrink: 0;
}

.testimonial .role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-pale);
  font-weight: 400;
  margin-top: 3px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--blue-mid);
  color: #fff;
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border: 70px solid rgba(167,181,216,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  font-size: 1rem;
}
.cta-banner .btn-primary {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}
.cta-banner .btn-primary:hover {
  background: #1a3a6e;
  border-color: #1a3a6e;
}

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

.contact-info h3 { margin-top: 0; margin-bottom: 16px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 28px; font-size: 0.95rem; }

.contact-info ul { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-info li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
}
.contact-info li:first-child { border-top: 1px solid var(--border-soft); }
.contact-info .label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 2px;
}

.contact-highlight {
  padding: 20px 22px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-highlight strong { color: var(--navy); }

form.contact-form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-form label {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(56,138,202,0.1);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

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

/* ---------- Insights / Posts ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.post:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post .cover {
  aspect-ratio: 16/9;
  background: var(--blue-deep);
  color: var(--blue-pale);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.post .cover::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border: 22px solid rgba(167,181,216,0.1);
  border-radius: 50%;
}

.post .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.post p { color: var(--text-soft); flex: 1; font-size: 0.92rem; line-height: 1.65; }
.post .meta {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Team Cards ---------- */
.team-card {
  text-align: center;
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-md);
}

.avatar {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
}

.team-card h3 { margin-bottom: 4px; }
.team-card .title {
  display: block;
  color: var(--blue-mid);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-card p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- Principles cards (about) ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.principle {
  background: var(--surface);
  padding: 36px 30px;
  transition: background var(--transition);
}
.principle:hover { background: var(--bg-soft); }
.principle-icon {
  font-size: 1.2rem;
  color: var(--blue-mid);
  margin-bottom: 14px;
  display: block;
}
.principle h3 { font-size: 1.1rem; margin-bottom: 8px; }
.principle p { font-size: 0.92rem; color: var(--text-soft); margin: 0; line-height: 1.65; }

/* ---------- Process deep-dive ---------- */
.process-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.process-detail:last-child { border-bottom: 0; }

.process-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  text-align: right;
}

.process-content h3 { margin-bottom: 10px; }
.process-content p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.process-content p:last-child { margin-bottom: 0; }

.process-outcome {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.process-outcome strong { color: var(--navy); }

/* ---------- Timeline cards ---------- */
.timeline-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.timeline-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-mid);
  border-radius: var(--radius) var(--radius) 0 0;
}
.timeline-week {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-card p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

/* ---------- Inline quote strip ---------- */
.quote-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 48px 0;
  text-align: center;
}
.quote-strip blockquote {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}
.quote-strip cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Fit checklist ---------- */
.fit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
  color: var(--text-mid);
}
.fit-list li:first-child { border-top: 1px solid var(--border-soft); }
.fit-list-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-list-check svg {
  width: 10px; height: 10px;
  stroke: var(--blue-mid);
  stroke-width: 2.5;
  fill: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-deep);
  color: #cbd5e1;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer a { color: #cbd5e1; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; font-size: 0.9rem; }

.footer-brand p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #cbd5e1;
  font-size: 0.8rem;
}
/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-3, .posts, .steps, .principles { grid-template-columns: repeat(2, 1fr); }
  .steps { border-radius: var(--radius); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(3) { border-right: 1px solid var(--border-soft); border-top: 1px solid var(--border-soft); }
  .step:nth-child(4) { border-right: 0; border-top: 1px solid var(--border-soft); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(167,181,216,0.15); }
  .stat:nth-child(2), .stat:nth-child(4) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 48px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; font-size: 1rem; }
  .nav-cta { width: 100%; margin-top: 8px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }

  .hero { padding: 72px 0 88px; }
  .page-hero { padding: 52px 0 44px; }

  .grid-3, .grid-2, .posts, .steps, .principles,
  .timeline-cards { grid-template-columns: 1fr; }

  .steps { border: none; border-radius: 0; gap: 16px; }
  .step { border: 1px solid var(--border-soft); border-right: 1px solid var(--border-soft) !important; border-top: 1px solid var(--border-soft) !important; border-radius: var(--radius); }

  .principles { background: transparent; border: none; gap: 16px; }
  .principle { border: 1px solid var(--border-soft); border-radius: var(--radius); }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; border-right: none; border-bottom: 1px solid rgba(167,181,216,0.15); }
  .stat:last-child { border-bottom: 0; }
  .stat .num { font-size: 2.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .process-detail { grid-template-columns: 1fr; gap: 12px; }
  .process-num { font-size: 2.5rem; text-align: left; }

  form.contact-form { padding: 28px 20px; }
  .topbar { display: none; }
}
