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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #0D1B2A;
  background-color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0D1B2A;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  font-weight: 700;
  color: #0D1B2A;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 21px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.75;
}

/* === Layout === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === Header & Nav === */
.site-header {
  border-bottom: 1px solid #E5E7EB;
  background: #FFFFFF;
  position: relative;
  z-index: 100;
}

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

.site-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  color: #0D1B2A;
  letter-spacing: 0.01em;
}

.site-logo:hover {
  color: #0D1B2A;
}

.site-nav ul {
  display: flex;
  gap: 40px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: #0D1B2A;
  border-bottom-color: #0D1B2A;
}

.site-nav a.active {
  color: #0D1B2A;
  border-bottom-color: #0D1B2A;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #0D1B2A;
}

/* === Skip link === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #FFFFFF;
  color: #0D1B2A;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 9999;
}

.skip-link:focus {
  top: 8px;
}

/* === Hero (Home — dark background) === */
.hero {
  background: #0D1B2A;
  overflow: hidden;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-text-col {
  padding: 88px 32px 80px;
}

.hero-photo-col {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  order: -1;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 52px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero .sub-headline {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero .core-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.85;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #FFFFFF;
  color: #0D1B2A;
}

.btn-primary:hover {
  background: #F3F4F6;
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
}

/* Interior page buttons (on white background) */
.btn-primary-dark {
  background: #0D1B2A;
  color: #FFFFFF;
}

.btn-primary-dark:hover {
  background: #1a2f47;
}

/* === Sections === */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #F3F4F6;
}

.section h2 {
  margin-bottom: 32px;
}

/* === Metrics Strip === */
.metrics-strip {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #D1D5DB;
  border-bottom: 1px solid #D1D5DB;
  padding: 0;
}

.metric-item {
  flex: 1;
  min-width: 180px;
  padding: 40px 32px;
  border-right: 1px solid #D1D5DB;
}

.metric-item:last-child {
  border-right: none;
}

.metric-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.metric-label {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

/* === What I Look For list === */
.look-for-list {
  list-style: none;
  padding-left: 0;
  max-width: 720px;
  border-top: 1px solid #E5E7EB;
}

.look-for-list li {
  padding: 16px 0;
  color: #6B7280;
  font-size: 16px;
  border-bottom: 1px solid #E5E7EB;
  padding-left: 20px;
  position: relative;
}

.look-for-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 5px;
  height: 1px;
  background: #6B7280;
}

/* === Blockquote / Philosophy === */
blockquote {
  border-left: 2px solid #0D1B2A;
  padding: 4px 0 4px 32px;
  margin: 0;
  max-width: 680px;
}

blockquote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: #0D1B2A;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

blockquote p:last-child {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 0;
  line-height: 1.75;
  letter-spacing: 0;
}

/* === Service Cards === */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #E5E7EB;
}

.service-card {
  padding: 48px 0;
  border-bottom: 1px solid #E5E7EB;
}

.service-card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #0D1B2A;
}

.service-card > p,
.service-card-body > p {
  color: #6B7280;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
  max-width: 680px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  max-width: 680px;
}

.service-card ul li {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.7;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
}

.service-card ul li:first-child {
  border-top: 1px solid #F3F4F6;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 5px;
  height: 1px;
  background: #6B7280;
}

/* === Career Timeline === */
.career-list {
  display: flex;
  flex-direction: column;
  max-width: 900px;
}

.career-item {
  padding: 48px 0;
  border-top: 1px solid #E5E7EB;
}

