:root {
  --graphite: #222;
  --blue-gray: #5F758B;
  --graphite-silver-start: #C9C9C9;
  --graphite-silver-end: #E5E6E8;
  --bright-orange: #FF6A00;
  --orange-glow: rgba(255, 106, 0, 0.15);
  --white: #fff;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background: var(--white);
  color: var(--graphite);
  line-height: 1.6;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--graphite-silver-start), var(--graphite-silver-end));
  font-family: 'Lato', sans-serif;
}

.nav__left {
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--graphite);
  font-weight: bold;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--blue-gray);
}

.btn--contact {
  background: var(--blue-gray);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
}

/* Hide the Insights nav item site-wide (uses :has where supported; link hidden as fallback) */
.nav__links li:has(> a[href="insights.html"]) {
  display: none;
}
.nav__links a[href="insights.html"] {
  display: none !important;
}

/* Hero Sections */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero__content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__headline {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__subline {
  font-size: 1rem;
  max-width: 450px;
  margin-bottom: 2rem;
}

.btn--primary {
  padding: 0.75rem 1.5rem;
  background: var(--blue-gray);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* COMPACT Hero for Inner Pages */
.hero--page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  height: auto;
  min-height: 320px;
  padding: 2.5rem 3rem;
  background-color: #f9f9f9;
}

.hero--page .hero__image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.hero--page .hero__content h1 {
  font-size: 2rem;
  margin: 0;
  line-height: 1.3;
}

/* Hero page content block formatting */
.hero__text {
  max-width: 720px;
}

.hero__body p {
  margin: 1rem 0;
  color: var(--graphite);
  font-size: 1rem;
}

.hero__body .pillars {
  margin-top: 1.5rem;
}

/* Align How We Work with the content column (same left offset as profile/hero content) */
.how-we {
  padding-left: calc(2.5rem + 4rem);
}

@media (max-width: 768px) {
  .how-we {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Section Styles */
.section {
  padding: 4rem 3rem;
}

.section--light {
  background-color: #f6f6f6;
}

.section__title {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section__text {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

/* Grid Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step h4 {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Pillars */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin-top: 2rem;
}

.pillars li {
  background: #f2f2f2;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
}

/* Profile (About Page) */
.profile-section {
  display: flex;
  justify-content: center;
  padding: 3rem;
}

.profile {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1100px;
  width: 100%;
  flex-wrap: wrap;
}

.profile__photo img {
  width: 260px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.profile__info h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.profile__info h4 {
  color: var(--blue-gray);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
  background: #fafafa;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero__image img {
    height: 300px;
  }

  .hero__content {
    padding: 2rem;
  }

  .profile {
    flex-direction: column;
    align-items: center;
  }

  .profile__photo img {
    width: 100%;
    max-width: 260px;
  }
}

/* Bio Section Layout */
.profile-section {
  /* left padding aligned with hero content: hero--page padding-left (2.5rem) + hero__content padding-left (4rem) */
  padding: 4rem 3rem 4rem calc(2.5rem + 4rem);
}

.profile {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0;
}

/* Ensure profile section is left-aligned within the page container */
.profile-section {
  justify-content: flex-start;
}

.profile__photo img {
  width: 260px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  object-fit: cover;
}

.profile__info {
  flex: 1;
  min-width: 300px;
}

.profile__info h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.profile__info h4 {
  color: var(--blue-gray);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile__info {
    text-align: left;
    padding-top: 1.5rem;
  }

  .profile__photo img {
    width: 100%;
    max-width: 280px;
  }

  /* compact padding on small screens */
  .profile-section {
    padding: 2rem 1rem;
  }
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.outcome {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.outcome__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 4px;
}

.outcome p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.contact__list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.contact__form button {
  align-self: flex-start;
}
