
:root {
  --navy: #07265e;
  --navy-2: #0c367f;
  --gold: #c89a52;
  --text: #142238;
  --muted: #667286;
  --soft: #f4f7fb;
  --line: #e2e8f1;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 260px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn.small { padding: 10px 18px; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-glass {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/service-partnerships.png') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,20,50,0.92) 0%, rgba(4,20,50,0.84) 48%, rgba(4,20,50,0.58) 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 54px;
  align-items: center;
}
.hero-copy {
  color: var(--white);
}
.hero-logo {
  width: min(560px, 100%);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.97);
  padding: 18px 22px;
  border-radius: 8px;
}
.eyebrow, .section-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1, h2 {
  margin: 0;
  letter-spacing: -0.03em;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  max-width: 760px;
}
.lead {
  max-width: 720px;
  margin: 22px 0 30px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-side {
  display: grid;
  gap: 16px;
}
.info-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 22px 24px;
  color: var(--white);
  backdrop-filter: blur(10px);
}
.info-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
}
.info-card strong {
  font-size: 1.08rem;
}
.section {
  padding: 90px 0;
}
.section-soft {
  background: var(--soft);
}
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.gold { color: var(--gold); }
.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
}
.text-block p,
.text-muted {
  color: var(--muted);
  font-size: 1.08rem;
}
.services-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(10, 24, 52, 0.06);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-body {
  padding: 22px;
}
.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  color: var(--navy);
}
.service-body p {
  margin: 0;
  color: var(--muted);
}
.approach-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-step {
  border-top: 1px solid rgba(255,255,255,0.30);
  padding-top: 20px;
}
.approach-step span {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
}
.approach-step h3 {
  margin: 14px 0 8px;
  font-size: 1.3rem;
}
.approach-step p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 52px;
  align-items: end;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: var(--white);
}
.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 12px;
  font-size: 1.08rem;
}
.contact-card a {
  color: var(--navy);
  font-weight: 800;
}
.contact-card p {
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 1024px) {
  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .brand img { width: 210px; }
  .hero { padding: 74px 0 68px; }
  .section { padding: 72px 0; }
  .services-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .footer-bar {
    flex-direction: column;
  }
}
