:root {
  --navy: #12324A;
  --petrol: #2B6C73;
  --sage: #7FA48A;
  --warmwhite: #FAF9F7;
  --anthracite: #2D3748;
  --sand: #E8DCC9;
  --white: #FFFFFF;

  --radius-sm: 14px;
  --radius-md: 20px;
  --shadow: 0 18px 45px rgba(18, 50, 74, 0.10);

  --container: 1200px;
  --section: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--anthracite);
  background: var(--warmwhite);
  font-size: 16px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 50, 74, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  width: 180px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-weight: 600;
  color: var(--navy);
}

.nav a:hover {
  color: var(--petrol);
}

.header-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--petrol);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: 0.2s ease;
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--navy);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1.5px solid var(--petrol);
  color: var(--petrol);
  border-radius: var(--radius-sm);
  font-weight: 700;
  background: var(--white);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  color: var(--navy);
}

.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--petrol);
  background: rgba(127, 164, 138, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 20px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.45rem;
}

.lead {
  font-size: 1.2rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section {
  padding: var(--section) 0;
}

.section-soft {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  border-radius: 18px;
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card ul,
.content-list {
  padding-left: 20px;
  margin: 20px 0 0;
}

.card li,
.content-list li {
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.split img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta {
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.cta h2,
.cta p {
  color: var(--white);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-note {
  font-size: 0.92rem;
  opacity: 0.85;
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 86px 0 auto 0;
    background: var(--warmwhite);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(18, 50, 74, 0.08);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .cta {
    padding: 40px 28px;
  }
}