:root {
  --navy: #0b2f73;
  --blue: #1358d6;
  --ink: #162033;
  --muted: #667085;
  --line: #dbe3ef;
  --soft: #f4f7fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(19, 88, 214, 0.10), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 24px;
}

.card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  min-height: 680px;
  background: var(--white);
  border: 1px solid rgba(11, 47, 115, 0.10);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 35, 70, 0.13);
}

.brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.logo {
  width: min(330px, 76%);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.status-pill {
  width: fit-content;
  padding: 9px 14px;
  margin-bottom: 18px;
  border: 1px solid #b9cdf5;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.lead {
  margin: 0;
  max-width: 690px;
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.supporting-copy {
  margin: 18px 0 0;
  max-width: 670px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-box {
  display: grid;
  gap: 7px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-box p { margin: 0; }

.contact-name {
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-title,
.location { color: var(--muted); }

.contact-box a {
  width: fit-content;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.contact-box a:hover,
.contact-box a:focus { text-decoration: underline; }

.portrait-panel {
  position: relative;
  min-height: 100%;
  background: var(--soft);
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 36px 0 60px rgba(11, 47, 115, 0.08);
  pointer-events: none;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

footer {
  padding: 20px 8px 0;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .page-shell { padding-top: 20px; }

  .card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-panel { padding: 46px 34px; }

  .portrait-panel { order: -1; }

  .portrait-panel img {
    min-height: 0;
    height: clamp(360px, 75vw, 620px);
    object-position: center 30%;
  }

  .portrait-panel::after {
    box-shadow: inset 0 -30px 60px rgba(11, 47, 115, 0.08);
  }
}

@media (max-width: 520px) {
  .page-shell { width: min(100% - 18px, 1180px); }
  .card { border-radius: 20px; }
  .brand-panel { padding: 34px 24px; }
  .logo { width: min(270px, 86%); }
  h1 { font-size: 2.55rem; }
}
