:root {
  --blue: #0b8df0;
  --blue-deep: #0065b3;
  --navy: #071a2c;
  --ink: #14283a;
  --muted: #5d7182;
  --pale: #eaf6ff;
  --line: #d7e7f2;
  --white: #fff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand { display: block; width: min(440px, 55vw); }
.brand img { width: 100%; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { text-decoration: none; font-weight: 700; font-size: .92rem; letter-spacing: .02em; }
nav a:hover, nav a.active { color: var(--blue-deep); }
nav a.active::after { content: ""; display: block; height: 2px; margin-top: 5px; background: var(--blue); }
.menu-button { display: none; border: 1px solid var(--line); background: white; color: var(--navy); padding: 9px 13px; font: inherit; font-weight: 700; border-radius: 8px; }

main { overflow: hidden; }
.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
}
.eyebrow { margin: 0 0 12px; color: var(--blue-deep); font-size: .82rem; line-height: 1.2; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.06; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(3.15rem, 7vw, 6.2rem); }
h1 span, h2 span { color: var(--blue); }
.hero-text { max-width: 650px; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 7px; text-decoration: none; font-weight: 800; }
.button.primary { color: white; background: var(--blue-deep); box-shadow: 0 10px 28px rgba(0, 101, 179, .18); }
.button.primary:hover { background: var(--navy); }
.button.secondary { color: var(--navy); border: 1px solid var(--line); background: white; }
.hero-art {
  min-height: 460px;
  background: url("assets/qtp-watermark.jpg") center / contain no-repeat;
  opacity: .72;
}

.trust-strip { background: var(--navy); color: white; display: grid; grid-template-columns: repeat(3, 1fr); padding: 28px max(20px, calc((100vw - var(--max)) / 2)); }
.trust-strip div { padding: 8px 35px; border-right: 1px solid rgba(255,255,255,.15); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: #63bdff; font-size: 1.05rem; }
.trust-strip span { color: #d7e7f2; font-size: .91rem; }

.services { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 115px 0; }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr 1fr; gap: 50px; align-items: start; margin-bottom: 55px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading > p:last-child { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid article { position: relative; min-height: 245px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .2s ease, background .2s ease; }
.service-grid article:hover { z-index: 1; transform: translateY(-4px); background: var(--pale); }
.service-number { display: block; margin-bottom: 40px; color: var(--blue); font-weight: 800; }
.service-grid h3 { margin-bottom: 10px; font-size: 1.45rem; }
.service-grid p { margin: 0; color: var(--muted); }

.support-panel { width: min(calc(100% - 40px), var(--max)); margin: 0 auto 115px; padding: 60px; display: grid; grid-template-columns: 160px 1fr; gap: 55px; align-items: center; background: var(--pale); border-radius: 22px; }
.support-icon { padding: 28px; background: white; border-radius: 50%; }
.support-panel h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.3rem); }
.support-panel p:last-child { max-width: 730px; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.contact { padding: 110px 20px; text-align: center; color: white; background: var(--blue-deep); }
.contact .eyebrow { color: #a6dbff; }
.contact h2 { margin-bottom: 15px; color: white; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.contact > p:last-child { margin-bottom: 0; color: #d7efff; }

footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 42px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--muted); font-size: .86rem; }
footer img { width: min(360px, 50vw); }

.about-hero { width: min(calc(100% - 40px), var(--max)); min-height: 520px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr .7fr; gap: 80px; align-items: center; }
.about-hero h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
.about-hero > p { padding-left: 30px; border-left: 3px solid var(--blue); color: var(--muted); font-size: 1.1rem; }
.about-placeholder { position: relative; min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--navy); overflow: hidden; }
.placeholder-mark { background: white; overflow: hidden; }
.placeholder-mark img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-copy { align-self: center; padding: 80px max(40px, calc((100vw - var(--max)) / 2)); padding-left: 70px; }
.placeholder-copy h2 { color: white; font-size: clamp(2.2rem, 4vw, 4rem); }
.placeholder-copy p:last-child { color: #b8cad8; max-width: 520px; }
.values-preview { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 110px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.value-grid article { padding: 34px; border-left: 1px solid var(--line); }
.value-grid h3 { margin-bottom: 12px; font-size: 1.55rem; }
.value-grid p { margin: 0; color: var(--muted); }
.page-cta { padding: 90px 20px; text-align: center; background: var(--pale); }
.page-cta h2 { max-width: 760px; margin: 0 auto 30px; font-size: clamp(2.1rem, 4vw, 3.7rem); }

@media (max-width: 850px) {
  .site-header { min-height: 78px; }
  .brand { width: min(320px, 68vw); }
  .menu-button { display: block; }
  nav { display: none; position: absolute; z-index: 10; top: 76px; left: 20px; right: 20px; padding: 22px; flex-direction: column; align-items: stretch; gap: 16px; background: white; border: 1px solid var(--line); box-shadow: 0 20px 45px rgba(7,26,44,.12); }
  nav.open { display: flex; }
  nav a.active::after { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding: 75px 0; }
  .hero-art { min-height: 350px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .support-panel { grid-template-columns: 110px 1fr; padding: 38px; gap: 30px; }
  .about-hero { min-height: auto; grid-template-columns: 1fr; gap: 20px; padding: 80px 0; }
  .about-placeholder { grid-template-columns: 1fr; }
  .placeholder-mark { max-height: 400px; }
  .placeholder-copy { padding: 65px 30px; }
}

@media (max-width: 600px) {
  h1 { font-size: 3.15rem; }
  .brand { width: 245px; }
  .service-grid, .value-grid { grid-template-columns: 1fr; }
  .support-panel { display: block; padding: 32px 25px; }
  .support-icon { width: 100px; margin-bottom: 28px; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Compact layout — Version 2 */
.site-header {
  min-height: 72px;
}

.brand {
  width: min(360px, 50vw);
}

.hero {
  min-height: 475px;
  grid-template-columns: 1.25fr .75fr;
  gap: 35px;
  padding: 48px 0;
}

.hero h1 {
  font-size: clamp(2.9rem, 5.8vw, 5.3rem);
  margin-bottom: 18px;
}

.hero-text {
  margin: 0;
  max-width: 680px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-art {
  min-height: 330px;
  background-position: right center;
}

.trust-strip {
  padding-top: 18px;
  padding-bottom: 18px;
}

.trust-strip div {
  padding-top: 3px;
  padding-bottom: 3px;
}

.services {
  padding: 72px 0;
}

.section-heading {
  grid-template-columns: 1.35fr .65fr;
  gap: 16px 48px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.service-grid article {
  min-height: 190px;
  padding: 28px 30px;
}

.service-number {
  margin-bottom: 20px;
}

.support-panel {
  margin-bottom: 72px;
  padding: 42px 48px;
  grid-template-columns: 120px 1fr;
  gap: 38px;
}

.support-panel h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-bottom: 12px;
}

.support-icon {
  padding: 22px;
}

.contact {
  padding: 68px 20px;
}

.contact h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

footer {
  padding: 28px 0;
}

footer img {
  width: min(300px, 45vw);
}

.about-hero {
  min-height: 390px;
  gap: 55px;
  padding: 40px 0;
}

.about-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.about-placeholder {
  min-height: 420px;
}

.placeholder-copy {
  padding-top: 55px;
  padding-bottom: 55px;
  padding-left: 55px;
}

.placeholder-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.values-preview {
  padding: 70px 0;
}

.value-grid article {
  padding: 25px 28px;
}

.page-cta {
  padding: 62px 20px;
}

.leadership {
  position: relative;
  padding: 68px max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, var(--navy), #0b304d);
}

.leadership::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/qtp-watermark.jpg") top right / min(620px, 55vw) auto no-repeat;
  opacity: .055;
}

.leadership-heading,
.bio-card {
  position: relative;
  z-index: 1;
}

.leadership-heading {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 36px;
}

.leadership-heading h2 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.leadership-heading h2 span {
  color: #63bdff;
}

.bio-card {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 42px;
  padding: 38px;
  margin-top: 20px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.bio-header {
  align-self: start;
}

.bio-photo {
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid var(--pale);
  box-shadow: 0 8px 24px rgba(7, 26, 44, .15);
}

.bio-header h3 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.bio-header p {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 800;
  line-height: 1.4;
}

.bio-copy {
  columns: 2;
  column-gap: 34px;
  color: var(--muted);
}

.bio-copy p {
  margin: 0 0 1em;
  break-inside: avoid;
}

@media (max-width: 850px) {
  .site-header { min-height: 68px; }
  nav { top: 68px; }
  .hero { padding: 52px 0; gap: 18px; }
  .hero-art { min-height: 240px; background-position: center; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .about-hero { padding: 55px 0; }
  .leadership-heading,
  .bio-card { grid-template-columns: 1fr; }
  .bio-card { gap: 26px; }
  .bio-header { display: flex; gap: 20px; align-items: center; }
  .bio-photo { flex: 0 0 92px; width: 92px; height: 92px; margin-bottom: 0; }
  .bio-copy { columns: 1; }
}

@media (max-width: 600px) {
  .brand { width: 230px; }
  .hero { padding: 44px 0; }
  .hero h1 { font-size: 2.75rem; }
  .hero-art { min-height: 190px; }
  .services { padding: 55px 0; }
  .service-grid article { min-height: 0; }
  .support-panel { margin-bottom: 55px; padding: 28px 24px; }
  .contact { padding: 55px 20px; }
  .about-placeholder { min-height: 0; }
  .placeholder-mark { max-height: 260px; }
  .values-preview { padding: 55px 0; }
  .leadership { padding-top: 52px; padding-bottom: 52px; }
  .leadership-heading { gap: 8px; }
  .bio-card { padding: 26px 22px; }
}
