/* Haven Care services hub — homeowner-first service discovery and plan routing. */

html.services-page,
html.services-page body {
  overflow-x: clip;
  overflow-y: visible;
}

body[data-page="services"] .site-nav a[aria-current="page"] {
  color: var(--acq-navy);
  border-bottom: 1px solid var(--acq-green);
}

body[data-page="services"] .site-shell {
  overflow: visible;
}

body[data-page="services"] :is(#care-rhythms, #service-library, .services-family) {
  scroll-margin-top: 24px;
}

body[data-page="services"] .services-hero {
  min-height: auto;
}

body[data-page="services"] .services-hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 98px;
}

body[data-page="services"] .services-hero .hero-message h1 {
  max-width: 10.5ch;
  font-size: clamp(4rem, 5.6vw, 5.35rem);
}

.services-hero__rhythms {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  color: var(--acq-green-dark);
  list-style: none;
}

.services-hero__rhythms li {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-hero__rhythms li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 10px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  opacity: 0.45;
}

.services-compass {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 245, 243, 0.91)),
    var(--grain);
  border: 1px solid rgba(20, 34, 59, 0.12);
  border-radius: 18px;
  box-shadow: 0 32px 88px rgba(20, 34, 59, 0.15);
}

.services-compass__visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.services-compass__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(20, 34, 59, 0.86)),
    linear-gradient(100deg, rgba(20, 34, 59, 0.12), transparent 58%);
}

.services-compass__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 42%;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-compass:hover .services-compass__visual img {
  transform: scale(1.025);
}

.services-compass__visual p {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: var(--acq-white);
}

.services-compass__visual span {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-compass__visual strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.services-compass__body {
  padding: 23px 24px 0;
}

.services-compass__kicker {
  margin: 0;
  color: var(--acq-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-compass__body h2 {
  margin: 6px 0 20px;
  font-size: 2rem;
  line-height: 1;
}

.services-compass__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 -24px;
  border-top: 1px solid var(--acq-line);
}

.services-compass__links a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 112px;
  padding: 18px 20px;
  color: var(--acq-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--acq-line);
  transition: background-color 180ms ease, color 180ms ease;
}

.services-compass__links a:nth-child(odd) {
  border-right: 1px solid var(--acq-line);
}

.services-compass__links a:hover,
.services-compass__links a:focus-visible {
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.08);
}

.services-compass__links svg,
.services-icon svg,
.services-proof__steps svg,
.services-plan-grid svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-compass__links > a > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.1);
  border: 1px solid rgba(106, 139, 91, 0.18);
  border-radius: 50%;
}

.services-compass__links span {
  min-width: 0;
}

.services-compass__links strong,
.services-compass__links small {
  display: block;
}

.services-compass__links strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.services-compass__links small {
  margin-top: 5px;
  color: var(--acq-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.services-rhythms {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(44px, 6vw, 92px);
  padding: 78px max(24px, calc((100% - var(--acq-max)) / 2));
  color: var(--acq-white);
  background: var(--acq-navy-texture);
}

.services-rhythms .eyebrow,
.services-coordination .eyebrow {
  color: #a9c59d;
}

.services-rhythms h2 {
  max-width: 10ch;
  margin: 13px 0 20px;
  color: var(--acq-white);
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.services-rhythms__intro > p:last-child {
  max-width: 440px;
  margin: 0;
  color: rgba(218, 221, 214, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.services-rhythm-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-self: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-rhythm-list li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.services-rhythm-list li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.services-rhythm-list span {
  margin-bottom: 30px;
  color: rgba(218, 221, 214, 0.5);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.4rem;
}

.services-rhythm-list strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.services-rhythm-list p {
  margin: 10px 0 0;
  color: rgba(218, 221, 214, 0.78);
  font-size: 0.76rem;
  line-height: 1.55;
}

.services-library,
.services-proof,
.services-plans,
.services-coordination,
.services-faq {
  width: min(calc(100% - 48px), var(--acq-max));
  margin: 0 auto;
}

.services-library {
  padding: 112px 0 92px;
}

.services-library__heading,
.services-plans__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  align-items: end;
  gap: clamp(42px, 7vw, 110px);
  margin-bottom: 64px;
}

.services-library__heading .section-copy h2,
.services-plans__heading .section-copy h2 {
  max-width: 9.5ch;
}

.services-library__heading > p,
.services-plans__heading > div:last-child > p {
  margin: 0;
  color: var(--acq-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.services-family-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 0;
  border-top: 1px solid var(--acq-line);
  border-bottom: 1px solid var(--acq-line);
}

.services-family-nav a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--acq-navy);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border-left: 1px solid var(--acq-line);
  transition: color 180ms ease, background-color 180ms ease;
}

.services-family-nav {
  grid-template-columns: repeat(var(--services-visible-families, 6), minmax(0, 1fr));
}

.services-family-nav a[hidden],
.services-family[hidden] {
  display: none;
}

.services-family-nav a:last-child {
  border-right: 1px solid var(--acq-line);
}

.services-family-nav a:hover,
.services-family-nav a:focus-visible {
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.08);
}

.services-family-list {
  container-type: inline-size;
}

.services-family {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 104px);
  padding: 58px 0;
  border-bottom: 1px solid var(--acq-line);
}

.services-family__header {
  display: grid;
  grid-template-columns: 34px 58px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.services-family__number {
  padding-top: 12px;
  color: rgba(20, 34, 59, 0.35);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
}

.services-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--acq-green-dark);
  background: color-mix(in srgb, var(--acq-green) 11%, var(--acq-white));
  border: 1px solid color-mix(in srgb, var(--acq-green) 24%, transparent);
  border-radius: 50%;
}

