* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #172033;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: #0f4c81;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e6e8ee;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: #172033;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
}

nav a:hover {
  color: #0f4c81;
}

.hero {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.10), rgba(255, 255, 255, 0.96)),
    #f7fafc;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  color: #0f4c81;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  margin: 0 0 12px;
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  letter-spacing: -0.06em;
  max-width: 760px;
}

.tagline {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  color: #0f4c81;
  font-weight: 800;
  margin: 18px 0 18px;
}

.intro {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 0 30px;
  color: #334155;
}

.actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: #0f4c81;
  color: white;
}

.secondary {
  border: 2px solid #0f4c81;
  color: #0f4c81;
  background: white;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 46px;
}

.two-col p,
.narrow p {
  font-size: 1.08rem;
  color: #334155;
}

.family-photo {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.muted {
  background: #f4f7fb;
}

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

.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.card p {
  margin: 0;
  color: #475569;
}

.narrow {
  max-width: 760px;
}

.contact {
  background: #172033;
  color: white;
}

.contact h2,
.contact p {
  color: white;
}

.big-link {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  margin: 8px 0 24px;
}

.big-link a {
  color: white;
}

.note {
  opacity: 0.82;
  font-size: 0.98rem;
}

.fb-note {
  opacity: 0.75;
  font-size: 0.92rem;
  margin-top: -16px;
}

footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.94rem;
}

.footer-center {
  text-align: center;
  font-size: 0.94rem;
}

.footer-inner p,
.footer-center p {
  margin: 0;
}

.footer-center a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-center a:hover {
  color: white;
}

.subscribe-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #172033;
}

.form-row input {
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #172033;
  outline: none;
  transition: border-color 0.15s;
}

.form-row input:focus {
  border-color: #0f4c81;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.form-success {
  margin-top: 28px;
  padding: 18px 22px;
  background: #f0f7f4;
  border: 1px solid #b6d4c8;
  border-radius: 8px;
  color: #172033;
  font-size: 1.08rem;
  max-width: 480px;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-photo-wrap {
    justify-content: flex-start;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    gap: 8px;
  }

  nav {
    gap: 14px;
    font-size: 0.95rem;
  }

  .section {
    padding: 52px 0;
  }

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

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
