:root {
  color-scheme: dark;
  --ink: #0b1220;
  --ink-2: #101a2c;
  --ink-3: #16243a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(218, 177, 94, 0.38);
  --text: #eef3f8;
  --muted: #a9b7c8;
  --soft: #d7dfeb;
  --gold: #dab15e;
  --gold-2: #f0ce82;
  --blue: #64a8ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(100, 168, 255, 0.14), transparent 32rem),
    radial-gradient(circle at top right, rgba(218, 177, 94, 0.16), transparent 34rem),
    linear-gradient(135deg, var(--ink), #09101d 52%, #0e1828);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-pad { padding: 112px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 29, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 16, 29, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(218, 177, 94, 0.22), rgba(255,255,255,0.04));
  color: var(--gold-2);
  font-size: 13px;
}

.brand-text { font-size: 15px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--gold-2); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  color: var(--text);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 158px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px 24px auto 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 177, 94, 0.7), transparent);
  opacity: 0.35;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 72px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.072em;
  max-width: 900px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 670px;
  color: var(--soft);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(218, 177, 94, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible { background: var(--gold-2); }

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--line-gold); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045)),
    rgba(12, 22, 38, 0.72);
  box-shadow: var(--shadow);
  padding: 22px;
}

.profile-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
}

.profile-card img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid var(--line-gold);
}

.profile-card h2 {
  margin-bottom: 4px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.profile-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.metric {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.075);
}

.metric strong {
  display: block;
  color: var(--gold-2);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.executive-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.035);
}

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

.strip-grid > div {
  padding: 30px 30px 30px 0;
}

.strip-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strip-grid p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
}

.soft-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.section-intro p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
}

.centered {
  text-align: center;
  margin-inline: auto;
  max-width: 810px;
}

.centered p { margin-inline: auto; }

.sticky-intro {
  position: sticky;
  top: 110px;
}

.card-list {
  display: grid;
  gap: 16px;
}

.capability-card,
.impact-card,
.stack-card,
.principles-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.capability-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px;
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(218, 177, 94, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(218, 177, 94, 0.22);
  font-weight: 900;
}

.capability-card p,
.impact-card p,
.timeline-content p,
.principles-card li { color: var(--muted); }

.capability-card p,
.impact-card p { margin-bottom: 0; }

.section-heading { margin-bottom: 50px; }

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

.impact-card {
  min-height: 265px;
  padding: 28px;
}

.feature-card {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(218, 177, 94, 0.13), rgba(255,255,255,0.055));
  border-color: rgba(218, 177, 94, 0.2);
}

.impact-kicker {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card h3 { font-size: 28px; }

.timeline {
  border-left: 1px solid rgba(218, 177, 94, 0.28);
  padding-left: 34px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding: 0 0 58px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(218, 177, 94, 0.12);
}

.timeline-date {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-content h3 { font-size: 28px; }

.role {
  margin-bottom: 14px;
  color: var(--soft) !important;
  font-weight: 800;
}

.clean-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

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

.stack-card {
  padding: 28px;
}

.stack-card h3 {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--gold-2);
  font-size: 16px;
}

.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-wrap span,
.cert-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--soft);
  font-size: 12px;
  font-weight: 750;
}

.certs-panel {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(218, 177, 94, 0.18);
  border-radius: var(--radius-md);
  background: rgba(218, 177, 94, 0.06);
}

.certs-panel h3 { margin-bottom: 0; }

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.reverse-mobile {
  grid-template-columns: 1fr 0.78fr;
}

.principles-card {
  padding: 34px;
}

.principles-card h2 { font-size: clamp(28px, 3vw, 40px); }

.principles-card ol {
  margin: 28px 0 0;
  padding-left: 20px;
}

.principles-card li {
  padding-left: 8px;
  margin: 0 0 18px;
}

.principles-card li::marker {
  color: var(--gold-2);
  font-weight: 900;
}

.principles-card strong { color: var(--text); }

.contact-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at bottom left, rgba(218,177,94,0.13), transparent 32rem),
    rgba(255,255,255,0.035);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-links a {
  color: var(--soft);
  text-decoration: none;
  font-weight: 800;
}

