:root {
  --ink: #07111d;
  --ink-soft: #233246;
  --blue: #0070c0;
  --blue-dark: #064d80;
  --blue-pale: #eef7fd;
  --paper: #ffffff;
  --paper-soft: #f6f8fb;
  --line: #d9e2ec;
  --shadow: 0 22px 60px rgba(7, 17, 29, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,112,192,.18);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(7,17,29,.08); }
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 62px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: .12em;
}
.brand-copy small {
  max-width: 260px;
  margin-top: 5px;
  color: #566272;
  font-size: .72rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  position: relative;
  padding: 11px 12px;
  color: #26384a;
  font-size: .94rem;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at 75% 22%, rgba(0,112,192,.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0,112,192,.12);
  border-radius: 50%;
  top: -260px;
  right: -130px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #82c6f4; }
.hero h1 {
  margin: 0;
  font-family: "Calibri Light", Calibri, "Segoe UI", sans-serif;
  font-size: clamp(4rem, 9vw, 7.7rem);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 300;
}
.hero-lead {
  margin: 28px 0 2px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.credential {
  margin: 0;
  color: #5a6878;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(7,17,29,.18);
}
.button-primary:hover { background: #111f30; }
.button-ghost {
  border-color: rgba(0,112,192,.35);
  color: var(--blue-dark);
  background: rgba(255,255,255,.75);
}
.button-ghost:hover { box-shadow: 0 10px 25px rgba(0,112,192,.10); }

.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.logo-stage {
  position: relative;
  width: min(100%, 535px);
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
}
.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.logo-stage::before {
  inset: 3%;
  border: 1px solid rgba(0,112,192,.22);
}
.logo-stage::after {
  inset: 11%;
  background: radial-gradient(circle, rgba(0,112,192,.06), rgba(255,255,255,0) 68%);
}
.logo-ring {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  border: 1px dashed rgba(0,112,192,.22);
  animation: spin 28s linear infinite;
}
.logo-stage img {
  position: relative;
  z-index: 2;
  width: 94%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(7,17,29,.13));
}
.hero-note {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 4;
  min-width: 255px;
  padding: 18px 20px;
  border: 1px solid rgba(0,112,192,.28);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.hero-note span { display: block; color: #708090; font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; }
.hero-note strong { display: block; margin-top: 4px; font-size: 1.02rem; }
.hero-line {
  width: min(calc(100% - 40px), var(--container));
  height: 1px;
  margin: 56px auto 0;
  background: linear-gradient(90deg, var(--blue), rgba(0,112,192,.12), transparent);
}
@keyframes spin { to { transform: rotate(360deg); } }

.section { padding: 92px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-heading h2,
.profile h2,
.contact h2 {
  margin: 0;
  font-family: "Calibri Light", Calibri, "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 300;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #cfe3f2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f8fbfd);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: rgba(0,112,192,.07);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,112,192,.55);
  box-shadow: 0 18px 40px rgba(7,17,29,.09);
}
.service-card span { color: var(--blue); font-size: .78rem; letter-spacing: .1em; }
.service-card h3 { margin: 0; font-size: 1.75rem; font-weight: 400; }

.strategy {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.strategy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
}
.strategy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 26px;
}
.strategy-panel,
.coverage {
  border: 1px solid rgba(130,198,244,.24);
  border-radius: var(--radius-lg);
}
.strategy-panel {
  padding: clamp(34px, 5vw, 62px);
  background: linear-gradient(145deg, rgba(0,112,192,.16), rgba(255,255,255,.02));
}
.strategy-panel h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: .96;
  font-weight: 300;
  letter-spacing: -.05em;
}
.strategy-panel p:last-child {
  max-width: 590px;
  margin: 32px 0 0;
  color: #c5d5e4;
  font-size: 1.02rem;
  letter-spacing: .045em;
}
.coverage {
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255,255,255,.035);
}
.coverage-kicker { margin: 0 0 6px; color: #88a4bb; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.coverage h3 { margin: 0 0 28px; font-size: 2rem; font-weight: 400; }
.location-list { display: flex; flex-wrap: wrap; gap: 9px; }
.location-list span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #d7e3ed;
  background: rgba(255,255,255,.04);
  font-size: .84rem;
}

.profile { background: var(--paper-soft); }
.profile-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}
.profile-intro { position: sticky; top: 118px; }
.profile-contact { display: grid; gap: 9px; margin-top: 28px; }
.profile-contact a { color: var(--blue-dark); font-weight: 700; overflow-wrap: anywhere; }
.qualifications {
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--line);
}
.qualifications ul { margin: 0; padding: 0; list-style: none; }
.qualifications li {
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}
.qualifications li:last-child { border-bottom: 0; }
.alumni-wrap { margin-top: 54px; }
.alumni-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 38px;
  padding: 28px 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(7,17,29,.05);
}
.alumni-card h3 { margin: 0; font-size: 2rem; font-weight: 400; }
.alumni-card img { max-height: 120px; width: 100%; object-fit: contain; }

.team { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(7,17,29,.08); }
.initial {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(0,112,192,.36);
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 1.15rem;
  letter-spacing: .08em;
}
.team-card p { margin: 28px 0 2px; color: #6a7787; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.team-card h3 { margin: 0; font-size: 1.52rem; font-weight: 400; line-height: 1.1; }
.team-card a { margin-top: 18px; color: var(--blue-dark); font-weight: 700; }

.contact {
  padding-top: 24px;
  background: white;
}
.contact-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  padding: clamp(32px, 5vw, 58px);
  color: white;
  background:
    radial-gradient(circle at 12% 5%, rgba(0,112,192,.45), transparent 35%),
    var(--ink);
  border-radius: 32px;
  overflow: hidden;
}
.contact-brand > p:last-child { margin: 12px 0 0; color: #c9d5df; }
.contact-logo {
  width: 160px;
  height: 104px;
  margin-bottom: 30px;
}
.contact-logo img { width: 100%; height: 100%; object-fit: contain; filter: invert(1) grayscale(1) brightness(3); }
.contact-details { display: grid; align-content: center; }
.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-row:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.contact-row span { color: #8fb2cd; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-row a,
.contact-row p { margin: 0; overflow-wrap: anywhere; }
.contact-row a { font-weight: 700; }

.site-footer { padding: 30px 0 40px; background: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-inner > div { display: grid; }
.footer-inner strong { letter-spacing: .12em; }
.footer-inner span { color: #6a7787; font-size: .82rem; }
.footer-inner > a { color: var(--blue-dark); font-weight: 700; }

.reveal { opacity: 1; transform: none; }
.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}
.reveal.reveal-ready.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal.reveal-ready { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 13px 12px; }
  .main-nav a::after { display: none; }
  .hero-grid, .strategy-grid, .profile-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-art { min-height: 430px; }
  .service-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-intro { position: static; }
  .alumni-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 48px; height: 42px; }
  .brand-copy small { display: none; }
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: clamp(3.25rem, 19vw, 5.5rem); }
  .hero-art { min-height: 340px; }
  .hero-note { position: static; width: 100%; margin-top: -12px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .section { padding: 70px 0; }
  .service-grid, .team-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 150px; }
  .team-card { min-height: 270px; }
  .strategy-panel h2 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .contact-shell { padding: 28px 22px; border-radius: 22px; }
  .contact-row { grid-template-columns: 1fr; gap: 5px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
