:root {
  color-scheme: light;
  --ink: #1f2421;
  --muted: #59645d;
  --line: #d8ded9;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --sage: #4f7f67;
  --sage-dark: #315945;
  --blue-soft: #e8f0f4;
  --focus: #0b6ea8;
  --radius: 8px;
  --shadow: 0 18px 50px rgb(31 36 33 / 10%);
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, Cambria, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--sage-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 45%, transparent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgb(255 255 255 / 92%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span {
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: calc(100vh - 76px);
  padding-top: clamp(38px, 7vw, 74px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.button.primary {
  background: var(--sage);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--sage-dark);
  color: #ffffff;
}

.button.secondary {
  background: var(--blue-soft);
  color: var(--ink);
  border-color: #d4e2e9;
}

.hero-media {
  margin: 0;
  justify-self: end;
  width: min(100%, 390px);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0 clamp(18px, 4vw, 54px);
  background: var(--line);
}

.trust div {
  min-height: 160px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--soft);
}

.trust p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
}

.stat {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.08;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 86px);
}

.split > div:first-child p:not(.eyebrow),
.about p,
.contact p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list h3 {
  font-size: 1.2rem;
}

.service-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-list li,
.privacy-content li {
  color: var(--muted);
}

.service-list article:last-child {
  border-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.support {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  padding: 0;
  list-style: none;
}

.pill-list li {
  margin: 0;
  padding: 9px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.about-mark {
  width: 190px;
  height: 190px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.about-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 54px);
  background: var(--soft);
}

.contact > div {
  max-width: 620px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--sage-dark);
  font-weight: 650;
}

.care-form {
  display: grid;
  gap: 13px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgb(31 36 33 / 7%);
}

.hidden {
  display: none;
}

.care-form h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.3;
  margin-bottom: 2px;
}

.care-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8d1cb;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

input:hover,
textarea:hover {
  border-color: #9daf9f;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div:first-child {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 650;
}

.privacy-page {
  min-height: calc(100vh - 162px);
}

.privacy-content {
  max-width: 760px;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

@media (max-width: 850px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero,
  .split,
  .support,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 440px);
  }

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

  .contact {
    padding-inline: 18px;
  }

  .about-mark {
    width: 150px;
    height: 150px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .care-form {
    padding: 18px;
  }
}