.career-item:last-child {
  border-bottom: 1px solid #E5E7EB;
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.career-company {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D1B2A;
  letter-spacing: -0.01em;
}

.career-period {
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.career-role {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.career-bullets {
  list-style: none;
  padding-left: 0;
}

.career-bullets li {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.75;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
}

.career-bullets li:first-child {
  border-top: 1px solid #F3F4F6;
}

.career-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 5px;
  height: 1px;
  background: #D1D5DB;
}

/* === Education === */
.education-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  border-top: 1px solid #E5E7EB;
}

.education-item {
  padding: 36px 0;
  border-bottom: 1px solid #E5E7EB;
}

.education-degree {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.education-school {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
}

/* === 8 Pillars Grid === */
.pillars-intro {
  color: #6B7280;
  margin-bottom: 36px;
  font-size: 16px;
  max-width: 680px;
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #D1D5DB;
  border-left: 1px solid #D1D5DB;
}

.pillar-item {
  background: #FFFFFF;
  padding: 28px 24px;
  border-right: 1px solid #D1D5DB;
  border-bottom: 1px solid #D1D5DB;
}

.pillar-number {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pillar-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.3;
}

/* === Perspectives entries === */
.perspectives-intro {
  color: #6B7280;
  margin-bottom: 56px;
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
}

.article-entries {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E5E7EB;
}

.article-entry {
  padding: 44px 0;
  border-bottom: 1px solid #E5E7EB;
}

.article-entry h3 {
  font-size: 21px;
  margin-bottom: 12px;
  max-width: 680px;
}

.article-entry p {
  color: #6B7280;
  margin-bottom: 20px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.8;
}

.article-entry .read-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D1B2A;
  border-bottom: 1px solid #0D1B2A;
  padding-bottom: 1px;
}

.article-entry .read-link:hover {
  color: #6B7280;
  border-bottom-color: #6B7280;
}

/* === Contact === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.contact-text {
  color: #6B7280;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  max-width: 480px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 0;
  border-top: 1px solid #E5E7EB;
}

.contact-details-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}

.contact-details-item-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  min-width: 72px;
}

.contact-details-item a {
  font-size: 15px;
  color: #0D1B2A;
  font-weight: 400;
}

.contact-details-item a:hover {
  color: #6B7280;
}

.contact-form {
  max-width: 560px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #6B7280;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
  font-family: inherit;
  border: none;
  border-bottom: 1px solid #D1D5DB;
  background: transparent;
  color: #0D1B2A;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #0D1B2A;
}

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

.form-message {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  color: #166534;
}

.form-message.error {
  color: #991B1B;
}

/* === Page Header (non-home pages — dark) === */
.page-header {
  background: #0D1B2A;
  padding: 72px 0 56px;
}

.page-header h1 {
  font-size: 44px;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.page-header .page-header-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.7;
}

/* === Section label === */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B7280;
  margin-bottom: 28px;
}

/* === Operator Background prose === */
.prose-block {
  color: #6B7280;
  font-size: 16px;
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.prose-block:last-of-type {
  margin-bottom: 0;
}

/* === What Engagements Look Like prose === */
.engagement-prose {
  color: #6B7280;
  font-size: 16px;
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.engagement-prose:last-of-type {
  margin-bottom: 0;
}

.engagement-cta {
  margin-top: 40px;
}

/* === Languages block === */
.languages-text {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.8;
  max-width: 640px;
}

/* === Footer === */
.site-footer {
  background: #0D1B2A;
  color: #FFFFFF;
  padding: 40px 0;
  margin-top: 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer .footer-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

.site-footer .footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.site-footer .footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: #FFFFFF;
}

/* === Photo Carousel === */
.photo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #162536;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: #FFFFFF;
  width: 20px;
}

/* === Carousel pause button === */
.carousel-pause {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 27, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.carousel-pause:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.carousel-pause-icon {
  display: flex;
  gap: 3px;
  align-items: center;
}

.carousel-pause-icon::before,
.carousel-pause-icon::after {
  content: '';
  display: block;
  width: 2px;
  height: 10px;
  background: rgba(255, 255, 255, 0.85);
}

.carousel-pause.is-paused .carousel-pause-icon::before {
  width: 0;
  height: 0;
  background: none;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.85);
}

.carousel-pause.is-paused .carousel-pause-icon::after {
  display: none;
}

/* === Contact page photo === */
.contact-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-bottom: 32px;
}

/* === Page header with photo (Experience) === */
.page-header-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-header-photo {
  display: none;
}

/* === Engagements layout with photo (Advisory) === */
.engagement-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.engagement-photo {
  display: none;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
}

/* === Author bio (Perspectives) === */
.author-bio {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 0;
}

.author-photo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

.author-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 6px;
}

.author-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 0;
}

