:root {
  --background: #f7faf7;
  --foreground: #1b2d2b;
  --muted: #66736f;
  --surface: #ffffff;
  --surface-soft: #edf5f1;
  --teal: #1f7a78;
  --teal-dark: #155453;
  --clay: #b85f45;
  --gold: #d5a84f;
  --line: #d9e5df;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 48px;
  min-height: 88svh;
  padding: 28px 7vw 36px;
  background:
    linear-gradient(90deg, rgba(247, 250, 247, 0.96), rgba(247, 250, 247, 0.72)),
    radial-gradient(circle at top left, rgba(213, 168, 79, 0.24), transparent 36%),
    var(--background);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  color: var(--teal-dark);
  font-size: 4.65rem;
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 2.2rem;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #314846;
  font-size: 1.22rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.contact-card:focus-visible {
  outline: 3px solid rgba(184, 95, 69, 0.35);
  outline-offset: 3px;
}

.button-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 122, 120, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal-dark);
}

.hero-media {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(27, 45, 43, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(42, 76, 72, 0.18);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(31, 122, 120, 0.58);
  box-shadow: 0 16px 34px rgba(42, 76, 72, 0.12);
  transform: translateY(-1px);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-card strong {
  color: var(--foreground);
  font-size: 1.18rem;
  font-weight: 820;
  line-height: 1.35;
}

.care-section {
  background:
    linear-gradient(180deg, var(--surface-soft), rgba(247, 250, 247, 0.88)),
    var(--surface-soft);
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

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

.care-list li {
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px 20px;
  color: #2c403d;
  font-size: 1.06rem;
  font-weight: 740;
  box-shadow: 0 8px 22px rgba(42, 76, 72, 0.07);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 24px 7vw;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 32px 20px 38px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-media {
    min-height: 300px;
  }

  .section-heading,
  .care-layout {
    display: block;
  }

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

  .care-list {
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-media {
    min-height: 235px;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
    padding: 42px 0;
  }

  .contact-card {
    min-height: 112px;
  }

  .site-footer {
    padding-inline: 20px;
  }
}
