:root {
  --navy: #20265f;
  --navy-2: #273774;
  --blue: #078bc8;
  --blue-2: #3157a3;
  --orange: #ff7a00;
  --orange-2: #ff9a2f;
  --purple: #3a2a84;
  --ink: #17213f;
  --muted: #65708a;
  --paper: #f4f6fb;
  --paper-2: #fbfcff;
  --white: #ffffff;
  --line: rgba(32, 38, 95, 0.12);
  --shadow: 0 26px 70px rgba(28, 37, 92, 0.16);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
section { scroll-margin-top: 80px; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.skip-link { position: fixed; left: 14px; top: -60px; z-index: 999; background: var(--orange); color: var(--navy); padding: 10px 14px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(32,38,95,0.10);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 12px 35px rgba(20, 28, 78, 0.10); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); background: var(--white); padding: 10px 14px; border-radius: 18px; border: 1px solid rgba(32,38,95,.08); box-shadow: 0 8px 24px rgba(32,38,95,.08); }

.brand-logo {
  display: block;
  width: 176px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.brand-mark { width: 43px; height: 43px; border-radius: 12px; display: grid; place-items: center; font-weight: 900; letter-spacing: -1px; background: var(--orange); color: var(--navy); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.04rem; letter-spacing: .01em; }
.brand-copy small { margin-top: 6px; color: rgba(32,38,95,.62); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 24px; color: var(--navy); font-size: .92rem; font-weight: 700; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--orange); }
.nav-cta { padding: 10px 15px; border: 1px solid rgba(7,139,200,.24); border-radius: 999px; background: rgba(7,139,200,.08); color: var(--navy) !important; }
.nav-cta:hover { border-color: rgba(255,122,0,.42); background: rgba(255,122,0,.12); color: var(--orange) !important; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); display: block; margin: 5px 0; border-radius: 2px; }

.hero {
  min-height: 820px;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 82% 22%, rgba(7, 139, 200, .34), transparent 35%),
    linear-gradient(135deg, #171d52 0%, #20265f 52%, #075b8c 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 120px; background: linear-gradient(to top, rgba(0,0,0,.17), transparent); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .16; }
.hero-glow-one { width: 380px; height: 380px; background: var(--orange); right: -180px; top: 120px; }
.hero-glow-two { width: 280px; height: 280px; background: #078bc8; left: -140px; bottom: 20px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 76px; }
.eyebrow { margin: 0 0 16px; color: var(--orange-2); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: #bd5d00; }
.hero h1 { margin: 0; font-size: clamp(4rem, 8.4vw, 7.5rem); line-height: .9; letter-spacing: -.065em; font-weight: 900; }
.hero-lead { margin: 28px 0 18px; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.15; font-weight: 650; letter-spacing: -.03em; }
.hero-lead span { color: var(--orange-2); }
.hero-text { max-width: 670px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.03rem; letter-spacing: .01em; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 999px; font-weight: 800; font-size: .92rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--navy); box-shadow: 0 12px 34px rgba(255,122,0,.20); }
.btn-primary:hover { background: #ff9222; box-shadow: 0 16px 36px rgba(255,122,0,.28); }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.09); }
.credential-line { margin-top: 28px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.6); font-size: .84rem; }
.credential-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,122,0,.12); flex: 0 0 auto; }