/* === Mobile (max-width: 767px) === */
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-photo-col {
    min-height: 300px;
    order: -1;
  }

  .hero-photo-col::before {
    display: none;
  }

  .hero-photo-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, #0D1B2A 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-text-col {
    padding: 40px 20px 64px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero .sub-headline {
    font-size: 17px;
    max-width: 100%;
  }

  .hero .core-text {
    font-size: 15px;
    max-width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .hamburger {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 8px 20px 20px;
    z-index: 99;
  }

  .site-nav.nav-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: none;
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .site-nav a.active {
    border-bottom: none;
    color: #0D1B2A;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .metrics-strip {
    flex-direction: column;
  }

  .metric-item {
    border-right: none;
    border-bottom: 1px solid #D1D5DB;
    padding: 28px 0;
  }

  .metric-item:last-child {
    border-bottom: none;
  }

  .metric-number {
    font-size: 30px;
  }

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

  .career-header {
    flex-direction: column;
    gap: 4px;
  }

  .page-header {
    padding: 52px 0 40px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .site-footer .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .contact-layout {
    gap: 48px;
  }

  .service-card {
    padding: 36px 0;
  }

}


/* === Desktop (min-width: 768px) === */
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .service-card-inner {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr 440px;
    min-height: 600px;
    padding-left: 32px;
  }

  .hero-text-col {
    padding: 96px 0 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-photo-col {
    display: block;
    order: 0;
    min-height: 0;
  }

  .hero-photo-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, #0D1B2A 0%, #0D1B2A 20%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-photo-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, #0D1B2A 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }

  .page-header-layout {
    grid-template-columns: 1fr 200px;
    gap: 48px;
    align-items: stretch;
  }

  .page-header-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: top center;
  }

  .engagement-layout {
    grid-template-columns: 1fr 260px;
    align-items: start;
  }

  .engagement-photo {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
  }
}


/* ============================================================
   HOME PAGE — NEW SECTIONS (homepage redesign)
   All classes prefixed with home- to avoid collisions
   ============================================================ */

/* === Hero eyebrow label === */
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

/* === SECTION 2: Metrics === */
.home-metrics {
  background: #F3F4F6;
  padding: 0;
  border-top: 1px solid #D1D5DB;
  border-bottom: 1px solid #D1D5DB;
}

.home-metrics-grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-metric-item {
  flex: 1;
  min-width: 260px;
  padding: 56px 40px;
  border-right: 1px solid #D1D5DB;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-metric-item:last-child {
  border-right: none;
}

.home-metric-number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.home-metric-label {
  display: block;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  max-width: 200px;
}

/* === SECTION 3: About === */
.home-about {
  background: #FFFFFF;
  padding: 96px 0;
}

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.home-about-photo-col {
  position: relative;
  overflow: visible;
}

.home-about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.home-about-prose {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 600px;
}

.home-about-prose:last-of-type {
  margin-bottom: 28px;
}

.home-about-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D1B2A;
  border-bottom: 1px solid #0D1B2A;
  padding-bottom: 2px;
}

.home-about-link:hover {
  color: #6B7280;
  border-bottom-color: #6B7280;
}

/* === SECTION 4: Services === */
.home-services {
  background: #0D1B2A;
  padding: 96px 0;
}

.home-services-header {
  margin-bottom: 48px;
}

.home-services-label {
  color: rgba(255, 255, 255, 0.4);
}

.home-services-title {
  color: #FFFFFF;
  margin-bottom: 0;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  background: #1e3148;
}

.home-service-card {
  background: #0D1B2A;
  padding: 40px 36px;
  border: 1px solid #1e3148;
}

.home-service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-service-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-service-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.home-services-footer {
  border-top: 1px solid #1e3148;
  padding-top: 32px;
}

/* === SECTION 5: Perspectives === */
.home-perspectives {
  background: #FFFFFF;
  padding: 96px 0;
}

.home-perspectives-header {
  margin-bottom: 48px;
}

.home-perspectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  border-top: 1px solid #E5E7EB;
}

.home-perspective-card {
  padding: 40px 0;
  border-bottom: 1px solid #E5E7EB;
  border-top: 4px solid #0D1B2A;
  margin-top: -1px;
}

.home-perspective-card:first-child {
  margin-top: 0;
}

.home-perspective-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 14px;
}

.home-perspective-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-weight: 700;
  color: #0D1B2A;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.3;
}

.home-perspective-excerpt {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

.home-perspective-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D1B2A;
  border-bottom: 1px solid #0D1B2A;
  padding-bottom: 1px;
}

.home-perspective-link:hover {
  color: #6B7280;
  border-bottom-color: #6B7280;
}