.contact-links a:hover,
.contact-links a:focus-visible { color: var(--gold-2); }

.contact-form {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(4, 10, 19, 0.42);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(218, 177, 94, 0.12);
}

.contact-form button { width: 100%; }

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  background: rgba(3, 7, 14, 0.55);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p { margin: 0; font-size: 13px; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--gold-2); }

@media (max-width: 1050px) {
  .hero-grid,
  .two-col,
  .reverse-mobile,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-panel { max-width: 560px; }
  .sticky-intro { position: static; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .certs-panel { grid-template-columns: 1fr; }
  .cert-grid { justify-content: flex-start; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 74px 0; }
  .hero { padding-top: 118px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(40px, 14vw, 60px); }
  h2 { font-size: 34px; }
  .nav-shell { min-height: 68px; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: rgba(9, 16, 29, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible { background: rgba(255,255,255,0.06); }

  .brand-text { font-size: 14px; }
  .profile-card { grid-template-columns: 82px 1fr; }
  .profile-card img { width: 82px; height: 82px; border-radius: 18px; }
  .metrics-grid,
  .strip-grid,
  .impact-grid,
  .form-row { grid-template-columns: 1fr; }
  .strip-grid > div { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .strip-grid > div:last-child { border-bottom: 0; }
  .capability-card { grid-template-columns: 1fr; }
  .feature-card { grid-column: auto; }
  .timeline { padding-left: 22px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .timeline-item::before { left: -29px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

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

/* v3 cleanup: tighter cards, real photo placement, less dead space */
.section-pad { padding: 88px 0; }
.hero { padding-top: 136px; }
.hero-grid { gap: 52px; }
.two-col { grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr); gap: 44px; }
.section-heading { margin-bottom: 34px; }
.sticky-intro { top: 96px; }

.profile-card { grid-template-columns: 122px 1fr; }
.profile-card img {
  width: 122px;
  height: 122px;
  object-fit: cover;
  object-position: 66% 28%;
}
.metric { min-height: 104px; padding: 18px; }
.metric strong { font-size: 34px; }

.section-photo {
  margin: 32px 0 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(218, 177, 94, 0.18);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}
.section-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 34%;
}
.section-photo figcaption {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.card-list.compact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.capability-card {
  grid-template-columns: 48px 1fr;
  gap: 10px 16px;
  padding: 22px;
  min-height: 0;
}
.capability-card h3 {
  margin: 4px 0 0;
  font-size: 18px;
}
.capability-card p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.card-number {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.impact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.impact-card {
  min-height: 0;
  padding: 24px;
}
.feature-card { grid-column: auto; }
.feature-card h3 { font-size: 22px; }
.impact-kicker { margin-bottom: 18px; }
.impact-card h3 { margin-bottom: 12px; }
.impact-card p { font-size: 15px; line-height: 1.6; }

@media (max-width: 1050px) {
  .section-pad { padding: 78px 0; }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .card-list.compact-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-photo img { height: 300px; }
}

@media (max-width: 760px) {
  .section-pad { padding: 64px 0; }
  .hero { padding-top: 112px; }
  .profile-card { grid-template-columns: 92px 1fr; }
  .profile-card img { width: 92px; height: 92px; }
  .card-list.compact-card-grid,
  .impact-grid { grid-template-columns: 1fr; }
  .capability-card { grid-template-columns: 44px 1fr; padding: 20px; }
  .capability-card p { grid-column: 1 / -1; }
  .section-photo img { height: 260px; }
}

/* v3 photo update: make the hero photo area a real, visible photo instead of a tiny thumbnail */
.hero-panel { padding: 18px; }
.profile-card {
  display: block;
  overflow: hidden;
  padding: 0;
}
.profile-card img {
  width: 100%;
  height: 310px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: 66% 30%;
  border: 0;
  border-bottom: 1px solid var(--line-gold);
}
.profile-card > div { padding: 18px 18px 4px; }
.profile-card h2 { font-size: 24px; }

@media (max-width: 760px) {
  .profile-card img {
    width: 100%;
    height: 260px;
    border-radius: 18px 18px 0 0;
  }
}


/* v5 leadership section cleanup: even layout with no dead corner space */
.leadership-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.leadership-feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(218, 177, 94, 0.18);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.leadership-feature-photo img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 520px;
  object-fit: cover;
  object-position: center 22%;
}

.leadership-feature-photo figcaption {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

#leadership .compact-card-grid {
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#leadership .capability-card {
  height: 100%;
  align-content: start;
}

@media (max-width: 1050px) {
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .leadership-feature-photo img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .leadership-heading {
    margin-bottom: 22px;
  }

  #leadership .compact-card-grid {
    grid-template-columns: 1fr;
  }

  .leadership-feature-photo img {
    min-height: 280px;
  }
}

/* v6 copy and layout refinement */
.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 720px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(218, 177, 94, 0.12);
}

.leadership-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.leadership-mosaic {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.leadership-mosaic .leadership-feature-photo {
  grid-row: span 2;
}

.leadership-mosaic .capability-card {
  min-height: 245px;
  height: 100%;
  align-content: start;
}

.leadership-feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(218, 177, 94, 0.18);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.leadership-feature-photo img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 450px;
  object-fit: cover;
  object-position: center 16%;
}

.leadership-feature-photo figcaption {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.beyond-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.beyond-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(218, 177, 94, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(218, 177, 94, 0.22);
  font-weight: 900;
  font-size: 13px;
}

.beyond-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.principles-card p {
  color: var(--muted);
  font-size: 16px;
}

.work-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(218, 177, 94, 0.18);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.work-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 18%;
}

@media (max-width: 1050px) {
  .leadership-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-mosaic .leadership-feature-photo {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .leadership-feature-photo img {
    min-height: 360px;
  }

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

  .work-photo img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .leadership-mosaic,
  .beyond-grid {
    grid-template-columns: 1fr;
  }

  .leadership-mosaic .capability-card,
  .beyond-card {
    min-height: 0;
  }

  .leadership-feature-photo img,
  .work-photo img {
    min-height: 300px;
  }
}


/* v7 fix: leadership photo was too large at laptop/tablet widths. Keep the section balanced with no empty corner. */
#leadership.section-pad {
  padding-top: 74px;
  padding-bottom: 78px;
}

#leadership .leadership-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

#leadership .leadership-heading h2 {
  max-width: 760px;
}

#leadership .leadership-heading p:not(.eyebrow) {
  max-width: 690px;
}

#leadership .leadership-mosaic {
  grid-template-columns: minmax(245px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

#leadership .leadership-mosaic .leadership-feature-photo {
  grid-column: auto;
  grid-row: span 2;
  height: 100%;
  min-height: 0;
}

#leadership .leadership-feature-photo img {
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
}

#leadership .leadership-feature-photo figcaption {
  padding: 12px 14px 14px;
}

