:root {
  --navy: #0e285f;
  --navy-deep: #081633;
  --navy-soft: #173a72;
  --steel: #3a6f97;
  --sky: #a9c3d6;
  --paper: #eef3f7;
  --white: #ffffff;
  --text: #10213e;
  --muted: #60718f;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 60px rgba(3, 13, 31, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 22, 51, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255,255,255,0.08);
}

.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255,255,255,0.08);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: stretch;
  overflow: clip;
  background: var(--navy-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,22,51,0.90) 0%, rgba(8,22,51,0.72) 36%, rgba(8,22,51,0.28) 68%, rgba(8,22,51,0.55) 100%),
    linear-gradient(180deg, rgba(8,22,51,0.18) 0%, rgba(8,22,51,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 48px;
  padding-top: 88px;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker,
.card-label,
.panel-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow { color: var(--sky); }
.hero-copy h1,
.section-title,
.hero-card h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
}

.hero-text,
.section-intro,
.contact-card p,
.service-card p,
.pillar-card p,
.list-panel li,
.site-footer p {
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
}

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

.hero-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.card-label { color: rgba(255,255,255,0.64); }
.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-card-grid div,
.service-card,
.list-panel,
.pillar-card,
.contact-card {
  border-radius: var(--radius);
}

.hero-card-grid div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,22,51,0.36);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: linear-gradient(180deg, var(--paper), #ffffff 55%);
}

.section-dark {
  background: linear-gradient(180deg, #09204b 0%, #081633 100%);
}

.section-contact {
  background: linear-gradient(180deg, #ffffff 0%, #f2f6fa 100%);
}

.section-kicker { color: var(--steel); }
.section-kicker.alt { color: var(--sky); }
.section-title {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
  color: var(--text);
  max-width: 780px;
}

.section-title.light,
.section-intro.light { color: var(--white); }

.section-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.service-card {
  padding: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(16,33,62,0.08);
  box-shadow: var(--shadow);
}

.service-card h3,
.pillar-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.list-panel {
  margin-top: 28px;
  padding: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.panel-label { color: rgba(255,255,255,0.66); }
.list-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.list-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.92);
}

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

.why-side {
  display: grid;
  gap: 20px;
}

.side-image {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
}

.pillars {
  display: grid;
  gap: 16px;
}

.pillar-card {
  padding: 24px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.pillar-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--steel);
}

.pillar-card p {
  margin: 10px 0 0;
  color: #4b607f;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.8);
}

.email-link {
  display: inline-flex;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sky);
  word-break: break-word;
}

.service-area {
  margin-top: 16px;
  font-size: 0.95rem;
}

.site-footer {
  padding: 28px 0;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
}

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

.footer-inner img {
  width: 220px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  max-width: 480px;
  text-align: right;
}

@media (max-width: 960px) {
  .header-inner,
  .hero-content,
  .services-grid,
  .why-grid,
  .contact-wrap,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 6px;
  }

  .brand img { width: min(280px, 78vw); }
  .hero { min-height: auto; }
  .hero-content {
    padding-top: 118px;
    padding-bottom: 48px;
    align-items: start;
  }

  .hero-card-grid { grid-template-columns: 1fr; }
  .contact-card { margin-top: 6px; }
  .footer-inner p { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .hero-content { gap: 22px; }
  .hero-copy h1 { line-height: 0.98; }
  .button,
  .button-outline,
  .button-ghost { width: 100%; }
  .hero-actions { flex-direction: column; }
}
