/* =====================================================
   DR. JOHN DAVES — LEADERSHIP CONSULTING
   Modern, professional, brand-aligned single-page site
   ===================================================== */

:root {
  /* Brand palette — pulled from JD logo */
  --brand-blue: #0d2c6e;
  --brand-blue-deep: #081e54;
  --brand-blue-soft: #1a3d8f;
  --brand-blue-tint: #e9eef9;
  --accent-blue: #2c5cc5;

  /* Neutrals */
  --white: #ffffff;
  --ivory: #fafbfd;
  --silver: #e3e7ef;
  --silver-2: #c7cdd9;
  --slate: #4a5160;
  --slate-2: #6a7180;
  --ink: #111726;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Effects */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(13, 44, 110, 0.06);
  --shadow: 0 12px 40px rgba(13, 44, 110, 0.10);
  --shadow-lg: 0 30px 80px rgba(13, 44, 110, 0.18);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ----- Base ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-blue); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.7rem); text-wrap: balance; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: -.005em; }

p { margin: 0 0 1em; color: var(--slate); }

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 28px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 1rem;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--brand-blue);
}
.eyebrow--light { color: rgba(255,255,255,0.85); }
.eyebrow--light::before { background: rgba(255,255,255,0.7); }

.accent { color: var(--brand-blue); font-style: italic; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(13, 44, 110, 0.25);
}
.btn-primary:hover { background: var(--brand-blue-deep); color: var(--white); box-shadow: 0 12px 32px rgba(13, 44, 110, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--silver-2);
}
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); background: var(--brand-blue-tint); }
.btn-light {
  background: var(--white);
  color: var(--brand-blue);
}
.btn-light:hover { background: var(--ivory); color: var(--brand-blue-deep); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow .25s var(--ease), background .25s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 20px rgba(13, 44, 110, 0.07);
  border-bottom-color: var(--silver);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 80px; width: auto; display: block; }
@media (max-width: 760px) { .brand-logo { height: 60px; } }
.primary-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}
.primary-nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--brand-blue);
  transition: width .3s var(--ease);
}
.primary-nav a:hover { color: var(--brand-blue); }
.primary-nav a:hover::after { width: 100%; }

.nav-cta { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px 28px 28px;
  background: var(--white);
  border-top: 1px solid var(--silver);
  box-shadow: 0 12px 30px rgba(13,44,110,.08);
}
.mobile-menu a {
  padding: 12px 4px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--silver);
}
.mobile-menu a:last-child { border: 0; margin-top: 10px; text-align: center; }
.mobile-menu a.mobile-menu-cta {
  color: var(--white);
  background: var(--brand-blue);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
}
.mobile-menu a.mobile-menu-cta:hover { color: var(--white); background: var(--brand-blue-deep); }
.mobile-menu.is-open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at -10% -10%, var(--brand-blue-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
}
.hero-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(13, 44, 110, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 { margin-top: 0; }
.hero-copy .lede {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--silver);
}
.meta-item { display: flex; flex-direction: column; }
.meta-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1;
}
.meta-label {
  font-size: 0.82rem;
  color: var(--slate-2);
  letter-spacing: .04em;
  margin-top: 6px;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--silver);
}

.hero-visual {
  position: relative;
}
.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--brand-blue-tint);
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 60%, rgba(13,44,110,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -18px -18px auto auto;
  width: 70%; height: 70%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-soft) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .9;
}
.hero-badge {
  position: absolute;
  left: -24px;
  bottom: 28px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--brand-blue);
}
.hero-badge span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-badge small {
  font-size: 0.78rem;
  color: var(--slate-2);
  letter-spacing: .05em;
  margin-top: 2px;
}

/* ============ CLIENT TICKER ============ */
.ticker-section {
  background: var(--white);
  padding: 50px 0 60px;
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  overflow: hidden;
}
.ticker-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin: 0 0 28px;
  text-align: center;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  padding: 0 36px;
  letter-spacing: -.005em;
  opacity: .82;
  transition: opacity .25s var(--ease), color .25s;
}
.ticker-item:hover { opacity: 1; color: var(--brand-blue); }
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  opacity: .35;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
@media (max-width: 760px) {
  .ticker-section { padding: 38px 0 44px; }
  .ticker-item { font-size: 1.25rem; padding: 0 24px; }
  .ticker-track { animation-duration: 32s; }
}

