/* ─────────────────────────────────────────────────────
   Versatile Care — Coming Soon
   Mobile-first
   ───────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #1B3A6B;
  --navy-deep:   #142D54;
  --gold:        #CF8B1E;
  --white:       #FFFFFF;
  --text-body:   #4A6491;
  --text-muted:  #8A9FBF;
  --border:      #DDE6F2;
  --bg-footer:   #F4F7FB;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Top accent bar ──────────────────────────────────── */
.top-bar {
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Logo section ────────────────────────────────────── */
.logo-section {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 24px 0;
}

.logo-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 28px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

.logo-img {
  width: 200px;
  max-width: 70vw;
  height: auto;
  display: block;
}

/* ── Hero section ────────────────────────────────────── */
.hero-section {
  flex: 1;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 52px;
  gap: 40px;
}

/* ── Headline ─────────────────────────────────────────── */
.hero-text {
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.hero-text h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.hero-text .sub-copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
}

/* ── Contact card ─────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.22);
}

.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 22px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg-footer);
  transition: background 0.18s ease;
}

.contact-list li:hover {
  background: #e8eef8;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--gold);
}

.contact-list a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold);
}

/* ── Social link (reused in footer) ──────────────────── */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--gold);
  transform: translateY(-2px);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  flex-shrink: 0;
  background: var(--navy-deep);
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

footer p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ── Desktop ──────────────────────────────────────────── */
@media (min-width: 768px) {
  .logo-section {
    padding: 44px 48px 0;
  }

  .logo-img {
    width: 230px;
  }

  .hero-section {
    justify-content: center;
    padding: 32px 48px 72px;
    gap: 48px;
  }

  .hero-text {
    max-width: 700px;
  }

  .hero-text h1 {
    font-size: 52px;
  }

  .hero-text .sub-copy {
    font-size: 17px;
  }

  .contact-card {
    max-width: 480px;
    padding: 40px 36px;
  }

  .contact-list li {
    padding: 15px 20px;
  }

  .contact-list a {
    font-size: 15.5px;
  }
}

/* ── Small mobile ─────────────────────────────────────── */
@media (max-width: 380px) {
  .logo-img {
    width: 185px;
  }

  .hero-section {
    padding: 36px 16px 44px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text .sub-copy {
    font-size: 14.5px;
  }

  .contact-card {
    padding: 26px 20px;
  }
}
