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

:root {
  --bg:         #f2f7fc;
  --bg-alt:     #e8f1fa;
  --white:      #ffffff;
  --blue-light: #daeaf7;
  --blue-mid:   #5b9bd5;
  --blue-dark:  #2a6496;
  --blue-deep:  #1a3f5f;
  --text:       #1e2d3d;
  --text-muted: #5a7490;
  --border:     #cde0f0;
  --shadow:     0 4px 24px rgba(42, 100, 150, 0.08);
  --shadow-lg:  0 8px 40px rgba(42, 100, 150, 0.13);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.22s ease;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

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

ul { list-style: none; }

/* ─── Layout ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 96px 0;
}

/* ─── Nav ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 247, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 0.03em;
}
.nav-logo:hover { color: var(--blue-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--blue-dark); }

.nav-cta {
  background: var(--blue-dark);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem !important;
}
.nav-cta:hover { background: var(--blue-deep) !important; color: var(--white) !important; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  all: unset;
  cursor: pointer;
  font-size: 0.925rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--text-muted);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition);
}
.nav-dropdown-btn:hover { color: var(--blue-dark); }

.nav-caret {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  overflow: hidden;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li { list-style: none; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--blue-dark);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.925rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42, 100, 150, 0.25);
}

.btn-outline {
  border: 1.5px solid var(--blue-mid);
  color: var(--blue-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-light);
  color: var(--blue-deep);
  transform: translateY(-1px);
}

/* ─── Section Labels ─── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.25;
  margin-bottom: 2rem;
}

/* ─── Hero ─── */
.hero {
  min-height: calc(62vh - 64px);
  padding: 3rem 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f2f7fc 0%, #daeaf7 50%, #c5dcf0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 155, 213, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 100, 150, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 1rem;
  color: var(--blue-mid);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(91, 155, 213, 0.15);
  border: 1px solid rgba(91, 155, 213, 0.35);
  color: var(--blue-deep);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ─── About ─── */
.about {
  background: var(--white);
}

.about-bio-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.about-photo-wrap {
  position: sticky;
  top: 88px;
}

.headshot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--blue-light);
  box-shadow: var(--shadow);
  display: block;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.025rem;
}

/* Lifecycle */
.lifecycle-section {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.lifecycle-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
}

.lifecycle-intro {
  color: var(--text-muted);
  font-size: 0.975rem;
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lifecycle-card {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.lifecycle-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.lifecycle-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 0.6rem;
}

.lifecycle-def {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.lifecycle-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 1rem;
}

.lifecycle-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.phase-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.phase-items {
  padding-left: 0.9rem;
}

.phase-items li {
  list-style: disc;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.1rem 0;
  line-height: 1.45;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.skill-group h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
}

.skill-group li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}


