* {
  box-sizing: border-box;
}

:root {
  --ink: #173239;
  --muted: #607277;
  --cream: #f7f4ee;
  --sage: #6f8f83;
  --sage-dark: #4d6f65;
  --white: #ffffff;
  --line: #dce5e1;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.narrow {
  max-width: 820px;
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  min-width: 1px;
}

.nav-call {
  text-decoration: none;
  font-weight: 700;
  color: var(--sage-dark);
}

.hero {
  background: linear-gradient(135deg, #f7f4ee 0%, #eef5f1 100%);
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 64px;
  align-items: center;
}

/* Large Care 4 You logo above the hero heading */
.hero-logo {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 0 28px 0;
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 0 0 14px;
}

.eyebrow.center {
  text-align: center;
}

.eyebrow.light {
  color: #dbe9e4;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 850px;
}

.hero-copy {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  transition: .2s ease;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #3f6057;
}

.btn-secondary {
  border: 1px solid var(--sage-dark);
  color: var(--sage-dark);
  background: transparent;
}

.btn.full {
  display: block;
  text-align: center;
}

.service-area {
  margin-top: 22px;
  color: var(--muted);
  font-size: .98rem;
}

.contact-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(44, 74, 67, .10);
}

.small-label {
  margin: 0 0 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--sage-dark);
}

.contact-card h2 {
  margin-bottom: 2px;
  font-size: 2rem;
}

.role {
  margin-top: 0;
  color: var(--muted);
}

.contact-lines {
  margin: 24px 0;
}

.contact-lines p {
  margin: 10px 0;
}

.section {
  padding: 84px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  margin-bottom: 44px;
}

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

.info-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}

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

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

.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--sage-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta {
  background: var(--sage-dark);
  color: var(--white);
  padding: 62px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.cta p {
  max-width: 670px;
}

.btn-light {
  background: var(--white);
  color: var(--sage-dark);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .75);
  color: var(--white);
}

.faq-section {
  background: #fbfcfb;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

footer {
  background: #10262c;
  color: #e8efed;
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 34px;
  align-items: start;
}

.footer-inner p {
  color: #b8c7c3;
}

.disclaimer {
  font-size: .85rem;
}

/* Veronica profile card */
.profile-card {
  padding: 0;
  overflow: hidden;
}

.photo-wrap {
  width: 100%;
  background: #111;
  border-bottom: 1px solid var(--line);
}

.profile-photo {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.profile-content {
  padding: 28px 34px 34px;
}

@media (max-width: 820px) {
  .hero {
    padding: 54px 0 64px;
  }

  .hero-grid,
  .cards,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-logo {
    width: 300px;
  }

  .cta-inner {
    display: block;
  }

  .cta-actions {
    margin-top: 24px;
  }

  .profile-photo {
    height: 460px;
    object-position: center 15%;
  }
}

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

  h1 {
    font-size: 2.55rem;
  }

  .hero-logo {
    width: 240px;
    margin-bottom: 22px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }

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

  .profile-card {
    padding: 0;
  }

  .profile-photo {
    height: 380px;
  }

  .profile-content {
    padding: 24px 22px 28px;
  }
}