.home-perspectives-footer {
  border-top: 1px solid #E5E7EB;
  padding-top: 32px;
}

/* === Shared section link === */
.home-section-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
}

.home-perspectives .home-section-link {
  color: #0D1B2A;
  border-bottom-color: #0D1B2A;
}

.home-section-link:hover {
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.home-perspectives .home-section-link:hover {
  color: #6B7280;
  border-bottom-color: #6B7280;
}

/* === SECTION 6: Final CTA === */
.home-cta {
  background: #0D1B2A;
  padding: 96px 0;
  border-top: 1px solid #1e3148;
}

.home-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.home-cta-headline {
  color: #FFFFFF;
  font-size: 40px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.home-cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}

.home-cta-group {
  justify-content: center;
}

/* === Mobile overrides for new home sections === */
@media (max-width: 767px) {
  .home-metrics-grid {
    flex-direction: column;
  }

  .home-metric-item {
    border-right: none;
    border-bottom: 1px solid #D1D5DB;
    padding: 28px 0;
  }

  .home-metric-item:last-child {
    border-bottom: none;
  }

  .home-metric-number {
    font-size: 30px;
  }

  .home-about {
    padding: 56px 0;
  }

  .home-about-photo {
    height: 300px;
  }

  .home-services {
    padding: 56px 0;
  }

  .home-service-card {
    padding: 32px 24px;
  }

  .home-perspectives {
    padding: 56px 0;
  }

  .home-perspective-card {
    padding: 32px 0;
  }

  .home-cta {
    padding: 56px 0;
  }

  .home-cta-headline {
    font-size: 28px;
  }

  .home-cta-sub {
    font-size: 15px;
  }
}

/* === Desktop overrides for new home sections === */
@media (min-width: 768px) {
  .home-about-inner {
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: start;
  }

  .home-about-photo {
    height: 500px;
    margin-bottom: -48px;
  }

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

  .home-perspectives-grid {
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
  }

  .home-perspective-card {
    border-top: 4px solid #0D1B2A;
    border-bottom: none;
    border-right: 1px solid #E5E7EB;
    padding: 36px 32px 36px 0;
    margin-top: 0;
  }

  .home-perspective-card:first-child {
    border-top: 4px solid #0D1B2A;
  }

  .home-perspective-card:last-child {
    border-right: none;
    padding-right: 0;
  }

  .home-perspective-card:not(:first-child) {
    padding-left: 32px;
  }

  .home-cta-headline {
    font-size: 40px;
  }
}


/* ============================================================
   IMAGE & ICON ENRICHMENT — advisory, experience, perspectives
   ============================================================ */

/* === Advisory: SVG icons in service card headers === */
.service-card-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card-icon {
  flex-shrink: 0;
  display: block;
}

/* === Advisory: 8-Pillar section with photo === */
.pillars-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.pillars-section-photo {
  display: none;
}

@media (min-width: 768px) {
  .pillars-section-inner {
    grid-template-columns: 1fr 220px;
    gap: 64px;
    align-items: start;
  }

  .pillars-section-photo {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
  }
}

/* === Experience: Career visual callout === */
.career-visual-callout {
  display: none;
}

@media (min-width: 768px) {
  .career-visual-callout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid #E5E7EB;
    margin-top: 0;
  }
}

.career-callout-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.career-callout-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 20px;
  color: #0D1B2A;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  border-left: 2px solid #0D1B2A;
  padding-left: 24px;
}

.career-callout-attr {
  font-size: 13px;
  color: #6B7280;
  letter-spacing: 0.03em;
  padding-left: 24px;
  margin-bottom: 0;
}

/* === Experience: Education item icons === */
.education-item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.education-item-header .education-degree {
  margin-bottom: 0;
}

.education-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* === Perspectives: Visual break with photo === */
.perspectives-visual-break {
  display: none;
}

@media (min-width: 768px) {
  .perspectives-visual-break {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 0;
  }
}

.perspectives-feature-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
}

.perspectives-feature-caption p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 20px;
  color: #0D1B2A;
  line-height: 1.55;
  letter-spacing: -0.01em;
  border-left: 2px solid #0D1B2A;
  padding-left: 28px;
  margin-bottom: 0;
}

/* === Perspectives: Article topic tags === */
.article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  border: 1px solid #D1D5DB;
  padding: 3px 8px;
  margin-bottom: 10px;
}