#leadership .capability-card {
  min-height: 168px;
  padding: 20px;
}

#leadership .capability-card h3 {
  font-size: 18px;
  line-height: 1.15;
}

#leadership .capability-card p {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  #leadership .leadership-mosaic {
    grid-template-columns: minmax(230px, 0.72fr) repeat(2, minmax(0, 1fr));
  }

  #leadership .leadership-mosaic .leadership-feature-photo {
    grid-column: auto;
    grid-row: span 2;
  }

  #leadership .leadership-feature-photo img {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 860px) {
  #leadership .leadership-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #leadership .leadership-mosaic .leadership-feature-photo {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  #leadership .leadership-feature-photo img {
    height: 300px;
  }
}

@media (max-width: 620px) {
  #leadership .leadership-mosaic {
    grid-template-columns: 1fr;
  }

  #leadership .leadership-feature-photo img {
    height: 260px;
  }
}


/* v8 leadership fix: photo is a normal small website card, not a giant section image */
#leadership.section-pad {
  padding-top: 70px;
  padding-bottom: 72px;
}

#leadership .leadership-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

#leadership .leadership-heading {
  margin: 0;
  max-width: 800px;
}

#leadership .leadership-heading h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

#leadership .leadership-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

#leadership .leadership-photo-card {
  margin: 0;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(218, 177, 94, 0.22);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 18px 42px rgba(0,0,0,0.2);
}