/* ============ REFLECTION ============ */
.reflection {
  padding: 110px 0;
  background: var(--ivory);
  position: relative;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { padding-left: 32px; }
.section-head--center .eyebrow { padding-left: 32px; }
.section-head h2 { margin: .2em 0 .5em; }
.section-sub { font-size: 1.1rem; color: var(--slate); }
.section-sub--light { color: rgba(255,255,255,0.78); }

.reflection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.reflection-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.reflection-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue-tint);
  box-shadow: var(--shadow);
}
.reflection-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1;
  min-width: 48px;
  border-right: 1px solid var(--silver);
  padding-right: 18px;
}
.reflection-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

/* Self-assessment CTA under the reflection questions */
.reflection-cta {
  max-width: 620px;
  margin: 48px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.reflection-cta p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate);
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding: 20px 20px 0 0;
}
.about-image-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about-accent {
  position: absolute;
  top: 0; right: 0;
  width: 70%; height: 70%;
  background: var(--brand-blue-tint);
  border-radius: var(--radius-lg);
  z-index: 1;
  transform: translate(20px, -20px);
}
.about-copy h2 { margin-top: .2em; }
.lead-para,
.about-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.1em;
  color: var(--slate);
}
.lead-para { color: var(--ink); }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--silver);
}
.pillar h4 {
  color: var(--brand-blue);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--slate-2);
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 0;
  background: var(--ivory);
  position: relative;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.service-card--featured {
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card--featured:hover { transform: translateY(-8px); }
.service-card.service-card--featured h3,
.service-card.service-card--featured p,
.service-card.service-card--featured .service-list li,
.service-card.service-card--featured .service-eyebrow,
.service-card.service-card--featured .service-desc,
.service-card.service-card--featured .service-link { color: var(--white); }
.service-card.service-card--featured .service-list li::before { background: rgba(255,255,255,0.7); }
.service-card.service-card--featured .service-icon { background: rgba(255,255,255,0.12); color: var(--white); }
.service-card.service-card--featured .service-link:hover { color: rgba(255,255,255,0.85); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue-tint);
  color: var(--brand-blue);
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 12px;
}
.service-card h3 { margin-bottom: 12px; }
.service-desc { color: var(--slate); margin-bottom: 18px; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--slate);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1.5px;
  background: var(--brand-blue);
}
.service-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
}
.service-link:hover span { transform: translateX(4px); }
.service-link span { transition: transform .25s var(--ease); display: inline-block; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(255,255,255,0.06), transparent),
    linear-gradient(180deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
  color: var(--white);
}
.testimonials h2 { color: var(--white); }
.section-head--light h2 { color: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin: 0;
  position: relative;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), background .3s;
}
.testimonial:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.testimonial.testimonial--feature {
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.testimonial.testimonial--feature blockquote { color: var(--ink); }
.testimonial.testimonial--feature figcaption { color: var(--slate-2); }
.testimonial.testimonial--feature .quote-mark { color: var(--brand-blue); }

/* Featured "letter" testimonial — full width, above the trio */
.testimonial.testimonial--letter {
  background: var(--white);
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 56px;
  margin: 0 auto 48px;
  max-width: 880px;
  position: relative;
}
.testimonial.testimonial--letter .quote-mark { color: var(--brand-blue); }
.testimonial.testimonial--letter blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.55;
  font-weight: 500;
}
.testimonial.testimonial--letter blockquote p {
  margin: 0 0 1em;
  color: var(--ink);
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.testimonial.testimonial--letter blockquote p:last-child { margin-bottom: 0; }
.testimonial.testimonial--letter figcaption {
  color: var(--slate-2);
  font-size: 0.82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 760px) {
  .testimonial.testimonial--letter { padding: 32px 24px; }
  .testimonial.testimonial--letter blockquote { font-size: 1.08rem; }
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
}
.testimonial figcaption {
  font-size: 0.85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============ OUTCOMES ============ */
.outcomes {
  padding: 120px 0;
  background: var(--white);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.outcome {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--ivory);
  border: 1px solid var(--silver);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.outcome:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue-tint);
  box-shadow: var(--shadow);
}
.outcome-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.outcome-icon svg { width: 22px; height: 22px; }
.outcome h4 { margin-bottom: 6px; }
.outcome p { margin: 0; font-size: 0.95rem; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 60px 0 120px;
  background: var(--white);
}
.cta-card {
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(255,255,255,0.08), transparent),
    linear-gradient(120deg, var(--brand-blue-deep) 0%, var(--brand-blue) 60%, var(--brand-blue-soft) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  right: -120px; bottom: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}
.cta-card h2 { color: var(--white); margin: .2em 0 .5em; }
.cta-card p { color: rgba(255,255,255,0.85); margin: 0 0 .8em; max-width: 520px; }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}
.cta-actions .btn { width: 100%; }
.cta-direct { font-size: 0.92rem; color: rgba(255,255,255,0.75) !important; margin-top: 1.2rem !important; }
.cta-direct a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.4); }
.cta-direct a:hover { color: var(--white); border-bottom-color: var(--white); }

