@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:      #1B3A5A;
  --olive:     #7A9C28;
  --lime:      #A8C846;
  --teal:      #4CAF9A;
  --charcoal:  #3D3D3D;
  --offwhite:  #F5F3EE;
  --white:     #FFFFFF;
  --deepnavy:  #12273D;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', 'Helvetica Neue', sans-serif;
  --mono:  'Space Mono', 'Courier New', monospace;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--charcoal); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; text-wrap: pretty; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p { text-wrap: pretty; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

/* ── NAV ── */
.site-nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; height: 72px;
}
.nav-logo-group { display: flex; flex-direction: column; gap: 2px; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--olive); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 26px; height: 26px; }
.nav-brand { display: flex; flex-direction: column; }
.nav-company { font-family: var(--serif); color: white; font-size: 1rem; font-weight: 600; letter-spacing: 0.01em; }
.nav-cred { font-size: 0.62rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: rgba(255,255,255,0.78); font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 4px; transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: white; }
.nav-cta {
  background: var(--olive); color: white !important; padding: 0.5rem 1.1rem !important;
  border-radius: 4px; font-weight: 600 !important; transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #8aad2e !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { background: var(--olive); color: white; margin: 1rem 2rem; border-radius: 4px; text-align: center; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .mobile-menu.open { display: block; }
}

/* ── FOOTER ── */
.site-footer { background: var(--deepnavy); color: rgba(255,255,255,0.6); padding: 3rem 0 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.footer-left .footer-brand { font-family: var(--serif); color: white; font-size: 1rem; margin-bottom: 0.4rem; }
.footer-left p { font-size: 0.8rem; line-height: 1.8; }
.footer-center nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-center nav a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-center nav a:hover { color: white; }
.footer-right { text-align: right; }
.footer-social { display: flex; gap: 1rem; justify-content: flex-end; margin-bottom: 0.75rem; }
.footer-social a { color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: color 0.2s; }
.footer-social a:hover { color: white; }
.footer-bottom { max-width: 1180px; margin: 2rem auto 0; padding: 1.5rem 2rem 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.75rem; }
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-social { justify-content: flex-start; }
}

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 0.8rem 1.75rem; border-radius: 4px; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: var(--olive); color: white; }
.btn-primary:hover { background: #8aad2e; }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: #1a3450; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: white; }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: white; }

/* ── SECTION LABELS ── */
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; display: block; }
.section-label--muted { color: rgba(255,255,255,0.45); }

/* ── PILLS ── */
.pill { display: inline-block; padding: 0.3rem 0.85rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; }
.pill-olive { background: rgba(122,156,40,0.15); color: var(--olive); }
.pill-olive-solid { background: var(--olive); color: white; }
.pill-navy { background: var(--navy); color: white; }
.pill-lime { background: var(--lime); color: var(--deepnavy); }
.pill-teal { background: rgba(76,175,154,0.15); color: var(--teal); }

/* ── TESTIMONIAL ── */
.testimonial-card { border-left: 3px solid var(--olive); padding: 1.5rem 1.5rem 1.5rem 2rem; }
.testimonial-card blockquote { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--charcoal); line-height: 1.7; margin-bottom: 0.75rem; }
.testimonial-card cite { font-size: 0.78rem; font-style: normal; color: rgba(61,61,61,0.6); display: block; }

/* ── HERO ── */
.hero { background: var(--navy); color: white; padding: 6rem 0 0; }
.hero-eyebrow { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.hero h1 { color: white; max-width: 14ch; }
.hero-sub { color: rgba(255,255,255,0.7); max-width: 54ch; margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.75; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.stats-strip { background: var(--deepnavy); margin-top: 4rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-number { font-family: var(--mono); font-size: 2rem; color: var(--lime); display: block; font-weight: 700; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; display: block; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2,1fr); } .stat-cell:nth-child(2) { border-right: none; } }

/* ── PROGRESS BARS ── */
.progress-item { margin-bottom: 1.5rem; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.85rem; }
.progress-label span:first-child { font-weight: 500; }
.progress-label span:last-child { font-family: var(--mono); font-size: 0.8rem; color: rgba(61,61,61,0.6); }
.progress-track { height: 8px; background: rgba(0,0,0,0.08); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }

/* ── TABS ── */
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid rgba(0,0,0,0.08); margin-bottom: 2.5rem; overflow-x: auto; }
.tab-btn { padding: 0.85rem 1.5rem; font-family: var(--sans); font-size: 0.875rem; font-weight: 600; background: none; border: none; cursor: pointer; color: rgba(61,61,61,0.55); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all 0.2s; }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--olive); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── CARDS ── */
.card { background: white; border-radius: 6px; padding: 2rem; }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(2,1fr); }
.card-grid-3 { grid-template-columns: repeat(3,1fr); }
.card-grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px) { .card-grid-4 { grid-template-columns: repeat(2,1fr); } .card-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; } }
.method-card { border-top: 3px solid var(--navy); padding: 1.75rem; background: white; }
.method-card__label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(61,61,61,0.5); margin-bottom: 0.5rem; }
.method-card__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.method-card__body { font-size: 0.875rem; line-height: 1.7; color: rgba(61,61,61,0.8); }

