@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #f2f4f6;
  --surface: #ffffff;
  --ink: #111315;
  --muted: #5a646e;
  --line: #d9dde2;
  --accent: #0f6b5f;
  --accent-2: #c27b22;
  --gradient: linear-gradient(135deg, #0f6b5f 0%, #1f2f5e 52%, #c27b22 100%);
  --shadow-lg: 0 25px 60px rgba(17, 19, 21, 0.15);
  --shadow-sm: 0 10px 25px rgba(17, 19, 21, 0.08);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1220px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #f8fafb 0%, #f2f4f6 42%, #e9edf1 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
  background: rgba(242, 244, 246, 0.9);
  border-bottom: 1px solid rgba(217, 221, 226, 0.7);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-title {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: #23303d;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  color: #27313a;
  border-color: #aeb7c0;
  background: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 9px;
}

.hero {
  padding: 72px 0 36px;
}

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

.hero-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-content {
  padding: clamp(26px, 4vw, 58px);
  background: var(--gradient);
  color: #fff;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.92;
}

.hero h1 {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  line-height: 1.15;
  margin: 14px 0 14px;
}

.hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-image {
  min-height: 100%;
}

.hero-image img {
  width: 100%;
  min-height: 260px;
  max-height: 420px;
  display: block;
  object-fit: contain;
}

.metrics {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.metric-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  border: 1px solid var(--line);
}

.metric-card strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
}

.section {
  padding: 70px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 2.6vw, 2.7rem);
  line-height: 1.2;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

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

.band {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #0d2e4d 0%, #1f4b60 55%, #9b6b30 100%);
  color: #fff;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  position: relative;
}

.band::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.band-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  position: relative;
}

.timeline {
  border-left: 2px solid var(--line);
  margin-left: 8px;
  padding-left: 18px;
}

.timeline-item {
  margin-bottom: 18px;
}

.timeline-item h4 {
  margin: 0 0 4px;
}

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

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
}

.news-item time {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.contact-card h3 {
  margin-top: 0;
}

.address {
  white-space: pre-line;
  color: var(--muted);
}

.policy {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.policy h1,
.policy h2,
.policy h3 {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
}

.policy h2 {
  margin-top: 30px;
}

.policy p,
.policy li {
  color: #263342;
}


.site-footer {
  margin-top: 38px;
  padding: 0;
  border-top: 1px solid var(--line);
  background: #f5f7f9;
  font-size: 0.97rem;
}

.footer-links {
  display: flex;
  gap: 10px;
  font-weight: 500;
}

.footer-links a {
  color: #24303d;
  opacity: 0.92;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  will-change: transform;
}

@media (max-width: 1080px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .band-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 247, 249, 0.98);
    display: none;
  }

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

  .main-nav ul {
    padding: 14px 4%;
    flex-direction: column;
    gap: 12px;
  }

  .header-cta .btn {
    display: none;
  }

  .cards,
  .metrics {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

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