/* ─── Projects ─── */
.projects {
  background: var(--bg);
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.project-card.featured {
  border-left: 4px solid var(--blue-mid);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: rgba(91, 155, 213, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.25rem;
}

.project-company {
  font-size: 0.875rem;
  color: var(--blue-mid);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.project-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.metric-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.projects-more {
  margin-top: 2rem;
  text-align: center;
}

.more-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ─── Leadership ─── */
.leadership {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.leadership-card,
.speaking-card {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.leadership-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.leadership-header h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 0.25rem;
}

.leadership-role {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.leadership-badge {
  flex-shrink: 0;
  background: var(--blue-dark);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.leadership-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.leadership-list li:last-child { border-bottom: none; }
.leadership-list strong { color: var(--text); font-weight: 600; }

.speaking-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 1.25rem;
}

.speaking-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.speaking-list li:last-child { border-bottom: none; }

.speaking-year {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-mid);
  background: rgba(91, 155, 213, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.1rem;
  letter-spacing: 0.03em;
}

.speaking-list strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.speaking-venue {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ─── Resume Section ─── */
.resume-section {
  background: var(--bg);
}

.resume-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.resume-col-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-light);
}

.resume-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.resume-item:last-of-type { border-bottom: none; }

.resume-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.resume-item-header h4 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.promoted {
  font-weight: 400;
  color: var(--blue-mid);
  font-size: 0.85em;
}

.resume-company {
  font-size: 0.825rem;
  color: var(--blue-mid);
  margin-top: 0.2rem;
}

.resume-date {
  flex-shrink: 0;
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.resume-item ul {
  padding-left: 1.1rem;
}
.resume-item li {
  list-style: disc;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  line-height: 1.55;
}

.resume-download {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--blue-light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.resume-download p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ─── Contact ─── */
.contact-section {
  background: var(--white);
}

.contact-inner {
  max-width: 580px;
  text-align: center;
  margin: 0 auto;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-title {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}
.footer-right a:hover { color: var(--white); }

.footer-icons {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.footer-icons a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-icons svg {
  flex-shrink: 0;
}

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

/* ─── Case Studies (renamed from Projects) ─── */
.case-studies {
  background: var(--bg);
}

.case-study-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.breakdown-item {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

.breakdown-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 0.6rem;
}

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

.breakdown-list {
  padding-left: 1.1rem;
  margin: 0;
}

.breakdown-list li {
  list-style: disc;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  line-height: 1.55;
}

.project-metrics {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── Thought Leadership ─── */
.thought-leadership {
  background: var(--white);
}

.tl-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tl-category-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-light);
}

.tl-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.tl-item:last-child { border-bottom: none; }

.tl-year {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-mid);
  background: rgba(91, 155, 213, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-align: center;
  margin-top: 0.15rem;
  white-space: nowrap;
}

.tl-content strong {
  display: block;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.tl-content strong a {
  color: var(--text);
}
.tl-content strong a:hover {
  color: var(--blue-dark);
}

.tl-venue {
  display: block;
  font-size: 0.8rem;
  color: var(--blue-mid);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.tl-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Journalism ─── */
.journalism {
  background: var(--bg);
}

.journalism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.journalism-col-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-light);
}

.journalism-list {
  display: flex;
  flex-direction: column;
}

.journalism-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.journalism-item:last-child { border-bottom: none; }

.journalism-title {
  display: block;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--transition);
}
.journalism-title:hover { color: var(--blue-mid); }
.journalism-title.no-link {
  color: var(--text);
  cursor: default;
}

.journalism-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.journalism-pub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-mid);
}

.journalism-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.journalism-date::before {
  content: '·';
  margin-right: 0.6rem;
}

.journalism-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Section Bridge ─── */
.section-bridge {
  padding: 2.5rem 2rem;
  text-align: center;
}

.section-bridge p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── What I Solved ─── */
.what-i-solved {
  margin-bottom: 2rem;
}

.solved-heading {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
}

.solved-rows {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.solved-row {
  display: grid;
  grid-template-columns: 200px 28px 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}

.solved-row:last-child { border-bottom: none; }
.solved-row:hover { background: var(--bg); }

.solved-problem {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.solved-arrow {
  color: var(--blue-mid);
  font-size: 1rem;
  text-align: center;
}

.solved-outcome {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Volunteer ─── */
.volunteer {
  background: var(--white);
}

.volunteer-card {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.volunteer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.volunteer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--blue-deep);
  margin-bottom: 0.3rem;
}

.volunteer-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.volunteer-award {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  max-width: 340px;
  flex-shrink: 0;
}

.award-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.volunteer-award strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.volunteer-award p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.volunteer-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
}

.volunteer-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ─── Resume CTA ─── */
.resume-section {
  background: var(--bg);
}

.resume-cta-wrap {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.resume-cta-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-bio-row { grid-template-columns: 160px 1fr; gap: 2rem; }
  .lifecycle-grid { grid-template-columns: 1fr; }
  .journalism-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .case-study-breakdown { grid-template-columns: 1fr; }
  .project-metrics { grid-template-columns: repeat(2, 1fr) !important; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .volunteer-header { flex-direction: column; }
  .volunteer-award { max-width: 100%; }
}

@media (max-width: 640px) {
  .nav-links { gap: 1rem; font-size: 0.85rem; }
  .about-bio-row { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 180px; position: static; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .lifecycle-phases { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .project-metrics { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-inner { flex-direction: column; }
  .footer-right { align-items: flex-start; }
  .tl-item { grid-template-columns: 50px 1fr; gap: 0.75rem; }
}