/* ── SERVICE TAB CONTENT ── */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; gap: 2rem; } }
.service-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.75rem; }
.service-list li { padding-left: 1.25rem; position: relative; font-size: 0.9rem; line-height: 1.6; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--olive); }
.service-steps { counter-reset: step; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.service-steps li { padding-left: 2rem; position: relative; font-size: 0.9rem; line-height: 1.6; counter-increment: step; }
.service-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; background: var(--offwhite); color: var(--navy); border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.engagement-tag { display: inline-block; margin-top: 1.25rem; padding: 0.5rem 1rem; background: var(--offwhite); border-radius: 4px; font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }

/* ── COLHEADS ── */
.cols-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
@media (max-width: 840px) { .cols-3 { grid-template-columns: 1fr; gap: 2rem; } }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 680px) { .cols-2 { grid-template-columns: 1fr; gap: 2rem; } }
.col-subhead { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; }
.col-body { font-size: 0.925rem; line-height: 1.75; color: rgba(61,61,61,0.85); }

/* ── TIMELINE ── */
.timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.timeline::before { content: ''; position: absolute; left: 2rem; top: 0; bottom: 0; width: 2px; background: var(--offwhite); }
.timeline-item { display: flex; gap: 2rem; padding: 0 0 3rem 0; }
.timeline-dot { flex-shrink: 0; width: 4rem; display: flex; justify-content: center; padding-top: 0.2rem; }
.timeline-dot span { width: 14px; height: 14px; border-radius: 50%; background: var(--olive); border: 3px solid white; box-shadow: 0 0 0 2px var(--olive); display: block; position: relative; z-index: 1; }
.timeline-content {}
.timeline-phase { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.25rem; }
.timeline-period { font-family: var(--mono); font-size: 0.78rem; color: rgba(61,61,61,0.5); margin-bottom: 0.6rem; }
.timeline-body { font-size: 0.9rem; line-height: 1.7; color: rgba(61,61,61,0.8); }

/* ── VIDEO PLACEHOLDER ── */
.video-placeholder {
  background: var(--offwhite); border: 2px dashed rgba(27,58,90,0.2); border-radius: 6px;
  aspect-ratio: 16/9; max-width: 560px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem; margin: 2rem auto;
}
.video-placeholder__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.video-placeholder__icon svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.video-placeholder__label { font-size: 0.75rem; font-family: var(--mono); color: rgba(27,58,90,0.5); text-align: center; line-height: 1.6; }

/* ── METRIC PILLS ── */
.metric-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.metric-pill { background: var(--navy); color: white; border-radius: 6px; padding: 0.85rem 1.25rem; text-align: center; }
.metric-pill__value { font-family: var(--mono); font-size: 1.1rem; color: var(--lime); display: block; font-weight: 700; }
.metric-pill__label { font-size: 0.72rem; color: rgba(255,255,255,0.6); display: block; margin-top: 0.15rem; }

/* ── ASSESSMENT PILLS ── */
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.pill-tag { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.76rem; font-weight: 500; background: var(--offwhite); color: var(--charcoal); border: 1px solid rgba(0,0,0,0.08); }

/* ── BLOG CARD ── */
.blog-card { background: white; border-radius: 6px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.blog-card__body { padding: 1.5rem; }
.blog-card__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.6rem; }
.blog-card__title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card__excerpt { font-size: 0.85rem; color: rgba(61,61,61,0.75); line-height: 1.65; margin-bottom: 1rem; }
.blog-card__meta { font-size: 0.75rem; color: rgba(61,61,61,0.45); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-white { color: white; }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.muted { color: rgba(61,61,61,0.6); }
.small { font-size: 0.8rem; }
.divider { width: 40px; height: 3px; background: var(--olive); margin: 1.25rem 0; }

/* ── CREDENTIAL BAR ── */
.cred-bar { background: var(--offwhite); padding: 1rem 0; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.cred-bar-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2rem; font-size: 0.75rem; }
.cred-bar-label { text-transform: uppercase; letter-spacing: 0.08em; color: rgba(61,61,61,0.45); font-weight: 600; }
.cred-bar-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cred-divider { color: rgba(61,61,61,0.2); font-size: 1.1rem; }

/* ── ANIMATE ON SCROLL ── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: none; }
