* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #163445;
  background: #eef4f3;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }

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

.topbar {
  background: linear-gradient(90deg, #66c99a 0%, #1f94df 100%);
  color: #fff;
  font-size: 15px;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.sep { opacity: 0.7; margin: 0 8px; }

.site-header {
  background: #f3f7f7;
  border-bottom: 1px solid #d9e4e2;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-logo {
  width: auto;
  height: 58px;
  max-width: 320px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: #21485e;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
}
.nav-cta {
  background: #1f94df;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #21485e;
  margin: 5px 0;
}

.hero {
  padding: 56px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  border: 1px solid #cfe2dd;
  border-radius: 999px;
  padding: 10px 18px;
  color: #4eb987;
  font-weight: 700;
  margin-bottom: 24px;
  background: #f7fbfa;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero-copy p {
  font-size: 20px;
  color: #436173;
  margin: 0 0 20px;
  max-width: 740px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.button-primary {
  background: #1f94df;
  color: #fff;
}
.button-secondary {
  border: 1px solid #b9d7ef;
  color: #1f94df;
  background: #fff;
}

.hero-card {
  background: #fff;
  border: 1px solid #d9e4e2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(25, 58, 73, 0.08);
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.card-block {
  padding: 24px 26px;
  border-top: 1px solid #e5eeec;
}
.card-label {
  color: #1778bd;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}
.team-text {
  margin: 0 0 16px;
  font-size: 18px;
  color: #284759;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.team-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 18px;
}
.care-list {
  margin: 0;
  padding-left: 20px;
  color: #284759;
  font-size: 18px;
}
.care-list li + li { margin-top: 8px; }

@media (max-width: 960px) {
  .header-inner { min-height: 84px; }
  .brand-logo { height: 52px; max-width: 260px; }
  .site-nav {
    position: absolute;
    top: 84px;
    right: 16px;
    left: 16px;
    background: #fff;
    border: 1px solid #d9e4e2;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(25, 58, 73, 0.12);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar { font-size: 14px; }
  .topbar-inner { padding: 10px 0; }
  .header-inner { min-height: 78px; }
  .brand-logo {
    height: 42px;
    max-width: 210px;
  }
  h1 { font-size: 52px; }
  .hero { padding: 34px 0 48px; }
  .hero-copy p { font-size: 18px; }
  .team-grid { gap: 10px; }
  .team-grid img { border-radius: 14px; }
  .card-block { padding: 20px; }
}
