:root {
  --navy: #0b1f3a;
  --navy-light: #16335c;
  --gold: #b8934d;
  --gold-light: #d9bb85;
  --bg: #faf9f6;
  --bg-alt: #f1efe9;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
  --border: #e3e0d8;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:not(.btn):hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-light); }

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-text {
  padding: 12px 4px;
  color: var(--navy);
}
.btn-text:hover { color: var(--gold); }

.nav-resume { padding: 8px 16px; }

/* Hero */
.hero {
  padding: 96px 0 72px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-copy { flex: 1; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}

.open-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1c7a4d;
  background: #e6f4ec;
  border: 1px solid #bfe3cd;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--navy-light);
  font-weight: 500;
  margin: 0 0 20px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.18);
  flex-shrink: 0;
}

/* Impact strip */
.impact {
  background: var(--navy);
  padding: 40px 0;
}

.impact-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.impact-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 600;
}

.impact-label {
  display: block;
  font-size: 0.82rem;
  color: #d8dde6;
  margin-top: 6px;
}

/* Trust strip */
.trust-strip {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.trust-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.trust-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.trust-scroller {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
}

.trust-marquee:hover .trust-scroller {
  animation-play-state: paused;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-track {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 80px;
  margin: 0;
  padding: 0 40px;
}

.trust-track li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-track img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .trust-track { gap: 48px; }
  .trust-track img { height: 36px; max-width: 130px; }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin: 0;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.98rem;
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-card footer strong {
  color: var(--navy);
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: -16px 0 32px;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 36px 32px;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
}

.timeline li:last-child { padding-bottom: 0; }

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.timeline-org {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}

.timeline-role {
  font-weight: 500;
  color: var(--text);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: auto;
}

.timeline-desc {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
}

/* Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.expertise-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}

.expertise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.expertise-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.expertise-card--highlight {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: span 3;
}

.expertise-card--highlight h3,
.expertise-card--highlight p { color: #fff; }
.expertise-card--highlight p { color: #c9d2e0; }

/* Advisory */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.advisory-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 28px;
}

.advisory-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.advisory-card p {
  color: var(--text-muted);
  margin: 0;
}

/* Insights */
.coming-soon {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
}

/* Contact */
.contact-inner { text-align: center; }
.contact .section-intro { margin-left: auto; margin-right: auto; }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card--highlight { grid-column: span 1; }
  .advisory-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-list { gap: 20px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .hero-inner { flex-direction: column-reverse; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .timeline-date { margin-left: 0; }
}
