/* =========================================================
   Key Executive Coaching — Design System
   keyexecutivecoaching.com
   ========================================================= */

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

:root {
  --navy:        #1e2535;
  --navy-light:  #2c3650;
  --navy-dark:   #13192a;
  --gold:        #c8952a;
  --gold-light:  #e0aa3a;
  --gold-dark:   #a87820;
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --text:        #1e2535;
  --gray:        #5a6478;
  --border:      #d0d6e0;
  --font-sans:   'Poppins', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* =========================================================
   Container
   ========================================================= */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Header / Nav
   ========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy-dark);
  transition: box-shadow 0.2s;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wordmark-top {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta {
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 3px;
  transition: background 0.15s;
  white-space: nowrap;
}

.header-cta:hover { background: var(--gold-light); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  background: var(--navy);
  padding: 140px 24px 80px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* =========================================================
   Gold rule divider
   ========================================================= */

.gold-rule {
  height: 3px;
  background: var(--gold);
  width: 48px;
  margin: 0 auto 24px;
  border: none;
}

.gold-rule.left {
  margin: 0 0 24px;
}

/* =========================================================
   Sections
   ========================================================= */

section {
  padding: 72px 24px;
}

section.section-alt {
  background: var(--off-white);
}

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

.section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

section h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

section.section-dark h2 { color: var(--white); }

section p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.75;
}

section.section-dark p { color: rgba(255,255,255,0.72); }

/* =========================================================
   Who section — two-col
   ========================================================= */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.who-col h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}

.who-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =========================================================
   Gap section — centered prose
   ========================================================= */

.gap-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.gap-body p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gap-body p:last-child { margin-bottom: 0; }

/* =========================================================
   Engagement — three steps
   ========================================================= */

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

.engagement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: 28px 22px;
}

.engagement-num {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}

.engagement-card h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.engagement-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* =========================================================
   Credentials
   ========================================================= */

.cred-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.cred-block h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cred-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.4;
}

.cred-list li:last-child { border-bottom: none; }

.bio-headshot {
  width: 100%;
  max-width: 280px;
  border-radius: 3px;
  display: block;
  object-fit: cover;
  margin-bottom: 24px;
  opacity: 0.92;
}

.bio-block p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 14px;
}

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

/* =========================================================
   Contact / Form
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.contact-info h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.contact-links a:hover { color: var(--gold-dark); }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: background 0.15s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--navy-light); }

/* =========================================================
   Footer
   ========================================================= */

footer {
  background: var(--navy-dark);
  padding: 32px 24px;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 760px) {
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .cred-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