.services-icon svg {
  width: 25px;
  height: 25px;
}

.services-family__header p {
  margin: 2px 0 10px;
  color: var(--acq-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-family__header h3 {
  margin: 0 0 12px;
  color: var(--acq-navy);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2.15rem, 3.2vw, 3.15rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.services-family__header div > span {
  display: block;
  max-width: 450px;
  color: var(--acq-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.services-family__routes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--acq-line);
}

.services-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 12px;
  color: var(--acq-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--acq-line);
  transition: color 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.services-route:hover,
.services-route:focus-visible {
  padding-right: 8px;
  padding-left: 18px;
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.07);
}

.services-route > span,
.services-route strong,
.services-route small {
  display: block;
}

.services-route strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.services-route small {
  margin-top: 5px;
  color: var(--acq-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.services-route > b {
  flex: 0 0 auto;
  color: var(--acq-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.services-route--request > b {
  padding: 7px 8px;
  background: rgba(106, 139, 91, 0.1);
  border: 1px solid rgba(106, 139, 91, 0.18);
  border-radius: 999px;
}

.services-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(46px, 8vw, 120px);
  padding: 74px 0;
  border-top: 1px solid var(--acq-line);
  border-bottom: 1px solid var(--acq-line);
}

.services-proof__copy h2 {
  max-width: 12ch;
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.services-proof__copy > p:last-of-type {
  max-width: 520px;
  margin: 0;
  color: var(--acq-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.services-proof__copy > a {
  display: inline-block;
  margin-top: 20px;
  color: var(--acq-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.services-proof__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--acq-line);
  border-bottom: 1px solid var(--acq-line);
}

.services-proof__steps li {
  min-height: 190px;
  padding: 26px 22px;
  border-left: 1px solid var(--acq-line);
}

.services-proof__steps li:last-child {
  border-right: 1px solid var(--acq-line);
}

.services-proof__steps svg {
  width: 26px;
  height: 26px;
  margin-bottom: 34px;
  color: var(--acq-green-dark);
}

.services-proof__steps strong,
.services-proof__steps small {
  display: block;
}

.services-proof__steps strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.services-proof__steps small {
  margin-top: 8px;
  color: var(--acq-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.services-plans {
  padding: 112px 0;
}

.services-plans__heading > div:last-child .button {
  margin-top: 24px;
}

.services-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--acq-line);
  border-bottom: 1px solid var(--acq-line);
}

.services-plan-grid article {
  position: relative;
  min-height: 316px;
  padding: 26px 22px;
  border-left: 1px solid var(--acq-line);
}

.services-plan-grid article:last-child {
  border-right: 1px solid var(--acq-line);
}

.services-plan-grid article > span {
  position: absolute;
  top: 26px;
  right: 22px;
  color: rgba(20, 34, 59, 0.32);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.2rem;
}

.services-plan-grid svg {
  width: 29px;
  height: 29px;
  margin-bottom: 42px;
  color: var(--acq-green-dark);
}

.services-plan-grid h3 {
  margin: 0 0 14px;
  color: var(--acq-navy);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.services-plan-grid p {
  margin: 0;
  color: var(--acq-muted);
  font-size: 0.75rem;
  line-height: 1.62;
}

.services-plan-grid small {
  position: absolute;
  right: 22px;
  bottom: 25px;
  left: 22px;
  color: var(--acq-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.services-coordination {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 118px);
  margin-bottom: 0;
  padding: 84px clamp(34px, 5vw, 70px);
  color: var(--acq-white);
  background: var(--acq-navy-texture);
  border-radius: 18px 18px 0 0;
}

.services-coordination__copy h2 {
  max-width: 10ch;
  margin: 13px 0 20px;
  color: var(--acq-white);
  font-size: clamp(3rem, 4.6vw, 4.25rem);
  line-height: 0.97;
  letter-spacing: -0.035em;
}

.services-coordination__copy > p:last-of-type {
  max-width: 540px;
  margin: 0;
  color: rgba(218, 221, 214, 0.82);
  font-size: 0.92rem;
  line-height: 1.72;
}

.services-coordination__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.services-coordination__actions .button-primary {
  color: var(--acq-navy);
  background: var(--acq-white);
  border-color: var(--acq-white);
}

.services-coordination__actions > a:not(.button) {
  color: var(--acq-mist);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.services-coordination__steps {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.services-coordination__steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-coordination__steps li > span {
  color: rgba(218, 221, 214, 0.5);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.4rem;
}

.services-coordination__steps h3 {
  margin: 0 0 6px;
  color: var(--acq-white);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.services-coordination__steps p {
  margin: 0;
  color: rgba(218, 221, 214, 0.78);
  font-size: 0.75rem;
  line-height: 1.58;
}

.services-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 140px);
  padding: 112px 0;
}

.services-faq__heading h2 {
  max-width: 9ch;
  margin: 13px 0 0;
  font-size: clamp(3rem, 4.6vw, 4.25rem);
  line-height: 0.97;
  letter-spacing: -0.035em;
}

.services-faq__list {
  border-top: 1px solid var(--acq-line);
}

.services-faq__list details {
  padding: 0;
  border-bottom: 1px solid var(--acq-line);
}

.services-faq__list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  color: var(--acq-navy);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.services-faq__list summary::-webkit-details-marker {
  display: none;
}

.services-faq__list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--acq-green-dark);
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.services-faq__list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.services-faq__list details p {
  max-width: 700px;
  margin: -2px 0 24px;
  color: var(--acq-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

@container (max-width: 760px) {
  .services-family {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  body[data-page="services"] .services-hero__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 38px;
  }

  .services-rhythms {
    grid-template-columns: 1fr;
  }

  .services-rhythm-list span {
    margin-bottom: 22px;
  }

  .services-plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-plan-grid article:nth-child(4),
  .services-plan-grid article:nth-child(5) {
    border-top: 1px solid var(--acq-line);
  }
}

@media (max-width: 900px) {
  body[data-page="services"] .services-hero__grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 760px);
  }

  body[data-page="services"] .services-hero .hero-message h1 {
    max-width: 11ch;
  }

  .services-compass__visual {
    min-height: 280px;
  }

  .services-library,
  .services-proof,
  .services-plans,
  .services-coordination,
  .services-faq {
    width: min(calc(100% - 32px), 760px);
  }

  .services-library__heading,
  .services-plans__heading,
  .services-proof,
  .services-coordination,
  .services-faq {
    grid-template-columns: 1fr;
  }

  .services-library__heading,
  .services-plans__heading {
    align-items: start;
    gap: 28px;
  }

  .services-family {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-family-nav-shell {
    position: sticky;
    top: 0;
    z-index: 15;
    background: rgba(243, 245, 243, 0.94);
    box-shadow: 0 12px 28px rgba(20, 34, 59, 0.07);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
    backdrop-filter: blur(14px) saturate(1.08);
  }

  .services-family-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .services-family-nav::-webkit-scrollbar {
    display: none;
  }

  .services-family-nav a {
    flex: 0 0 auto;
    min-width: 154px;
    scroll-snap-align: start;
  }

  .services-proof__steps {
    max-width: 680px;
  }

  .services-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-plan-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--acq-line);
  }

  .services-plan-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 270px;
  }

  .services-coordination {
    gap: 48px;
    border-radius: 16px 16px 0 0;
  }

  .services-faq {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  body[data-page="services"] .services-hero__grid {
    width: min(calc(100% - 32px), 430px);
    padding-bottom: 74px;
  }

  body[data-page="services"] .services-hero .hero-message h1 {
    max-width: 10.6ch;
    font-size: 3.12rem;
  }

  .services-hero__rhythms {
    row-gap: 7px;
  }

  .services-compass__visual {
    min-height: 220px;
  }

  .services-compass__visual p {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .services-compass__links {
    grid-template-columns: 1fr;
  }

  .services-compass__links a:nth-child(odd) {
    border-right: 0;
  }

  .services-compass__links a {
    min-height: 0;
  }

  .services-rhythms {
    gap: 34px;
    padding: 68px 16px;
  }

  .services-rhythms h2 {
    max-width: 9ch;
    font-size: 2.76rem;
  }

  .services-rhythm-list {
    grid-template-columns: 1fr;
  }

  .services-rhythm-list li,
  .services-rhythm-list li:last-child {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .services-rhythm-list li:last-child {
    border-bottom: 0;
  }

  .services-rhythm-list span {
    grid-row: 1 / 3;
    margin: 0;
    font-size: 1.1rem;
  }

  .services-rhythm-list p {
    margin-top: 5px;
  }

  .services-library,
  .services-proof,
  .services-plans,
  .services-coordination,
  .services-faq {
    width: min(calc(100% - 32px), 430px);
  }

  .services-library,
  .services-plans,
  .services-faq {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .services-library__heading {
    margin-bottom: 46px;
  }

  .services-family {
    padding: 46px 0;
  }

  .services-family__header {
    grid-template-columns: 28px 48px minmax(0, 1fr);
    gap: 10px;
  }

  .services-family__number {
    font-size: 1rem;
  }

  .services-icon {
    width: 48px;
    height: 48px;
  }

  .services-icon svg {
    width: 21px;
    height: 21px;
  }

  .services-family__header h3 {
    font-size: 2.15rem;
  }

  .services-route {
    gap: 12px;
    min-height: 82px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .services-route:hover,
  .services-route:focus-visible {
    padding-right: 2px;
    padding-left: 8px;
  }

  .services-route > b {
    font-size: 0.7rem;
  }

  .services-proof {
    gap: 40px;
    padding: 64px 0;
  }

  .services-proof__steps {
    grid-template-columns: 1fr;
  }

  .services-proof__steps li,
  .services-proof__steps li:last-child {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid var(--acq-line);
    border-left: 0;
  }

  .services-proof__steps li:last-child {
    border-bottom: 0;
  }

  .services-proof__steps svg {
    grid-row: 1 / 3;
    margin: 0;
  }

  .services-plan-grid {
    grid-template-columns: 1fr;
  }

  .services-plan-grid article,
  .services-plan-grid article:nth-child(4),
  .services-plan-grid article:nth-child(5),
  .services-plan-grid article:last-child {
    grid-column: auto;
    min-height: 270px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--acq-line);
    border-left: 0;
  }

  .services-plan-grid article:last-child {
    border-bottom: 0;
  }

  .services-coordination {
    padding: 64px 22px;
  }

  .services-coordination__copy h2,
  .services-faq__heading h2 {
    font-size: 2.82rem;
  }

  .services-coordination__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-coordination__actions .button {
    width: 100%;
  }

  .services-faq__list summary {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-compass__visual img,
  .services-compass__links a,
  .services-route,
  .services-faq__list summary::after {
    transition: none;
  }
}

/* Services Hub V2 — guided discovery, schedule browsing, and editable plan handoff. */

.services-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body[data-page="services"] :is(#care-rhythms, #service-library, .services-family) {
  scroll-margin-top: 72px;
}

body[data-page="services"] .services-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  padding-top: 42px;
  padding-bottom: 74px;
}

body[data-page="services"] .services-hero .hero-message h1 {
  max-width: 11ch;
  font-size: clamp(3.7rem, 5.25vw, 5rem);
}

body[data-page="services"] .services-hero .hero-message .intro {
  max-width: 650px;
}

.services-hero__browse {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 10px;
  color: var(--acq-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration-color: rgba(20, 34, 59, 0.35);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.services-hero__browse span {
  color: var(--acq-green-dark);
  font-size: 1rem;
}

.services-hero__rhythms {
  margin-top: 19px;
}

.services-compass__visual {
  min-height: 184px;
}

.services-compass__body {
  padding-top: 19px;
}

.services-compass__links a {
  min-height: 92px;
  padding: 15px 18px;
}

.services-compass__links small {
  font-size: 0.78rem;
}

.services-trust-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 48px), var(--acq-max));
  margin: -26px auto 0;
  color: var(--acq-navy);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--acq-line);
  box-shadow: 0 22px 56px rgba(20, 34, 59, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.services-trust-rail p {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 22px 24px;
  border-left: 1px solid var(--acq-line);
}

.services-trust-rail p:first-child {
  border-left: 0;
}

.services-trust-rail svg {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  fill: none;
  stroke: var(--acq-green-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-trust-rail span,
.services-trust-rail strong,
.services-trust-rail small {
  display: block;
}

.services-trust-rail strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.08;
}

.services-trust-rail small {
  margin-top: 6px;
  color: var(--acq-muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.services-rhythms {
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(38px, 5vw, 78px);
  margin-top: 72px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.services-rhythms h2 {
  max-width: 11ch;
  font-size: clamp(2.55rem, 3.6vw, 3.7rem);
}

.services-rhythm-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.services-rhythm-list li,
.services-rhythm-list li:last-child {
  display: block;
  min-width: 0;
  padding: 0;
  background: var(--acq-navy);
  border: 0;
}

.services-rhythm-list button {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-content: start;
  width: 100%;
  min-height: 132px;
  padding: 19px 18px;
  color: var(--acq-white);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.services-rhythm-list button:hover,
.services-rhythm-list button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.services-rhythm-list button.is-active {
  color: var(--acq-white);
  background: rgba(106, 139, 91, 0.28);
  box-shadow: inset 0 -3px 0 #a9c59d;
}

.services-rhythm-list button > span {
  grid-row: 1 / 3;
  margin: 2px 0 0;
  color: rgba(218, 221, 214, 0.54);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.05rem;
}

.services-rhythm-list button > strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.05;
}

.services-rhythm-list button > small {
  margin-top: 8px;
  color: rgba(218, 221, 214, 0.8);
  font-size: 0.76rem;
  line-height: 1.48;
}

.services-rhythm-list [data-rhythm-fallback] {
  margin: 0;
  padding: 18px;
  color: rgba(218, 221, 214, 0.84);
  font-size: 0.86rem;
  line-height: 1.55;
}

.services-rhythm-list [data-rhythm-fallback] strong {
  color: var(--acq-white);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.services-rhythm-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 12px 14px;
  color: var(--acq-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.services-rhythm-status[hidden] {
  display: none;
}

.services-rhythm-status p {
  margin: 0;
  color: rgba(218, 221, 214, 0.86);
  font-size: 0.78rem;
  line-height: 1.45;
}

.services-rhythm-status button {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--acq-white);
  font: 800 0.72rem/1.2 Inter, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.services-library {
  padding-top: 94px;
}

.services-library__heading {
  margin-bottom: 48px;
}

.services-library__heading > div:last-child > p:first-child {
  margin: 0;
  color: var(--acq-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.services-library__hint {
  margin: 14px 0 0;
  color: var(--acq-green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.services-family-nav a {
  gap: 9px;
  position: relative;
  min-height: 62px;
}

.services-family-nav a > span {
  color: rgba(20, 34, 59, 0.42);
  font-family: Newsreader, Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.services-family-nav a::after {
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  height: 3px;
  content: "";
  background: var(--acq-green-dark);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.services-family-nav a.is-active,
.services-family-nav a[aria-current="location"] {
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.09);
}

.services-family-nav a.is-active::after,
.services-family-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.services-family {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 86px);
  padding: 54px 0;
  border-bottom: 1px solid var(--acq-line);
}

.services-family::details-content {
  display: contents;
}

.services-family__header {
  position: relative;
  display: grid;
  grid-template-columns: 32px 54px minmax(0, 1fr) 24px;
  align-items: start;
  gap: 14px;
  min-width: 0;
  color: var(--acq-navy);
  cursor: pointer;
  list-style: none;
}

.services-family__header::-webkit-details-marker {
  display: none;
}

.services-family__header:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--acq-green) 68%, white);
  outline-offset: 8px;
}

.services-family__number {
  padding-top: 11px;
}

.services-family__title,
.services-family__title > span,
.services-family__title > strong,
.services-family__title > small {
  display: block;
}

.services-family__title > span {
  margin: 2px 0 9px;
  color: var(--acq-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.services-family__title > strong {
  color: var(--acq-navy);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.services-family__title > small {
  max-width: 430px;
  margin-top: 12px;
  color: var(--acq-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.services-family__disclosure {
  display: none;
}

.services-family__routes {
  align-self: start;
  margin: 0;
}

.services-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid var(--acq-line);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.services-item[hidden] {
  display: none;
}

.services-item.is-selected {
  background: rgba(106, 139, 91, 0.085);
  box-shadow: inset 3px 0 0 var(--acq-green-dark);
}

.services-item.is-filter-kept::before {
  position: absolute;
  top: 4px;
  left: 13px;
  content: "Selected outside this filter";
  color: var(--acq-green-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-route {
  min-height: 92px;
  padding: 16px 12px;
  border-bottom: 0;
}

.services-route:hover,
.services-route:focus-visible {
  padding-right: 12px;
  padding-left: 16px;
}

.services-route strong {
  font-size: 0.9rem;
}

.services-route small {
  font-size: 0.875rem;
  line-height: 1.48;
}

.services-route > b {
  max-width: 106px;
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: right;
}

.services-route--request > b {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.services-item__controls {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 10px 12px 0;
}

.services-item__cadence {
  min-width: 140px;
}

.services-item__cadence[hidden] {
  display: none;
}

.services-item__cadence > span {
  display: block;
  margin-bottom: 5px;
  color: var(--acq-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.services-item__cadence select,
.services-plan-tray__summary select {
  width: 100%;
  min-height: 44px;
  padding: 8px 31px 8px 10px;
  color: var(--acq-navy);
  font: 700 0.76rem/1.25 Inter, sans-serif;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 34, 59, 0.18);
  border-radius: 8px;
}

.services-item__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 112px;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--acq-navy);
  font: 800 0.7rem/1.2 Inter, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(20, 34, 59, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.services-item__toggle:hover,
.services-item__toggle:focus-visible,
.services-item__toggle[aria-pressed="true"] {
  color: var(--acq-white);
  background: var(--acq-green-dark);
  border-color: var(--acq-green-dark);
}

.services-item__toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-item__toggle:disabled {
  color: rgba(20, 34, 59, 0.58);
  background: rgba(218, 221, 214, 0.48);
  border-color: rgba(20, 34, 59, 0.16);
  cursor: not-allowed;
  opacity: 0.78;
}

.services-plan-limit {
  margin: 12px 0 0;
  padding: 10px 12px;
  color: var(--acq-navy);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  background: rgba(106, 139, 91, 0.1);
  border-left: 3px solid var(--acq-green-dark);
}

.services-plan-limit[hidden] {
  display: none;
}

.services-storage-notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #7a3d2c;
  font-size: 0.82rem;
  background: #fff5ef;
  border: 1px solid rgba(122, 61, 44, 0.24);
}

.services-plan-grid article {
  min-height: 360px;
  padding: 0;
}

.services-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  padding: 26px 22px;
  color: var(--acq-navy);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.services-plan-card:hover,
.services-plan-card:focus-visible {
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.075);
}

.services-plan-card:focus-visible {
  z-index: 1;
  outline: 3px solid color-mix(in srgb, var(--acq-green) 68%, white);
  outline-offset: -3px;
}

.services-plan-card > span:first-child {
  position: absolute;
  top: 26px;
  right: 22px;
  color: rgba(20, 34, 59, 0.32);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.2rem;
}

.services-plan-card svg {
  flex: 0 0 auto;
}

.services-plan-card h3 {
  color: currentColor;
}

.services-plan-card p {
  color: var(--acq-muted);
  font-size: 0.875rem;
  line-height: 1.58;
}

.services-plan-card > small {
  position: static;
  margin-top: 18px;
  color: var(--acq-green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-plan-card > strong:last-child {
  display: block;
  margin-top: auto;
  padding-top: 28px;
  color: currentColor;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-guides {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  width: min(calc(100% - 48px), var(--acq-max));
  margin: 0 auto;
  padding: 28px 0 96px;
}

.services-guides > div h2 {
  max-width: 11ch;
  margin: 13px 0 17px;
  font-size: clamp(2.5rem, 3.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.services-guides > div > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--acq-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.services-guides nav {
  border-top: 1px solid var(--acq-line);
}

.services-guides nav a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 102px;
  padding: 18px 10px;
  color: var(--acq-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--acq-line);
  transition: color 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.services-guides nav a:hover,
.services-guides nav a:focus-visible {
  padding-right: 6px;
  padding-left: 14px;
  color: var(--acq-green-dark);
  background: rgba(106, 139, 91, 0.07);
}

.services-guides nav a > span {
  grid-row: 1 / 3;
  color: rgba(20, 34, 59, 0.38);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.1rem;
}

.services-guides nav strong,
.services-guides nav small {
  display: block;
}

.services-guides nav strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.services-guides nav small {
  margin-top: 7px;
  color: var(--acq-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.services-plan-tray {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  width: min(680px, calc(100% - 36px));
  overflow: hidden;
  color: var(--acq-navy);
  background: rgba(243, 245, 243, 0.97);
  border: 1px solid rgba(20, 34, 59, 0.18);
  border-radius: 16px;
  box-shadow: 0 26px 80px rgba(20, 34, 59, 0.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.services-plan-tray[hidden],
.services-plan-tray__summary[hidden] {
  display: none;
}

.services-plan-tray__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px;
}

.services-plan-tray__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  min-height: 48px;
  padding: 6px 10px;
  color: var(--acq-navy);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.services-plan-tray__toggle strong,
.services-plan-tray__toggle small {
  display: block;
}

.services-plan-tray__toggle strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.services-plan-tray__toggle small {
  margin-top: 2px;
  color: var(--acq-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-plan-tray__toggle > span:last-child {
  font-size: 1.1rem;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.services-plan-tray__toggle[aria-expanded="true"] > span:last-child {
  transform: rotate(180deg);
}

.services-plan-tray__bar .button {
  white-space: nowrap;
}

.services-plan-tray__summary {
  max-height: min(62vh, 560px);
  padding: 22px;
  overflow: auto;
  border-top: 1px solid var(--acq-line);
}

.services-plan-tray__summary-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.services-plan-tray__summary-heading h2 {
  margin: 7px 0 0;
  font-size: 1.75rem;
  line-height: 1;
}

.services-plan-tray__summary-heading > button,
.services-plan-tray__summary li > button {
  min-height: 44px;
  padding: 8px;
  color: var(--acq-green-dark);
  font: 800 0.68rem/1.2 Inter, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.services-plan-tray__summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--acq-line);
}

.services-plan-tray__summary li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.48fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--acq-line);
}

.services-plan-tray__item-copy strong,
.services-plan-tray__item-copy small {
  display: block;
}

.services-plan-tray__item-copy strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.services-plan-tray__item-copy small {
  margin-top: 3px;
  color: var(--acq-muted);
  font-size: 0.7rem;
}

.services-plan-tray__summary > p {
  margin: 15px 0 0;
  color: var(--acq-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

body[data-page="services"].has-services-plan .haven-footer {
  padding-bottom: 112px;
}

@media (max-width: 1180px) {
  body[data-page="services"] .services-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 34px;
  }

  .services-item {
    grid-template-columns: 1fr;
  }

  .services-item__controls {
    justify-content: flex-end;
    padding: 0 10px 14px;
  }

  .services-route {
    min-height: 78px;
    padding-bottom: 8px;
  }
}

@media (max-width: 900px) {
  body[data-page="services"] .services-hero__grid {
    grid-template-columns: 1fr;
  }

  .services-rhythms {
    grid-template-columns: 1fr;
  }

  .services-compass {
    display: flex;
    flex-direction: column;
  }

  .services-compass__body {
    order: -1;
  }

  .services-trust-rail {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 760px);
    margin-top: -18px;
  }

  .services-trust-rail p,
  .services-trust-rail p:first-child {
    border-top: 1px solid var(--acq-line);
    border-left: 0;
  }

  .services-trust-rail p:first-child {
    border-top: 0;
  }

  .services-rhythm-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-family-nav a {
    min-width: 172px;
  }

  .services-family {
    display: block;
    padding: 0;
  }

  .services-family::details-content {
    display: block;
  }

  .services-family__header {
    grid-template-columns: 28px 50px minmax(0, 1fr) 24px;
    min-height: 142px;
    padding: 30px 6px;
  }

  .services-family__title > strong {
    font-size: 2.15rem;
  }

  .services-family__disclosure {
    position: relative;
    display: block;
    align-self: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(20, 34, 59, 0.22);
    border-radius: 50%;
  }

  .services-family__disclosure::before,
  .services-family__disclosure::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1px;
    content: "";
    background: var(--acq-green-dark);
    transform: translate(-50%, -50%);
  }

  .services-family__disclosure::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
  }

  .services-family[open] .services-family__disclosure::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .services-family__routes {
    padding-bottom: 24px;
  }

  .services-guides {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(calc(100% - 32px), 760px);
  }
}

@media (max-width: 680px) {
  body[data-page="services"] .services-hero__grid {
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 50px;
  }

  body[data-page="services"] .services-hero .hero-message h1 {
    max-width: 11ch;
    font-size: 2.7rem;
  }

  body[data-page="services"] .services-hero .hero-message .intro {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .services-hero__rhythms li {
    font-size: 0.68rem;
  }

  .services-hero__browse,
  .services-hero__rhythms {
    display: none;
  }

  .services-compass__visual {
    display: none;
  }

  .services-compass__body {
    padding: 19px 18px 0;
  }

  .services-compass__body h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.75rem;
  }

  .services-compass__kicker {
    display: none;
  }

  .services-compass__links {
    margin-right: -18px;
    margin-left: -18px;
  }

  .services-compass__links a {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 70px;
    padding: 11px 16px;
  }

  .services-compass__links > a > svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .services-trust-rail {
    display: flex;
    gap: 10px;
    width: calc(100% - 16px);
    margin-right: 0;
    padding-right: 16px;
    overflow-x: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    scroll-snap-type: x mandatory;
  }

  .services-trust-rail p,
  .services-trust-rail p:first-child {
    flex: 0 0 min(82vw, 310px);
    min-height: 104px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--acq-line);
    scroll-snap-align: start;
  }

  .services-rhythms {
    margin-top: 54px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services-rhythm-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-rhythm-list button {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 112px;
    padding: 14px 12px;
  }

  .services-rhythm-list button > strong {
    font-size: 1.12rem;
  }

  .services-rhythm-list button > small {
    font-size: 0.7rem;
  }

  .services-rhythm-status {
    align-items: stretch;
    flex-direction: column;
  }

  .services-library {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .services-library__heading {
    margin-bottom: 36px;
  }

  .services-family-nav-shell {
    margin-right: -16px;
    margin-left: -16px;
  }

  .services-family-nav a {
    min-width: 154px;
    min-height: 58px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .services-family__header {
    grid-template-columns: 24px 42px minmax(0, 1fr) 22px;
    gap: 9px;
    min-height: 102px;
    padding: 16px 2px;
  }

  .services-family__number {
    padding-top: 8px;
  }

  .services-family__header .services-icon {
    width: 42px;
    height: 42px;
  }

  .services-family__title > span {
    font-size: 0.64rem;
  }

  .services-family__title > strong {
    font-size: 1.66rem;
  }

  .services-family__title > small {
    display: none;
  }

  .services-item {
    grid-template-columns: minmax(0, 1fr) 104px;
    padding: 6px 0;
  }

  .services-item.is-selected {
    grid-template-columns: 1fr;
  }

  .services-route {
    align-items: start;
    min-height: 88px;
    padding: 9px 4px;
  }

  .services-route:hover,
  .services-route:focus-visible {
    padding-right: 4px;
    padding-left: 8px;
  }

  .services-route > b {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .services-route--request {
    box-shadow: inset 3px 0 0 rgba(106, 139, 91, 0.54);
  }

  .services-item__controls {
    grid-column: 2;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 2px 8px 6px;
  }

  .services-item.is-selected .services-item__controls {
    grid-column: 1;
    align-items: end;
    justify-content: space-between;
    padding: 5px 4px 7px;
  }

  .services-item__cadence {
    flex: 1 1 auto;
    min-width: 0;
  }

  .services-item__toggle {
    flex: 0 0 auto;
    min-width: 104px;
  }

  .services-plans {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .services-plans__heading {
    margin-bottom: 32px;
  }

  .services-plan-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    border: 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
  }

  .services-plan-grid article,
  .services-plan-grid article:nth-child(4),
  .services-plan-grid article:nth-child(5),
  .services-plan-grid article:last-child {
    flex: 0 0 min(84vw, 330px);
    min-height: 286px;
    border: 1px solid var(--acq-line);
    scroll-snap-align: start;
  }

  .services-plan-card {
    min-height: 286px;
  }

  .services-guides {
    gap: 26px;
    padding-bottom: 42px;
  }

  .services-guides nav a {
    min-height: 86px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .services-proof {
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .services-proof__copy h2 {
    font-size: 2.28rem;
  }

  .services-proof__steps li,
  .services-proof__steps li:last-child {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .services-coordination {
    gap: 24px;
    padding: 38px 18px;
  }

  .services-coordination__copy h2 {
    font-size: 2.28rem;
  }

  .services-coordination__steps li {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .services-faq {
    gap: 22px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .services-faq__heading h2 {
    font-size: 2.55rem;
  }

  .services-faq__list summary {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .services-plan-tray {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    border-radius: 13px;
  }

  .services-plan-tray__bar {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 9px;
  }

  .services-plan-tray__toggle {
    min-height: 44px;
  }

  .services-plan-tray__bar .button {
    width: 100%;
    min-height: 46px;
  }

  .services-plan-tray__summary {
    max-height: 62vh;
    padding: 18px 14px;
  }

  .services-plan-tray__summary-heading {
    align-items: start;
  }

  .services-plan-tray__summary-heading h2 {
    font-size: 1.48rem;
  }

  .services-plan-tray__summary li {
    grid-template-columns: minmax(0, 1fr) 148px;
  }

  .services-plan-tray__summary li > button {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 34px;
    padding-left: 0;
  }

  body[data-page="services"].has-services-plan .haven-footer {
    padding-bottom: 164px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-family-nav a::after,
  .services-rhythm-list button,
  .services-item,
  .services-item__toggle,
  .services-plan-card,
  .services-guides nav a,
  .services-plan-tray__toggle > span:last-child {
    transition: none;
  }
}
