/* K3 Consulting™ — Corporate workplace support, navy/charcoal/silver palette */
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2f45;
  --navy-light: #243b55;
  --charcoal: #1e2532;
  --charcoal-mid: #2c3444;
  --muted-blue: #4a7fa5;
  --muted-blue-light: #6499be;
  --silver: #b8c5d0;
  --silver-light: #d4dde5;
  --white: #f5f8fb;
  --fg: #f0f4f8;
  --fg-muted: #8fa3b4;
  --border: #1e3048;
  --border-light: #2a4060;
  --surface: #162233;
  --surface-mid: #1c2d40;
  --accent: #4a7fa5;
  --accent-hover: #5a8fb5;
  --accent-silver: #c8d8e8;
  --radius: 4px;
  --radius-lg: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--fg);
  font-family: 'Instrument Sans', 'Satoshi', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--muted-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0;
}

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

.nav-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--white); }

.nav-cta {
  font-size: 0.875rem;
  color: var(--white);
  background: var(--muted-blue);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--accent-hover); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 100px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(74, 127, 165, 0.08) 0%, transparent 70%),
    linear-gradient(175deg, #0d1b2a 0%, #111f30 40%, #0a1520 100%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-blue-light);
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--muted-blue);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--muted-blue-light);
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
}

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

.btn-primary {
  display: inline-block;
  background: var(--muted-blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--muted-blue);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.3s ease;
}

.stat-card:hover { border-color: var(--border-light); }

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--muted-blue-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.stat-source {
  font-size: 0.72rem;
  color: var(--border-light);
  margin-top: 4px;
}

/* ── SECTIONS (shared) ── */
section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-blue);
  margin-bottom: 18px;
  font-weight: 600;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── MORALE SECTION ── */
.morale {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.morale-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.morale-text {}

.morale-text .section-subtitle {
  margin-bottom: 40px;
  max-width: none;
}

.morale-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.morale-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.morale-marker {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--muted-blue);
  margin-top: 10px;
  box-shadow: 0 0 8px rgba(74, 127, 165, 0.5);
}

.morale-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.morale-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.morale-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.morale-metric {
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.metric-bar-wrap {
  flex: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.metric-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--muted-blue), var(--muted-blue-light));
  border-radius: 3px;
  transition: width 1s ease;
}

.metric-value {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--muted-blue-light);
  min-width: 48px;
  text-align: right;
}

/* ── BURNOUT SECTION ── */
.burnout {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

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

.burnout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.burnout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--muted-blue), transparent);
}

.burnout-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.burnout-card-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--muted-blue);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.burnout-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.burnout-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PACKAGES / SERVICES ── */
.packages {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.packages-header {
  margin-bottom: 60px;
}

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

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s ease;
  position: relative;
}

.package-card.featured {
  border-color: var(--muted-blue);
  background: var(--navy-mid);
}

.package-card.featured::after {
  content: 'Lead Package';
  position: absolute;
  top: -12px;
  left: 32px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--muted-blue-light);
  padding: 4px 12px;
  border-radius: 100px;
}

.package-card:hover {
  border-color: var(--border-light);
}

.package-card.featured:hover {
  border-color: var(--muted-blue-light);
}

.package-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 127, 165, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--muted-blue-light);
}

.package-icon svg {
  width: 20px;
  height: 20px;
}

.package-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--silver-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  color: var(--muted-blue-light);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-pricing {
  font-size: 0.8rem;
  color: var(--muted-blue);
  margin-bottom: 20px;
  padding: 10px 16px;
  background: rgba(74, 127, 165, 0.08);
  border-radius: var(--radius);
  line-height: 1.55;
}

/* ── PROGRAMS BAR ── */
.programs {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}

.programs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.programs-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.programs-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.program-badge:hover {
  border-color: var(--muted-blue);
  color: var(--white);
}

.program-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-blue);
  flex-shrink: 0;
}

/* ── ABOUT / FOUNDER ── */
.founder {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.founder-title-block {}

.founder-bio {
  padding-top: 4px;
}

.founder-bio p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-industries {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.industry-tag:hover {
  color: var(--silver-light);
  border-color: var(--border-light);
}

/* ── INDUSTRIES SERVED ── */
.industries {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 72px 40px;
}

.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.industry-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.industry-item:hover {
  color: var(--white);
  border-color: var(--border-light);
}

/* ── CTA SECTION ── */
.cta-section {
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(74, 127, 165, 0.12) 0%, transparent 70%),
    var(--navy-mid);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 40px;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-title {
  margin-bottom: 20px;
}

.cta-inner .section-subtitle {
  margin: 0 auto 48px;
  max-width: 520px;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand-block {}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

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

.footer-link {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--white); }

.footer-legal {
  font-size: 0.75rem;
  color: var(--border-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .morale-layout,
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 200px;
  }

  .packages-grid,
  .burnout-grid {
    grid-template-columns: 1fr;
  }

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

  section { padding: 72px 24px; }
  .site-nav { padding: 0 24px; }
  .hero { padding: 100px 24px 80px; }
  .programs { padding: 48px 24px; }
  .site-footer { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
