:root {
  --blue: #0f68b3;
  --blue-dark: #0a4f8b;
  --blue-deep: #092a4d;
  --blue-soft: #eef6fc;
  --ink: #111827;
  --muted: #536173;
  --line: #dce5ed;
  --soft: #f6f9fb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(15, 45, 75, .1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 229, 237, .9);
  box-shadow: 0 5px 20px rgba(15, 45, 75, .06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 88px;
  background:
    radial-gradient(circle at 88% 22%, rgba(15, 104, 179, .14), transparent 31rem),
    linear-gradient(135deg, var(--soft), #fff 62%);
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(15, 104, 179, .13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  right: -150px;
  bottom: -250px;
  width: 580px;
  height: 580px;
}

.hero-shape-two {
  right: 120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eyebrow-icon {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  padding: 0 7px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.hero-copy > p {
  max-width: 690px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-copy > p + p {
  margin-top: 9px;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
}

.button-secondary:hover {
  background: var(--blue-soft);
}

.fact-row {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 18px;
  color: #526174;
  font-size: 13px;
  font-weight: 650;
}

.fact-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fact-row i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-card {
  overflow: hidden;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(15, 104, 179, .16);
  border-radius: 20px;
  box-shadow: 0 28px 65px rgba(15, 45, 75, .15);
}

.hero-card-image {
  overflow: hidden;
  height: 360px;
  background: var(--blue-soft);
  border-radius: 14px;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card-content {
  padding: 20px 5px 4px;
}

.hero-card-content > span,
.area-type,
.contact-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 6px 0 9px;
  font-size: 25px;
  letter-spacing: -.02em;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  padding: 100px 0;
  scroll-margin-top: 70px;
}

.section-soft {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 90px;
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 820;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.text-column p,
.person-grid > div:last-child > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.text-column p + p,
.person-grid > div:last-child > p + p {
  margin-top: 18px;
}

.text-column .lead,
.person-grid .lead {
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.55;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

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

.area-card {
  display: flex;
  min-height: 385px;
  padding: 30px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(15, 45, 75, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.area-card-featured {
  border-top: 4px solid var(--blue);
}

.area-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 14px;
}

.area-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-card h3 {
  margin: 8px 0 13px;
  font-size: 28px;
  letter-spacing: -.025em;
}

.area-card p {
  color: var(--muted);
  line-height: 1.72;
}

.area-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 750;
}

.area-card a span {
  transition: transform .2s ease;
}

.area-card a:hover span {
  transform: translateX(4px);
}

.person-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 70px;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 80px;
}

.approach-intro .lead {
  margin-top: 25px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.55;
}

.approach-intro > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.approach-points {
  display: grid;
  gap: 12px;
}

.approach-points article {
  display: grid;
  padding: 24px;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.approach-points article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.approach-points h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.approach-points p,
.perspective-box p {
  color: var(--muted);
  line-height: 1.7;
}

.perspective-section {
  background: var(--blue-soft);
}

.perspective-box {
  display: grid;
  padding: 55px;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 75px;
  background: var(--white);
  border: 1px solid rgba(15, 104, 179, .16);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.perspective-box p + p {
  margin-top: 17px;
}

.person-image {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.person-image img {
  width: 100%;
  border-radius: 11px;
}

.person-grid h2 {
  margin-bottom: 26px;
}

.principles {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.principles div {
  padding: 17px;
  background: var(--blue-soft);
  border-radius: 10px;
}

.principles strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 18px;
}

.principles span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-section {
  padding: 85px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-deep));
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.contact-label {
  color: #b9dcf6;
}

.contact-section h2 {
  margin-top: 10px;
}

.contact-section p {
  margin-top: 15px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  transition: background .2s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, .15);
}

.contact-link span {
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 16px;
}

.site-footer {
  padding: 60px 0 22px;
  color: #d1d9e2;
  background: #17212e;
}

.footer-grid {
  display: grid;
  padding-bottom: 45px;
  grid-template-columns: 1.2fr .8fr 1.2fr;
  gap: 50px;
}

.footer-brand img {
  width: 200px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 5px;
}

.footer-brand p {
  margin-top: 14px;
  color: #aeb9c7;
}

.site-footer h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 15px;
}

.site-footer p,
.site-footer address {
  color: #aeb9c7;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  padding-top: 21px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #909dac;
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .hero-grid,
  .split-layout,
  .approach-layout,
  .person-grid,
  .contact-box,
  .perspective-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-card {
    max-width: 560px;
  }

  .split-layout,
  .approach-layout,
  .person-grid,
  .contact-box,
  .perspective-box {
    gap: 42px;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 0;
  }

  .perspective-box {
    padding: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 155px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(15, 45, 75, .12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding: 112px 0 65px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .fact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-card-image {
    height: 300px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 35px;
    text-align: left;
  }

  .area-card {
    padding: 24px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .perspective-box {
    padding: 25px;
  }

  .contact-section {
    padding: 65px 0;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
