:root {
  color-scheme: light;
  --ink: #2f2e2d;
  --muted: #6b625d;
  --paper: #fff8ef;
  --surface: #ffffff;
  --surface-warm: #fffdf8;
  --line: #ead8ce;
  --charcoal: #303030;
  --charcoal-soft: #46403e;
  --teal: #5f756a;
  --teal-dark: #42574f;
  --coral: #e96f72;
  --coral-dark: #bd555d;
  --brass: #b9874e;
  --sage: #758276;
  --soft-teal: #edf3ef;
  --soft-coral: #fde9e4;
  --soft-gold: #f7ead6;
  --soft-sage: #eef1e8;
  --shadow: 0 22px 56px rgba(48, 48, 48, 0.14);
  --soft-shadow: 0 14px 38px rgba(74, 57, 49, 0.09);
  --max: 1180px;
  font-family: Inter, Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 239, 0) 520px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 10px clamp(18px, 4vw, 48px);
  background: rgba(48, 48, 48, 0.97);
  border-bottom: 1px solid rgba(233, 111, 114, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 142px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.brand-location {
  padding-left: 14px;
  color: rgba(255, 248, 239, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.84rem;
  color: rgba(255, 248, 239, 0.78);
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .is-active {
  background: rgba(233, 111, 114, 0.16);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: clamp(520px, calc(100svh - 170px), 650px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(233, 111, 114, 0.22);
}

.page-hero {
  min-height: 390px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 42, 40, 0.94) 0%, rgba(47, 42, 40, 0.76) 44%, rgba(47, 42, 40, 0.25) 82%),
    linear-gradient(180deg, rgba(86, 53, 48, 0.12), rgba(47, 42, 40, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 92px;
  color: #ffffff;
}

.page-hero .hero-content {
  padding: 68px 0;
}

.kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .kicker,
.contact-band .kicker {
  color: #ffb1ae;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: 3.85rem;
}

h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.hero-lede {
  max-width: 710px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-trust span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-actions,
.contact-actions,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(189, 85, 93, 0.24);
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
}

.button-light {
  background: #ffffff;
  color: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-muted {
  background: var(--surface);
  color: var(--charcoal);
  border-color: var(--line);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-tight {
  padding-top: 50px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.feature-copy h2,
.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 2.65rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p,
.feature-copy p,
.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

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

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

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

.card {
  display: grid;
  gap: 16px;
  min-height: 245px;
  padding: 28px;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 111, 114, 0.34);
  box-shadow: 0 18px 46px rgba(42, 45, 39, 0.11);
}

.card.compact {
  min-height: 0;
}

.card h3 {
  margin-bottom: 0;
  font-size: 1.42rem;
  line-height: 1.16;
  letter-spacing: 0;
}

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

.card ul,
.simple-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  align-self: end;
  width: fit-content;
  color: var(--coral-dark);
  font-weight: 800;
  border-bottom: 2px solid rgba(189, 85, 93, 0.3);
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--charcoal);
  border-color: var(--coral);
}

.feature-band {
  background: linear-gradient(180deg, #f7eee5, #f4f0e7);
  border-block: 1px solid rgba(189, 85, 93, 0.12);
}

.premium-band {
  background:
    linear-gradient(135deg, rgba(253, 233, 228, 0.94), rgba(238, 241, 232, 0.9)),
    var(--soft-coral);
}

.feature-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: 74px 0;
}

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

.value-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 85, 93, 0.14);
  border-radius: 8px;
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 1.04rem;
}

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

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 111, 104, 0.13);
  border-radius: 8px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #ffffff;
}

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

.stat {
  padding: 24px;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(42, 45, 39, 0.05);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--coral-dark);
  font-size: 2.3rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.about-preview .feature-copy {
  max-width: 620px;
}

.local-care-section {
  padding-bottom: 88px;
}

.community-intro {
  background: var(--charcoal);
  color: #ffffff;
}

.community-intro-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: 72px 0;
}

.community-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.community-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.community-copy .kicker {
  color: #ffaaa7;
}

.community-copy h2 {
  margin-bottom: 20px;
  font-size: 2.65rem;
  line-height: 1.1;
}

.community-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.community-copy .text-link {
  color: #ffaaa7;
  border-color: rgba(255, 170, 167, 0.48);
}

.trust-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-preview {
  position: relative;
  display: grid;
  gap: 16px;
}

.team-preview::before {
  content: "";
  position: absolute;
  inset: 34px 26px auto auto;
  width: 44%;
  height: 58%;
  background: #f8d8d1;
  border-radius: 8px;
  z-index: -1;
}