.hero-visual { position: relative; min-height: 530px; }
.hero-main-photo { position: absolute; margin: 0; width: 390px; height: 460px; right: 38px; top: 22px; border-radius: 34px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.14); }
.hero-main-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); }
.hero-mini { position: absolute; margin: 0; width: 176px; height: 130px; overflow: hidden; border-radius: 20px; border: 6px solid rgba(32,38,95,.94); box-shadow: 0 20px 45px rgba(0,0,0,.3); }
.hero-mini img { width: 100%; height: 100%; object-fit: cover; }
.hero-mini-one { left: 0; top: 40px; transform: rotate(-4deg); }
.hero-mini-two { left: 8px; bottom: 36px; transform: rotate(3deg); }
.hero-stamp { position: absolute; right: 0; bottom: 2px; width: 142px; height: 142px; background: var(--orange); color: var(--navy); border-radius: 50%; display: grid; place-content: center; text-align: center; line-height: 1; box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.hero-stamp strong { font-size: 2.35rem; letter-spacing: -.06em; }
.hero-stamp span { margin-top: 7px; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; line-height: 1.25; }

.intro { padding: 115px 0 100px; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 92px; align-items: start; }
.section-heading h2, .section-title-row h2, .history-intro h2, .about-final-copy h2 { margin: 0; font-size: clamp(2.45rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.055em; color: var(--navy); }
.intro-copy { font-size: 1.08rem; color: #465363; }
.intro-copy p { margin: 0 0 20px; }
.intro-copy strong { color: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid rgba(32,38,95,.14); border-bottom: 1px solid rgba(32,38,95,.14); }
.stats-grid article { padding: 30px 24px; border-right: 1px solid rgba(32,38,95,.12); }
.stats-grid article:last-child { border-right: 0; }
.stats-grid strong { display: block; color: var(--navy); font-size: 1.6rem; letter-spacing: -.04em; }
.stats-grid span { display: block; margin-top: 7px; color: var(--muted); font-size: .86rem; line-height: 1.35; }

.areas { padding: 110px 0 120px; background: var(--navy); color: white; }
.section-title-row { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; margin-bottom: 52px; }
.areas .section-title-row h2 { color: white; }
.section-title-row > p { margin: 0; color: rgba(255,255,255,.62); max-width: 430px; justify-self: end; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card { min-width: 0; border-radius: var(--radius); overflow: hidden; background: #28336f; border: 1px solid rgba(255,255,255,.09); box-shadow: 0 18px 50px rgba(0,0,0,.14); }
.area-image { height: 270px; overflow: hidden; background: #1b2259; }
.area-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.area-image-focus img { object-position: center 35%; }
.area-card:hover .area-image img { transform: scale(1.035); }
.area-content { padding: 26px 26px 30px; }
.area-content > span { font-size: .72rem; font-weight: 900; color: var(--orange); letter-spacing: .14em; }
.area-content h3 { margin: 9px 0 11px; font-size: 1.35rem; letter-spacing: -.025em; }
.area-content p { margin: 0; color: rgba(255,255,255,.66); font-size: .92rem; line-height: 1.55; }

.quote-band { padding: 50px 0; background: var(--orange); color: var(--navy); }
.quote-band .container { display: flex; align-items: baseline; justify-content: space-between; gap: 30px; }
.quote-band p { margin: 0; font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -.065em; line-height: 1; }
.quote-band span { font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.projects { padding: 120px 0; background: #f7f8fc; }
.projects-heading > p { color: var(--muted); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.project-card { min-height: 290px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; display: grid; grid-template-rows: auto 1fr auto; gap: 20px; box-shadow: 0 12px 30px rgba(32,38,95,.06); transition: transform .23s ease, border-color .23s ease, box-shadow .23s ease; }
.project-card:hover { transform: translateY(-5px); border-color: rgba(7,139,200,.40); box-shadow: 0 22px 45px rgba(32,38,95,.10); }
.project-featured { grid-column: 1 / -1; min-height: 320px; background: linear-gradient(135deg, #20265f, #078bc8); color: white; border-color: rgba(255,255,255,.08); }
.project-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: #eef7fb; color: var(--blue); font-weight: 900; letter-spacing: -.03em; }
.project-featured .project-icon { background: var(--orange); color: var(--navy); }
.project-card span { font-size: .7rem; letter-spacing: .14em; font-weight: 900; color: #ad5b13; }
.project-featured span { color: var(--orange-2); }
.project-card h3 { margin: 8px 0 10px; font-size: 1.8rem; letter-spacing: -.04em; color: var(--navy); }
.project-featured h3 { color: white; font-size: 2.4rem; }
.project-card p { margin: 0; color: var(--muted); max-width: 750px; }
.project-featured p { color: rgba(255,255,255,.68); font-size: 1.02rem; }
.project-card b { display: flex; justify-content: space-between; align-items: center; color: var(--blue); font-size: .86rem; border-top: 1px solid var(--line); padding-top: 17px; }
.project-card b i { font-style: normal; font-size: 1.15rem; }
.project-featured b { color: var(--orange-2); border-color: rgba(255,255,255,.12); }

.history { padding: 120px 0; background: var(--navy); color: white; }
.history-intro { max-width: 820px; margin-bottom: 54px; }
.history-intro h2 { color: white; }
.history-intro > p:last-child { color: rgba(255,255,255,.62); font-size: 1.04rem; max-width: 700px; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: repeat(3, 220px); gap: 18px; }
.story { position: relative; min-height: 0; margin: 0; border-radius: 26px; overflow: hidden; background: #29356f; }
.story-tall { grid-row: 1 / span 3; min-height: 0; }
.story img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,25,72,.88) 0%, rgba(20,25,72,.25) 52%, transparent 72%); }
.story figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.story figcaption strong { display: block; font-size: 1.25rem; letter-spacing: -.02em; }
.story figcaption span { display: block; margin-top: 5px; color: rgba(255,255,255,.66); font-size: .86rem; max-width: 540px; }
.story-grid .story:nth-child(2), .story-grid .story:nth-child(3), .story-grid .story:nth-child(4) { grid-column: 2; }

.about-final { padding: 120px 0; background: var(--paper); }
.about-final-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.about-portrait { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: .85; background: #d8d8d8; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-final-copy p { color: #53606f; font-size: 1.02rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 30px; }
.about-tags span { padding: 9px 12px; border-radius: 999px; background: rgba(32,38,95,.07); color: var(--navy); font-size: .78rem; font-weight: 800; }
.dark-btn { min-width: 190px; }

.site-footer { background: #141943; color: white; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 70px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child > p { color: rgba(255,255,255,.55); max-width: 500px; font-size: .92rem; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 4px; color: var(--orange-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { color: rgba(255,255,255,.63); font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.42); font-size: .8rem; display: flex; justify-content: space-between; gap: 20px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav { gap: 15px; }
  .main-nav a:not(.nav-cta) { display: none; }
  .hero-grid { gap: 34px; }
  .hero-main-photo { width: 340px; height: 430px; right: 20px; }
  .hero-mini { width: 145px; height: 110px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .brand-logo { width: 142px; max-height: 50px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { height: 78px; }
  .brand-copy small { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 78px; left: 14px; right: 14px; padding: 16px; border-radius: 18px;
    background: #ffffff; border: 1px solid rgba(32,38,95,.10); box-shadow: 0 18px 50px rgba(0,0,0,.12);
    display: none; align-items: stretch; gap: 0;
  }
  .main-nav.open { display: grid; }
  .main-nav a, .main-nav a:not(.nav-cta) { display: block; padding: 12px 10px; }
  .nav-cta { margin-top: 8px; text-align: center; }

  .hero { min-height: auto; padding: 126px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 6rem); }
  .hero-visual { min-height: 500px; margin-top: 8px; }
  .hero-main-photo { width: min(78vw, 390px); height: 420px; right: 5vw; }
  .hero-mini-one { left: 0; top: 25px; }
  .hero-mini-two { left: 5px; bottom: 20px; }
  .hero-stamp { right: 0; bottom: 0; }

  .intro { padding: 82px 0 76px; }
  .intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article:nth-child(2) { border-right: 0; }
  .stats-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(32,38,95,.12); }

  .areas, .projects, .history, .about-final { padding: 82px 0; }
  .section-title-row { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .section-title-row > p { justify-self: start; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-image { height: 320px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: auto; }
  .quote-band .container { display: grid; gap: 16px; }
  .story-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .story, .story-tall, .story-grid .story:nth-child(3), .story-grid .story:nth-child(4) { grid-column: auto; grid-row: auto; min-height: 360px; }
  .story-tall { min-height: 540px; }
  .about-final-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-portrait { max-width: 500px; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .hero { padding-top: 116px; }
  .hero-lead { font-size: 1.6rem; }
  .hero-text { font-size: .91rem; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .credential-line { align-items: flex-start; }
  .hero-visual { min-height: 430px; }
  .hero-main-photo { width: 78vw; height: 360px; right: 0; }
  .hero-mini { width: 124px; height: 92px; border-width: 4px; }
  .hero-mini-two { bottom: 4px; }
  .hero-stamp { width: 116px; height: 116px; }
  .hero-stamp strong { font-size: 1.9rem; }
  .hero-stamp span { font-size: .63rem; }
  .section-heading h2, .section-title-row h2, .history-intro h2, .about-final-copy h2 { font-size: 2.45rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article { border-right: 0; border-bottom: 1px solid rgba(32,38,95,.12); }
  .stats-grid article:last-child { border-bottom: 0; }
  .area-image { height: 260px; }
  .project-card { padding: 24px; }
  .project-featured h3 { font-size: 2rem; }
  .story, .story-tall, .story-grid .story:nth-child(3), .story-grid .story:nth-child(4) { min-height: 400px; }
  .story-grid .story:nth-child(3) { min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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