:root {
  --ink: #172033;
  --muted: #647084;
  --blue: #0062a4;
  --blue-dark: #07395e;
  --magenta: #d4147d;
  --gold: #f9ad3d;
  --paper: #f7f8fb;
  --line: #dbe2eb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18, 31, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(150px, 190px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(247, 248, 251, 0.9);
  border-bottom: 1px solid rgba(219, 226, 235, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 58px;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
  transform: scale(1.9);
  transform-origin: 50% 50%;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.bio-links a,
.project-card a,
.service-card-linked a {
  text-decoration: none;
}

.site-nav a:hover,
.bio-links a:hover,
.project-card a:hover,
.service-card-linked a:hover {
  color: var(--blue);
}

.language-toggle {
  min-width: 48px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 31, 49, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(88vh - 76px);
  padding: clamp(46px, 7vw, 84px) clamp(20px, 4vw, 64px) clamp(38px, 6vw, 72px);
  background:
    linear-gradient(115deg, rgba(0, 98, 164, 0.11), transparent 42%),
    linear-gradient(15deg, rgba(249, 173, 61, 0.16), transparent 36%),
    var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.05rem, 3.9vw, 4.05rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(1.65rem, 2.65vw, 2.85rem);
}

h3 {
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
}

.hero-actions,
.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-link,
.secondary-link,
.bio-links a,
.project-card a,
.service-card-linked a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-link {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.secondary-link,
.bio-links a,
.project-card a,
.service-card-linked a {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-dark);
}

.profile {
  margin: 0;
  align-self: end;
}

.profile img {
  display: block;
  width: min(100%, 290px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile figcaption {
  display: grid;
  gap: 4px;
  max-width: 290px;
  margin-top: 18px;
  color: var(--muted);
}

.profile strong {
  color: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 150px;
  padding: 24px clamp(20px, 4vw, 64px) 22px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--blue);
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-strip p {
  max-width: 330px;
  margin: 8px 0 0;
  color: #7b8798;
  font-size: clamp(0.78rem, 0.88vw, 0.88rem);
  font-weight: 500;
  line-height: 1.35;
}

.section {
  padding: clamp(48px, 6vw, 78px) clamp(20px, 4vw, 64px);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article,
.project-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 31, 49, 0.06);
}

.service-grid article {
  padding: clamp(22px, 3vw, 34px);
}

.service-card-linked {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.service-card-linked a {
  align-self: flex-start;
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.service-grid p,
.project-card p,
.bio-copy p {
  color: var(--muted);
}

.project-section {
  background: #eef4f8;
}

.executive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  min-height: calc(72vh - 76px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 4vw, 64px);
  background:
    linear-gradient(115deg, rgba(0, 98, 164, 0.13), transparent 45%),
    linear-gradient(15deg, rgba(212, 20, 125, 0.1), transparent 40%),
    var(--white);
}

.executive-hero > div {
  max-width: 820px;
}

.hero-carousel {
  display: grid;
  gap: 14px;
  margin: 0;
  align-self: end;
}

.carousel-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.carousel-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.carousel-stage img.is-active {
  opacity: 1;
}

.hero-carousel figcaption {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(100, 112, 132, 0.28);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--blue);
}

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

.executive-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.executive-detail-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.executive-detail-grid h2 {
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
}

.executive-detail-grid p:not(.eyebrow),
.executive-cta-section p {
  color: var(--muted);
}

.executive-topics-section {
  background: var(--white);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(18, 31, 49, 0.08);
  color: var(--ink);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  font-weight: 780;
  line-height: 1.38;
  overflow: hidden;
}

.topic-list img {
  position: absolute;
  inset: 12px;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  opacity: 0.08;
  filter: saturate(0.8);
  mix-blend-mode: multiply;
}

.topic-list span {
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(18, 31, 49, 0.24);
}

.executive-cta-section {
  background:
    linear-gradient(90deg, rgba(0, 98, 164, 0.1), transparent 46%),
    #eef4f8;
}

.executive-cta-section > div {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.executive-cta-section strong {
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

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

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--blue);
}

.project-card.accent::before {
  background: linear-gradient(90deg, var(--magenta), var(--gold));
}

.project-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  background: var(--white);
}

.bio-copy {
  max-width: 820px;
  font-size: 0.99rem;
}

.bio-copy p:first-child {
  margin-top: 0;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(0, 98, 164, 0.1), transparent 42%),
    #eef4f8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  text-decoration: none;
}

.contact-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-card:hover {
  color: var(--blue);
  border-color: rgba(0, 98, 164, 0.35);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 64px);
  background: var(--blue-dark);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 10px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 52px;
  overflow: hidden;
}

.footer-logo img {
  display: block;
  width: 132px;
  height: auto;
  transform: scale(1.9);
  transform-origin: 50% 50%;
}

.site-footer strong {
  font-size: 1rem;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 150px 1fr;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-toggle {
    justify-self: end;
  }

  .hero,
  .bio-section,
  .executive-hero {
    grid-template-columns: 1fr;
  }

  .hero,
  .executive-hero {
    min-height: auto;
  }

  .profile {
    align-self: start;
  }

  .proof-strip,
  .service-grid,
  .project-grid,
  .contact-grid,
  .executive-detail-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    gap: 10px 16px;
  }

  .brand {
    width: 126px;
  }

  .brand img {
    width: 126px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(1.95rem, 10.5vw, 3.05rem);
  }

  .hero-actions,
  .bio-links,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-link,
  .secondary-link,
  .bio-links a,
  .project-card a,
  .service-card-linked a {
    width: 100%;
  }
}