.team-mini-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(234, 216, 206, 0.96);
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
}

.team-mini-card-offset {
  margin-left: 44px;
}

.team-mini-card img {
  width: 132px;
  height: 154px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.team-mini-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-mini-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

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

.care-note {
  margin-left: 88px;
  padding: 20px 22px;
  background: var(--soft-coral);
  border: 1px solid rgba(189, 85, 93, 0.14);
  border-radius: 6px;
}

.care-note strong {
  color: var(--coral-dark);
}

.care-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.experience-strip div {
  min-height: 150px;
  padding: 26px 22px;
  background: var(--surface-warm);
}

.experience-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 600;
}

.experience-strip span {
  color: var(--muted);
}

.callout {
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.process-section {
  padding-top: 32px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 26px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(42, 45, 39, 0.06);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--coral-dark);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-grid {
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: var(--coral-dark);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-item span {
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  overflow: hidden;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.team-card-body {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.team-card-body h3 {
  margin-bottom: 0;
  font-size: 1.48rem;
}

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

.quote {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  background: var(--soft-coral);
  border: 1px solid rgba(189, 85, 93, 0.14);
  border-radius: 6px;
  color: var(--ink);
}

.quote p {
  font-size: 1.08rem;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.testimonial-band {
  padding: 76px 0;
  background: linear-gradient(135deg, #303030, #443737 64%, #6f4546);
  color: #ffffff;
}

.testimonial-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.testimonial-inner .kicker {
  color: #ffaaa7;
}

.testimonial-inner h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.08;
}

.testimonial-inner .quote {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.testimonial-inner .quote p {
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-inner .quote cite {
  color: #ffaaa7;
}

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

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.field.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 72px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 44px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), #4b3a38 58%, var(--coral-dark));
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-band h2 {
  margin-bottom: 0;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 48px clamp(18px, 4vw, 48px) 24px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand,
.site-footer h2 {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand {
  width: fit-content;
  border-bottom: 0 !important;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.site-footer p {
  margin-bottom: 7px;
}

.site-footer a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.copyright {
  width: min(var(--max), 100%);
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

@media (max-width: 1180px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    inset: 88px 12px auto auto;
    display: grid;
    gap: 4px;
    width: min(340px, calc(100% - 24px));
    padding: 14px;
    background: rgba(48, 48, 48, 0.99);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    justify-content: stretch;
    justify-items: stretch;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.35rem;
    line-height: 1.02;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .contact-band h2,
  .testimonial-inner h2 {
    font-size: 2.15rem;
  }

  .section-heading,
  .feature-grid,
  .split,
  .community-intro-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .cards.two,
  .team-grid,
  .service-grid,
  .process-grid,
  .testimonial-inner {
    grid-template-columns: 1fr;
  }

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

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

  .experience-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-mini-card-offset,
  .care-note {
    margin-left: 0;
  }

  .card {
    min-height: 0;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
    padding: 6px 14px;
  }

  .brand-logo {
    width: 118px;
    height: 62px;
  }

  .brand-location {
    display: none;
  }

  .site-nav {
    inset: 74px 10px auto auto;
    width: min(320px, calc(100% - 20px));
  }

  .hero {
    min-height: 500px;
  }

  .page-hero {
    min-height: 340px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(47, 42, 40, 0.94), rgba(47, 42, 40, 0.65));
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding: 62px 0 70px;
  }

  .page-hero .hero-content {
    padding: 50px 0;
  }

  h1 {
    font-size: 2.72rem;
  }

  .page-hero h1 {
    font-size: 2.38rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .contact-band h2,
  .testimonial-inner h2 {
    font-size: 1.86rem;
  }

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

  .hero-actions,
  .contact-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .feature-grid,
  .community-intro-inner,
  .contact-band {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 52px 0;
  }

  .community-intro-inner {
    padding: 52px 0;
  }

  .community-copy h2 {
    font-size: 1.9rem;
  }

  .card,
  .callout {
    padding: 22px;
  }

  .team-mini-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .team-mini-card img {
    width: 104px;
    height: 126px;
  }

  .team-mini-card h3 {
    font-size: 1.08rem;
  }

  .team-mini-card p,
  .care-note p {
    font-size: 0.94rem;
  }

  .team-card-body {
    padding: 22px;
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .experience-strip div {
    min-height: 0;
  }

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

  .resource-item,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-band {
    margin: 52px auto;
  }
}