#leadership .leadership-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

#leadership .leadership-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#leadership .leadership-cards .capability-card {
  min-height: 0;
  height: auto;
  padding: 20px;
  grid-template-columns: 42px 1fr;
  gap: 12px 14px;
  align-content: start;
}

#leadership .leadership-cards .capability-card h3 {
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1.15;
}

#leadership .leadership-cards .capability-card p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  #leadership .leadership-topline {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  #leadership .leadership-photo-card {
    height: 190px;
  }

  #leadership .leadership-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #leadership.section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #leadership .leadership-topline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #leadership .leadership-photo-card {
    width: min(100%, 320px);
    height: 210px;
  }

  #leadership .leadership-cards {
    grid-template-columns: 1fr;
  }
}


/* v9 final photo sizing fix: no full-width images in content sections */
#leadership.section-pad { padding-top: 68px; padding-bottom: 68px; }
#leadership .leadership-topline {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  gap: 24px !important;
  align-items: start !important;
  margin-bottom: 24px !important;
}
#leadership .leadership-heading { margin: 0 !important; max-width: 780px !important; }
#leadership .leadership-heading h2 { max-width: 760px !important; margin-bottom: 16px !important; }
#leadership .leadership-heading p:not(.eyebrow) { max-width: 700px !important; margin-bottom: 0 !important; }
#leadership .leadership-photo-card {
  width: 220px !important;
  max-width: 220px !important;
  height: 220px !important;
  margin: 8px 0 0 auto !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  border: 1px solid rgba(218, 177, 94, 0.22) !important;
  background: rgba(255,255,255,0.05) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.2) !important;
}
#leadership .leadership-photo-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 24% !important;
}
#leadership .leadership-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
#leadership .leadership-cards .capability-card {
  min-height: 0 !important;
  height: auto !important;
  padding: 20px !important;
}
.work-photo img {
  min-height: 0 !important;
  height: 360px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
}
@media (max-width: 1050px) {
  #leadership .leadership-topline { grid-template-columns: minmax(0, 1fr) 180px !important; }
  #leadership .leadership-photo-card { width: 180px !important; max-width: 180px !important; height: 180px !important; }
  #leadership .leadership-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .work-photo img { height: 320px !important; }
}
@media (max-width: 760px) {
  #leadership.section-pad { padding-top: 56px; padding-bottom: 56px; }
  #leadership .leadership-topline { grid-template-columns: 1fr !important; }
  #leadership .leadership-photo-card { width: 180px !important; max-width: 180px !important; height: 180px !important; margin: 0 !important; }
  #leadership .leadership-cards { grid-template-columns: 1fr !important; }
  .work-photo img { height: 260px !important; }
}


/* v10 final: every content photo card is square and capped. No wide banner photos. */
.how-work-section {
  padding-top: 74px !important;
  padding-bottom: 74px !important;
}

.how-work-section .how-work-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 460px) 360px !important;
  gap: 36px !important;
  align-items: start !important;
  justify-content: center !important;
}

.how-work-section .principles-card {
  width: 100% !important;
  max-width: 460px !important;
  min-height: 0 !important;
}

.how-work-section .work-photo {
  width: 360px !important;
  height: 360px !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  border: 1px solid rgba(218, 177, 94, 0.22) !important;
  background: rgba(255,255,255,0.05) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22) !important;
}

.how-work-section .work-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center 24% !important;
  display: block !important;
}

@media (max-width: 1050px) {
  .how-work-section .how-work-grid {
    grid-template-columns: 1fr !important;
    justify-content: start !important;
  }

  .how-work-section .principles-card {
    max-width: 620px !important;
  }

  .how-work-section .work-photo {
    width: 320px !important;
    height: 320px !important;
  }
}

@media (max-width: 760px) {
  .how-work-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .how-work-section .work-photo {
    width: min(100%, 280px) !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}
