:root{
  --bg: #f4f9fc;
  --bg2: #eaf4fb;
  --card: rgba(255,255,255,.92);
  --text: #18334d;
  --muted: #5b7185;
  --primary: #1f78b4;
  --primary-dark: #155986;
  --accent: #8ed0f2;
  --border: rgba(24,51,77,.12);
  --shadow: 0 14px 36px rgba(20, 52, 82, 0.10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(142,208,242,.26), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,253,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(31, 120, 180, .10);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  text-align: center;
}

.brand-text p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav a.active,
.nav a:hover {
  background: rgba(31,120,180,.10);
  text-decoration: none;
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--primary-dark);
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(20,52,82,.06);
  color: var(--text);
  font-weight: 700;
  font-size: .95rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(234,244,251,.98));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 14px;
}

.hero-images .image-stack {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  background: #dfeaf3;
}

.hero-images .image-stack:nth-child(1),
.hero-images .image-stack:nth-child(3) {
  transform: translateY(12px);
}

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

.section {
  padding: 22px 0 56px;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--primary-dark);
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

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

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31,120,180,.06);
  border: 1px solid rgba(31,120,180,.10);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: #dfeaf3;
}

.content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.content h2,
.content h3,
.content h4 {
  color: var(--primary-dark);
}

.content h2 { margin-top: 0; }
.content p, .content li {
  color: var(--text);
}

.content .muted {
  color: var(--muted);
}

.footer {
  margin-top: 16px;
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: .95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 10px;
}

.hr {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
  border: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-box,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .hero {
    padding-top: 34px;
  }

  .content,
  .card {
    padding: 18px;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-images .image-stack:nth-child(1),
  .hero-images .image-stack:nth-child(3) {
    transform: none;
  }
}