:root {
  --bg: #f4f7f2;
  --surface: #ffffff;
  --ink: #112038;
  --muted: #50607a;
  --brand: #0c7b93;
  --brand-strong: #0d5f75;
  --accent: #f2a541;
  --line: #d8e2ea;
  --shadow: 0 12px 30px rgba(17, 32, 56, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(12, 123, 147, 0.12), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(242, 165, 65, 0.12), transparent 25%),
    var(--bg);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 242, 0.8);
  border-bottom: 1px solid rgba(216, 226, 234, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 54px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-image-wrap {
  margin: 0;
  background: linear-gradient(160deg, #fff, #f4fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-kicker {
  color: var(--brand-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-family: "Merriweather", serif;
}

.hero-content p {
  color: var(--muted);
  max-width: 54ch;
}

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

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.hero-card {
  background: linear-gradient(160deg, #fff, #f8fcff);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  animation: rise 0.8s ease both;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-shape-1 {
  width: 240px;
  height: 240px;
  right: -70px;
  top: 12px;
  background: rgba(12, 123, 147, 0.14);
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  left: -55px;
  bottom: 10px;
  background: rgba(242, 165, 65, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.stats article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.stats h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--brand-strong);
}

.stats p {
  margin: 7px 0 0;
  color: var(--muted);
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(12, 123, 147, 0.05), transparent);
  border-top: 1px solid rgba(216, 226, 234, 0.8);
  border-bottom: 1px solid rgba(216, 226, 234, 0.8);
}

.section-head p {
  margin: 0;
  font-weight: 700;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-head h2 {
  margin: 8px 0 22px;
  font-family: "Merriweather", serif;
}

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

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(17, 32, 56, 0.08);
}

.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(216, 226, 234, 0.9);
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  border-left: 4px solid var(--accent);
  background: #fffdf9;
  border-radius: 10px;
  padding: 14px 16px;
}

.timeline span {
  display: inline-block;
  color: var(--brand-strong);
  font-weight: 700;
  margin-bottom: 5px;
}

.timeline h3 {
  margin: 0;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  background: #0f243d;
  color: #dae4ef;
  margin-top: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 0;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 8px;
  color: #fff;
}

.site-footer p {
  margin: 0 0 7px;
}

@media (max-width: 880px) {
  .hero-grid,
  .cards.three,
  .cards.two,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-side {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .menu-btn {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
  }

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

  .nav-links a {
    padding: 12px 4vw;
  }

  .hero-grid,
  .cards.three,
  .cards.two,
  .stats,
  .footer-grid,
  .hero-side {
    grid-template-columns: 1fr;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
