:root {
  --navy: #071127;
  --navy-2: #101c34;
  --blue: #183d6f;
  --red: #d71910;
  --yellow: #dfbd09;
  --paper: #f3f1eb;
  --white: #ffffff;
  --text: #172033;
  --muted: #6c7280;
  --line: rgba(7,17,39,.14);
  --heading: "IBM Plex Sans", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
}

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

a { text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .navbar {
  min-height: 82px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--heading);
  font-size: 1rem;
  color: var(--navy);
}

.brand-text span {
  margin-top: 5px;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-link {
  font-size: .82rem;
  color: var(--navy) !important;
  padding: .65rem .9rem !important;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  padding-bottom: .15rem;
  border-bottom: 1px solid var(--navy);
}

.hero {
  padding: 2.1rem 0 7rem;
}

.hero-meta {
  padding: 1.2rem 0 4rem;
  border-bottom: 1px solid var(--line);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  min-height: 520px;
  padding: 5.5rem 0;
}

.eyebrow,
.section-label {
  margin-bottom: 1.2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 500;
  color: var(--navy);
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
}

.arrow-link span {
  transition: transform .2s ease;
}

.arrow-link:hover span {
  transform: translate(3px,-3px);
}

.hero-image-wrap {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.03);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,39,.52), transparent 42%);
}

.hero-caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.4rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.82);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.intro-section,
.services-section,
.training-section,
.projects-section,
.insights-section {
  padding: 9rem 0;
}

.intro-section {
  background: var(--paper);
}

.intro-section h2,
.services-section h2,
.training-section h2,
.projects-section h2,
.insights-section h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2.6rem, 4.8vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 500;
  color: var(--navy);
}

.intro-bottom {
  margin-top: 6rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--heading);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--navy);
}

.stat span {
  display: block;
  max-width: 220px;
  margin-top: .7rem;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--muted);
}

.intro-bottom p,
.training-section p,
.editorial-panel p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.service-list {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 1.2fr 50px;
  align-items: center;
  gap: 2rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: .22s ease;
}

.service-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: var(--paper);
}

.service-number {
  font-size: .7rem;
  letter-spacing: .11em;
  color: var(--muted);
}

.service-title {
  font-family: var(--heading);
  font-size: 1.75rem;
  color: var(--navy);
}

.service-desc {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--muted);
}

.service-arrow {
  color: var(--navy);
  font-size: 1.1rem;
}

.editorial-image-section {
  background: var(--navy);
}

.image-panel img {
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05);
}

.editorial-panel {
  padding: 7rem 5rem;
  color: #fff;
}

.section-label.light {
  color: var(--yellow);
}

.editorial-panel h2 {
  margin: 0 0 2rem;
  font-family: var(--heading);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 500;
}

.editorial-panel p {
  color: rgba(255,255,255,.62);
}

.study-index {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 2.2rem 0 2.5rem;
}

.study-index span {
  padding: .75rem .9rem;
  border: 1px solid rgba(255,255,255,.18);
  font-size: .7rem;
  letter-spacing: .1em;
}

.light-link {
  color: #fff;
}

.training-editorial {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.training-editorial article {
  min-height: 320px;
  padding: 2.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.training-type,
.project-kicker,
.insight-meta {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

.training-editorial h3 {
  margin: 1.1rem 0 1rem;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
}

.training-editorial a {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
}

.projects-section {
  background: var(--paper);
}

.featured-project {
  margin-top: 4rem;
}

.featured-project img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.72);
}

.project-copy {
  padding: 5rem 4rem;
  background: var(--navy);
  color: #fff;
}

.project-copy h3 {
  margin: 1.2rem 0;
  font-family: var(--heading);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
}

.project-tags {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.project-copy > p:not(.project-tags) {
  margin: 2rem 0;
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.62);
}

.project-index {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-index article {
  position: relative;
  min-height: 220px;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-index span {
  font-size: .68rem;
  color: var(--muted);
}

.project-index h4 {
  margin: 2.7rem 0 .5rem;
  font-family: var(--heading);
  font-size: 1.6rem;
  color: var(--navy);
}

.project-index p {
  color: var(--muted);
  font-size: .82rem;
}

.project-index a {
  position: absolute;
  right: 1.8rem;
  top: 1.7rem;
  color: var(--navy);
}

.insight-list {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.insight-list article {
  display: grid;
  grid-template-columns: 210px 1fr 50px;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.insight-list h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
}

.insight-list a {
  color: var(--navy);
  font-size: 1.1rem;
}

.contact-section {
  padding: 8rem 0;
  background: var(--navy);
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
}

.contact-inner h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 500;
  color: #fff;
}

.contact-button {
  min-width: 220px;
  padding: 1.15rem 1.4rem;
  display: inline-flex;
  justify-content: space-between;
  color: var(--navy);
  background: #fff;
  font-size: .8rem;
  font-weight: 700;
}

.site-footer {
  padding: 4rem 0;
  background: #050b17;
  color: rgba(255,255,255,.55);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--heading);
}

.footer-brand span,
.site-footer small {
  margin-top: .3rem;
  font-size: .72rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-nav a {
  color: rgba(255,255,255,.68);
  font-size: .8rem;
}

@media (max-width: 991.98px) {
  .hero-grid {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-copy {
    margin-top: 2rem;
  }

  .service-row {
    grid-template-columns: 70px 1fr 40px;
  }

  .service-desc {
    grid-column: 2;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .editorial-panel {
    padding: 5rem 3rem;
  }

  .training-editorial,
  .project-index {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 767.98px) {
  .brand-text span {
    display: none;
  }

  .hero-meta {
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-image-wrap {
    height: 440px;
  }

  .intro-section,
  .services-section,
  .training-section,
  .projects-section,
  .insights-section {
    padding: 6rem 0;
  }

  .service-row {
    grid-template-columns: 52px 1fr 30px;
    gap: 1rem;
  }

  .service-title {
    font-size: 1.35rem;
  }

  .editorial-panel {
    padding: 4rem 1.5rem;
  }

  .training-editorial {
    grid-template-columns: 1fr;
  }

  .project-copy {
    padding: 3.5rem 1.5rem;
  }

  .insight-list article {
    grid-template-columns: 1fr 40px;
    gap: .7rem 1rem;
  }

  .insight-meta {
    grid-column: 1;
  }

  .insight-list h3 {
    grid-column: 1;
    font-size: 1.35rem;
  }

  .insight-list a {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .contact-inner h2 {
    font-size: 3.6rem;
  }
}