/* ----- Inline contact form ----- */
.cta-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
}
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-field { display: flex; flex-direction: column; gap: 6px; }
.cta-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.cta-field label span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin-left: 4px;
}
.cta-field input,
.cta-field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s;
}
.cta-field input:focus,
.cta-field textarea:focus {
  outline: 0;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(44,92,197,0.25);
}
.cta-field textarea { resize: vertical; min-height: 110px; }
.cta-submit { margin-top: 4px; align-self: flex-start; }
.cta-form-hp { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.cta-form-note {
  margin: 0;
  padding: 12px 14px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-blue-deep);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.62); max-width: 360px; margin: 0; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom small { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { padding: 140px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-badge { left: -14px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .about-pillars { grid-template-columns: 1fr; gap: 18px; }
  .reflection-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-actions { margin-left: 0; max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 1180px) {
  .primary-nav { gap: 24px; margin-right: 18px; }
}
@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 0.88rem; }
  .nav-cta { padding: 10px 18px; font-size: 0.85rem; }
}

@media (max-width: 760px) {
  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 130px 0 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { flex: 1 1 auto; width: 100%; }
  .reflection-cta { margin-top: 36px; }
  .reflection-cta .btn { width: 100%; }
  .hero-meta { gap: 18px; flex-wrap: wrap; }
  .reflection, .about, .services, .outcomes, .final-cta { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .cta-card { padding: 40px 24px; }
  .cta-actions { max-width: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .container { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .reflection-card { padding: 24px 20px; }
  .reflection-num { font-size: 1.6rem; min-width: 40px; padding-right: 14px; }
  .reflection-card p { font-size: 1.1rem; }
}

/* ============ IMPACT / MEDIA PAGE ============ */
.page-header {
  position: relative;
  padding: 170px 0 90px;
  background:
    radial-gradient(900px 500px at 100% 0%, var(--brand-blue-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  overflow: hidden;
}
.page-header h1 {
  margin: .2em 0 .5em;
  max-width: 880px;
}
.page-header-lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: 820px;
  margin: 0;
}
.page-header-bg {
  position: absolute;
  bottom: -180px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(13, 44, 110, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Highlight current nav item on Impact page */
.primary-nav a.is-current { color: var(--brand-blue); }
.primary-nav a.is-current::after { width: 100%; }

.media-section {
  padding: 100px 0;
  background: var(--white);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.media-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.media-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.media-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.media-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.media-embed--placeholder {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
}
.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.media-placeholder svg {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  padding: 14px;
  box-sizing: content-box;
}
.media-placeholder--article {
  /* same overall look, slightly different icon style handled by svg */
}
.media-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.media-tag {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 12px;
}
.media-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}
.media-desc {
  color: var(--slate);
  margin: 0 0 20px;
  font-size: 0.98rem;
  flex: 1;
}
.media-link {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  margin-top: auto;
}
.media-link:hover span { transform: translateX(4px); }
.media-link span { transition: transform .25s var(--ease); display: inline-block; }

@media (max-width: 980px) {
  .page-header { padding: 140px 0 70px; }
  .media-grid { grid-template-columns: 1fr; gap: 28px; }
  .media-section { padding: 70px 0; }
}
@media (max-width: 760px) {
  .page-header { padding: 130px 0 60px; }
  .page-header-lede { font-size: 1.05rem; }
  .media-body { padding: 22px 22px 26px; }
  .media-card h3 { font-size: 1.25rem; }
}
