@font-face {
  font-family: "Nunito Variable";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/nunito:vf@5.3.0/latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --ink: #1f2c2a;
  --muted: #65706e;
  --primary: #315e58;
  --primary-dark: #244944;
  --primary-soft: #e8f0ee;
  --sage: #9eb8ae;
  --sand: #eee7dc;
  --cream: #f8f6f1;
  --white: #ffffff;
  --line: rgba(31, 44, 42, 0.12);
  --shadow: 0 24px 70px rgba(31, 44, 42, 0.13);
  --radius-lg: 32px;
  --radius-md: 20px;
  --bs-primary: #315e58;
  --bs-primary-rgb: 49, 94, 88;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito Variable", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.offcanvas-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
::selection { background: var(--sage); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container-xxl { max-width: 1320px; }
.section { padding: 120px 0; }

h1, h2, h3, .navbar-brand strong, .footer-brand strong {
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.2rem, 6.7vw, 6.8rem); line-height: .98; font-weight: 790; }
h1 span { color: var(--primary); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.4rem); line-height: 1.06; font-weight: 760; margin: 0; }
h3 { font-size: 1.35rem; font-weight: 760; }
p { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.3rem;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: rgba(255,255,255,.72); margin-bottom: .8rem; }

.btn {
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-padding-y: .88rem;
  --bs-btn-font-weight: 760;
  --bs-btn-border-radius: 999px;
  letter-spacing: -.01em;
}
.btn-lg { --bs-btn-padding-x: 1.75rem; --bs-btn-padding-y: 1.05rem; font-size: 1rem; }
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(49, 94, 88, .18);
}
.btn-light { --bs-btn-color: var(--primary-dark); --bs-btn-hover-color: var(--primary-dark); }
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateY(3px); }
.text-link-light { color: #fff; }
.text-link-light:hover { color: #fff; }

.site-header {
  background: rgba(248, 246, 241, .92);
  border-bottom: 1px solid rgba(31, 44, 42, .06);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(31, 44, 42, .08); background: rgba(248, 246, 241, .98); }
.navbar { min-height: 88px; padding: .7rem 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: .85rem; padding: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  background: var(--primary);
  color: #fff;
  font-size: 1.05rem;
  transform: rotate(-5deg);
}
.brand-mark i { transform: rotate(5deg); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1.18rem; font-weight: 850; }
.brand-copy small { margin-top: .35rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.navbar-nav { gap: 1.25rem; }
.nav-link { position: relative; color: var(--ink); font-size: .95rem; font-weight: 720; padding: .75rem .25rem !important; }
.nav-link::after { content: ""; position: absolute; left: .25rem; right: 100%; bottom: .4rem; height: 2px; background: var(--primary); transition: right .2s ease; }
.nav-link:hover::after, .nav-link.active::after { right: .25rem; }
.navbar-toggler { width: 48px; height: 48px; border: 0; padding: 10px; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; border-radius: 50%; background: var(--white); box-shadow: 0 8px 24px rgba(31,44,42,.08); }
.navbar-toggler:focus { box-shadow: 0 0 0 .25rem rgba(49,94,88,.18); }
.navbar-toggler span { width: 22px; height: 2px; background: var(--ink); border-radius: 9px; }
.offcanvas { --bs-offcanvas-width: min(88vw, 380px); background: var(--cream); }
.offcanvas-title { font-size: 1.35rem; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.3rem; font-weight: 760; text-decoration: none; }

.hero { position: relative; min-height: 780px; padding: 105px 0 110px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 43%; height: 100%; background: var(--sand);}
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-one { width: 300px; height: 300px; left: -180px; top: 90px; border: 1px solid rgba(49,94,88,.2); }
.hero-content { position: relative; z-index: 2; max-width: 710px; }
.hero-lead { max-width: 650px; margin: 2rem 0 2.1rem; font-size: clamp(1.15rem, 1.6vw, 1.32rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin: 3.3rem 0 0; padding: 0; list-style: none; }
.hero-facts li { display: flex; align-items: center; gap: .75rem; padding-right: 1.4rem; margin-right: 1.4rem; border-right: 1px solid var(--line); color: var(--muted); font-size: .86rem; line-height: 1.3; }
.hero-facts li:last-child { border-right: 0; padding-right: 0; margin-right: 0; }
.hero-facts i { color: var(--primary); font-size: 1.15rem; }
.hero-facts strong { color: var(--ink); font-weight: 800; }

.hero-visual { position: relative; z-index: 2; max-width: 650px; margin-left: auto; padding: 22px 0 38px 30px; isolation: isolate; overflow: visible; }
.hero-image-wrap { position: relative; overflow: hidden; box-shadow: var(--shadow); background: #ddd; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(31,44,42,.14)); pointer-events: none; }
.hero-image-wrap img { width: 100%; min-height: 590px; object-fit: cover; object-position: 50% center; display: block; }
.appointment-card { position: absolute; z-index: 20; left: 0; bottom: 0; display: flex; align-items: center; gap: .9rem; min-width: 270px; padding: 1rem 1.15rem; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-md); background: rgba(255,255,255,.94); box-shadow: 0 16px 45px rgba(31,44,42,.16); backdrop-filter: blur(12px); }
.appointment-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); }
.appointment-card small { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; }
.appointment-card a { color: var(--ink); font-size: 1.15rem; font-weight: 850; text-decoration: none; }
.experience-note { position: absolute; z-index: 20; top: 72px; right: -25px; display: flex; align-items: center; gap: .7rem; padding: .9rem 1rem; border-radius: 16px; color: #fff; background: var(--primary); box-shadow: 0 18px 40px rgba(36,73,68,.24); font-size: .82rem; font-weight: 760; line-height: 1.25; }
.experience-note i { color: #f1d2bc; }

.hero-static-row { min-height: 625px; }
.hero-slider .carousel { position: relative; z-index: 1; }
.hero-slider .carousel-inner { position: relative; z-index: 1; overflow: hidden; }
.hero-slider .carousel-item { transition: opacity .7s ease-in-out; }
.hero-visual-slider { padding-bottom: 72px; }
.hero-slider .experience-note { right: 18px; }
.hero-image-detail img { object-position: center center; }
.hero-image-personal img { object-position: 48% center; }
.hero-carousel-indicators {
  z-index: 8;
  right: auto;
  bottom: -52px;
  left: 0;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
}
.hero-carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: var(--sage);
  opacity: .42;
  transition: width .25s ease, opacity .25s ease, background-color .25s ease;
}
.hero-carousel-indicators .active {
  width: 52px;
  background-color: var(--primary);
  opacity: 1;
}
.hero-carousel-control {
  z-index: 8;
  top: auto;
  bottom: -66px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 25px rgba(31,44,42,.08);
  opacity: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.hero-carousel-control:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--primary);
}
.hero-carousel-control i { font-size: .9rem; }
.hero-slider .carousel-control-prev { left: auto; right: 62px; }
.hero-slider .carousel-control-next { right: 0; }

.intro-strip { padding: 31px 0; color: #fff; background: var(--primary-dark); }
.intro-strip p { margin: 0; color: rgba(255,255,255,.74); font-size: 1.06rem; }
.intro-strip p strong { color: #fff; }

.section-heading { margin-bottom: 4rem; }
.section-heading p { margin: 0; font-size: 1.05rem; }
.services { background: #fff; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 1.5rem; align-items: center; padding: 2rem .5rem; border-bottom: 1px solid var(--line); transition: background .2s ease, padding .2s ease; }
.service-item:hover { padding-left: 1.2rem; padding-right: 1.2rem; background: var(--cream); }
.service-number { color: var(--sage); font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.service-item h3 { margin: 0 0 .35rem; }
.service-item p { max-width: 750px; margin: 0; font-size: .96rem; }
.service-note { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 1rem; align-items: center; margin-top: 2.25rem; padding: 1.15rem 1.25rem; border-radius: 14px; background: var(--primary-soft); }
.service-note > i { color: var(--primary); font-size: 1.15rem; }
.service-note p { margin: 0; color: var(--ink); font-size: .93rem; }
.service-note a { color: var(--primary-dark); font-size: .9rem; font-weight: 850; text-underline-offset: 4px; white-space: nowrap; }

.about { background: var(--cream); }
.about-panel { overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 20px 60px rgba(31,44,42,.07); }
.about-quote { position: relative; height: 100%; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2.4rem, 5vw, 4rem); background: var(--primary); overflow: hidden; }
.about-quote::before, .about-quote::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.about-quote::before { width: 340px; height: 340px; top: -160px; right: -130px; }
.about-quote::after { width: 190px; height: 190px; bottom: -90px; left: -80px; }
.about-quote i { position: absolute; top: 3rem; left: clamp(2.4rem, 5vw, 4rem); color: rgba(255,255,255,.22); font-size: 4.5rem; }
.about-quote blockquote { position: relative; margin: 0 0 1.5rem; color: #fff; font-size: clamp(1.55rem, 2.4vw, 2.3rem); font-weight: 690; line-height: 1.25; letter-spacing: -.03em; }
.about-quote p { position: relative; margin: 0; color: rgba(255,255,255,.72); font-weight: 750; }
.about-copy { padding: clamp(2.7rem, 6vw, 5rem); }
.about-copy h2 { margin-bottom: 1.8rem; font-size: clamp(2.3rem, 4vw, 3.8rem); }
.about-copy > p { font-size: 1.04rem; }
.about-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem 1.25rem; margin-top: 2rem; }
.about-points span { display: flex; align-items: center; gap: .65rem; color: var(--ink); font-size: .92rem; font-weight: 760; }
.about-points i { display: grid; place-items: center; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-size: .68rem; }

.home-visits { padding: 0 0 120px; background: var(--cream); }
.home-visits-inner {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  padding: clamp(2.6rem, 4.5vw, 3.75rem) clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  color: #fff;
  background: #315e58;
  box-shadow: 0 24px 60px rgba(31, 44, 42, .14);
}
.home-visits-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: 1.8rem;
}
.home-visits .eyebrow { margin-bottom: .65rem; }
.home-visits h2 {
  max-width: 760px;
  margin-bottom: .8rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}
.home-visits p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}
.home-visits .btn-light {
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-color: #244944;
  --bs-btn-hover-bg: #f0f5f4;
  --bs-btn-hover-border-color: #f0f5f4;
  --bs-btn-hover-color: #1f3f3b;
  --bs-btn-active-bg: #e6efed;
  --bs-btn-active-border-color: #e6efed;
  --bs-btn-active-color: #1f3f3b;
  min-width: 218px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(20, 45, 42, .16);
}
.home-visits .btn-light:focus-visible {
  box-shadow: 0 0 0 .25rem rgba(255,255,255,.28), 0 12px 28px rgba(20,45,42,.16);
}

.contact { background: #fff; }
.contact h2 { margin-bottom: 1.5rem; }
.contact-intro { max-width: 590px; font-size: 1.08rem; }
.phone-display { display: inline-flex; align-items: center; gap: 1rem; margin-top: 1.5rem; color: inherit; text-decoration: none; }
.phone-display > span { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--primary); color: #fff; box-shadow: 0 12px 28px rgba(49,94,88,.18); }
.phone-display small { display: block; color: var(--muted); font-size: .73rem; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }
.phone-display strong { display: block; color: var(--ink); font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 850; letter-spacing: -.03em; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); overflow: hidden; }
.contact-row { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 1.2rem; align-items: start; padding: 1.7rem 1.9rem; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: #fff; color: var(--primary); box-shadow: 0 8px 20px rgba(31,44,42,.06); }
.contact-row small { display: block; color: var(--primary); font-size: .71rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-row strong { display: block; margin: .12rem 0 .3rem; font-size: 1.08rem; }
.contact-row strong a { text-decoration: none; }
.contact-row p { margin: 0; font-size: .94rem; line-height: 1.55; }
.contact-row > a { align-self: center; color: var(--primary-dark); font-size: .86rem; font-weight: 850; text-decoration: none; white-space: nowrap; }
.contact-row > a i { margin-left: .35rem; font-size: .74rem; }

.site-footer { padding: 4rem 0 1.5rem; color: #fff; background: var(--primary-dark); }
.footer-main { display: flex; justify-content: space-between; gap: 2rem; align-items: center; padding-bottom: 2.8rem; }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.brand-mark-light { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-size: 1.25rem; }
.footer-brand small { color: rgba(255,255,255,.58); font-size: .75rem; }
.footer-contact { display: flex; flex-wrap: wrap; gap: .75rem 1.7rem; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 730; }
.footer-contact i { margin-right: .55rem; color: var(--sage); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: center; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.52); font-size: .78rem; }
.footer-bottom nav { display: flex; gap: 1rem; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.credit { text-align: right; }
.mobile-callbar { display: none; }

.legal-page { min-height: 60vh; padding: 90px 0 110px; background: #fff; }
.legal-shell { max-width: 900px; }
.legal-shell h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 2rem; }
.legal-shell h2 { margin: 2.5rem 0 1rem; font-size: 1.55rem; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-note { margin-bottom: 2rem; padding: 1rem 1.2rem; border-left: 4px solid #d6a66e; background: #fff7ed; color: #704b20; }

@media (max-width: 1199.98px) {
  .hero { min-height: auto; }
  .hero::before { width: 45%; }
  .hero-facts li { margin-right: .8rem; padding-right: .8rem; }
  .experience-note { right: 0; }
}

@media (max-width: 991.98px) {
  body { padding-bottom: 70px; }
  .hero-static-row { min-height: 0; }
  .hero-carousel-indicators { left: 22px; }
  .hero-slider .carousel-control-next { right: 22px; }
  .hero-slider .carousel-control-prev { right: 84px; }
  .section { padding: 88px 0; }
  .hero { padding: 80px 0 100px; }
  .hero::before { top: auto; bottom: 0; width: 100%; height: 46%; border-radius: 70px 70px 0 0; }
  .hero-content { max-width: 760px; }
  .hero-visual { max-width: 760px; margin: 1.5rem auto 0; padding-left: 0; }
  .hero-image-wrap img { min-height: 510px; }
  .appointment-card { left: 18px; }
  .experience-note { right: 18px; }
  .section-heading { margin-bottom: 2.8rem; }
  .home-visits { padding-bottom: 88px; }
  .home-visits-inner {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
    padding: 2.75rem;
  }
  .home-visits-icon { width: 72px; height: 72px; }
  .home-visits .btn { grid-column: 2; justify-self: start; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .credit { grid-column: 1 / -1; text-align: left; }
  .mobile-callbar { display: block; position: fixed; z-index: 1035; left: 0; right: 0; bottom: 0; padding: 8px 12px max(8px, env(safe-area-inset-bottom)); background: rgba(248,246,241,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
  .mobile-callbar a { display: flex; align-items: center; justify-content: center; gap: .65rem; min-height: 50px; border-radius: 999px; background: var(--primary); color: #fff; font-weight: 800; text-decoration: none; }
}

@media (max-width: 767.98px) {
  body { font-size: 1rem; }
  .hero-carousel-indicators { bottom: -50px; left: 22px; }
  .hero-carousel-control { bottom: -64px; width: 44px; height: 44px; }
  .hero-slider .carousel-control-next { right: 22px; }
  .hero-slider .carousel-control-prev { right: 76px; }
  .container-xxl { padding-left: 22px; padding-right: 22px; }
  .navbar { min-height: 76px; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 1.03rem; }
  .brand-copy small { font-size: .63rem; }
  h1 { font-size: clamp(2.85rem, 14.2vw, 4.5rem); }
  .hero { padding-top: 62px; }
  .hero-lead { margin: 1.5rem 0 1.8rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.4rem; }
  .hero-facts li { align-items: flex-start; flex-direction: column; gap: .5rem; margin: 0; padding: 0 .75rem; text-align: center; }
  .hero-facts li:first-child { padding-left: 0; }
  .hero-facts li:last-child { padding-right: 0; }
  .hero-facts i { margin: 0 auto; }
  .hero-image-wrap { border-radius: 30px; }
  .hero-image-wrap img { min-height: 400px; object-position: 58% center; }
  .appointment-card { position: relative; left: auto; bottom: auto; margin: -32px 16px 0; }
  .experience-note { top: 32px; right: -5px; }
  .intro-strip { padding: 26px 0; }
  .intro-strip .text-lg-end { margin-top: .4rem; }
  .service-item { grid-template-columns: 1fr; gap: 0; padding: 1.5rem 0; }
  .service-number { display: none; }
  .service-item:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .service-note { grid-template-columns: 30px 1fr; }
  .service-note a { grid-column: 2; }
  .about-quote { min-height: 440px; }
  .about-points { grid-template-columns: 1fr; }
  .home-visits-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.25rem 1.5rem;
    border-radius: 24px;
  }
  .home-visits-icon { width: 64px; height: 64px; font-size: 1.45rem; }
  .home-visits h2 { margin-bottom: .65rem; }
  .home-visits .btn { grid-column: 1; width: 100%; min-width: 0; margin-top: .25rem; }
  .contact-row { grid-template-columns: 48px minmax(0, 1fr); padding: 1.35rem; }
  .contact-icon { width: 45px; height: 45px; }
  .contact-row > a { grid-column: 2; justify-self: start; margin-top: .25rem; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom nav { order: 2; }
  .credit { order: 3; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-facts li { padding: 0 .45rem; font-size: .76rem; }
  .experience-note { display: none; }
  .appointment-card { min-width: 0; width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slider .carousel-item { transition: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/*
 * Ergänzungen für das RSCE „Fußpflege: Hero mit Bild-Slider“.
 * Diese Regeln zusätzlich zur bestehenden Website-CSS einbinden.
 */

.hero-image-wrap figure,
.hero-image-wrap picture,
.hero-image-wrap .image_container {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.hero-image-wrap picture img,
.hero-image-wrap figure img {
    width: 100%;
}

.hero-image-left img {
    object-position: 35% center;
}

.hero-image-right img {
    object-position: 65% center;
}

.hero-image-top img {
    object-position: center 25%;
}

.hero-image-bottom img {
    object-position: center 75%;
}

/* Die Terminkarte muss über dem Bootstrap-Carousel liegen. */
.hero-visual-slider {
    isolation: isolate;
    overflow: visible;
}

.hero-visual-slider > .carousel {
    position: relative;
    z-index: 1;
}

.hero-visual-slider .appointment-card {
    z-index: 20;
}

/*
 * Nur einbinden, wenn diese Regeln nicht bereits in der zentralen styles.css
 * der Website vorhanden sind.
 */
.intro-strip {
  padding: 31px 0;
  color: #fff;
  background: var(--primary-dark, #244944);
}

.intro-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.06rem;
  line-height: 1.65;
}

.intro-strip p strong {
  color: #fff;
  font-weight: 800;
}

.intro-strip .text-link-light {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 780;
  text-decoration: none;
}

.intro-strip .text-link-light i {
  transition: transform .2s ease;
}

.intro-strip .text-link-light:hover,
.intro-strip .text-link-light:focus-visible {
  color: #fff;
}

.intro-strip .text-link-light:hover i,
.intro-strip .text-link-light:focus-visible i {
  transform: translateX(4px);
}

.intro-strip .text-link-light:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(255, 255, 255, .45);
  outline-offset: 5px;
}

@media (max-width: 991.98px) {
  .intro-strip {
    padding: 26px 0;
  }

  .intro-strip .text-lg-end {
    margin-top: .4rem;
  }
}
/*
 * Nur einbinden, wenn die entsprechenden Regeln nicht bereits in der
 * zentralen styles.css der Website vorhanden sind.
 */
.services {
  background: #fff;
}

.section-heading {
  margin-bottom: 3.6rem;
}

.section-heading h2 {
  margin: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted, #667085);
  line-height: 1.75;
}

.service-list {
  border-top: 1px solid var(--line, rgba(31, 44, 42, .12));
}

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line, rgba(31, 44, 42, .12));
  transition: background-color .2s ease, padding .2s ease;
}

.service-item:hover {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  background: var(--cream, #f8f6f1);
}

.service-number {
  padding-top: .35rem;
  color: var(--primary, #315e58);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.service-item h3 {
  margin: 0 0 .35rem;
}

.service-item p {
  max-width: 750px;
  margin: 0;
  color: var(--muted, #667085);
  font-size: .96rem;
  line-height: 1.7;
}

.service-note {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: var(--primary-soft, #e9f1f0);
}

.service-note--without-icon {
  grid-template-columns: minmax(0, 1fr) auto;
}

.service-note > i {
  color: var(--primary, #315e58);
  font-size: 1.15rem;
}

.service-note p {
  margin: 0;
  color: var(--ink, #1f2c2a);
  font-size: .93rem;
  line-height: 1.65;
}

.service-note a {
  color: var(--primary-dark, #244944);
  font-size: .9rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.service-note a:hover {
  text-decoration-thickness: 2px;
}

.service-note a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(49, 94, 88, .25);
  outline-offset: 4px;
}

@media (max-width: 767.98px) {
  .section-heading {
    margin-bottom: 2.8rem;
  }

  .service-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .85rem;
    padding: 1.45rem 0;
  }

  .service-item:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .service-note,
  .service-note--without-icon {
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
  }

  .service-note--without-icon {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-note a {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .service-note--without-icon a {
    grid-column: 1;
  }
}

@media (max-width: 479.98px) {
  .service-item {
    grid-template-columns: 1fr;
  }

  .service-number {
    padding-top: 0;
  }
}
/*
 * Ergänzende Styles für das RSCE „Fußpflege – Über die Praxis“.
 * Nicht erneut einbinden, wenn diese Regeln bereits in der Haupt-CSS enthalten sind.
 */

.about {
  background: var(--cream, #f8f6f1);
}

.about-panel {
  overflow: hidden;
  border-radius: var(--radius-lg, 32px);
  background: #fff;
  box-shadow: 0 20px 60px rgba(31, 44, 42, .07);
}

.about-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 520px;
  padding: clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
  color: #fff;
  background: #315e58;
}

.about-quote::before,
.about-quote::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  pointer-events: none;
}

.about-quote::before {
  top: -160px;
  right: -130px;
  width: 340px;
  height: 340px;
}

.about-quote::after {
  bottom: -90px;
  left: -80px;
  width: 190px;
  height: 190px;
}

.about-quote > i {
  position: absolute;
  top: 3rem;
  left: clamp(2.4rem, 5vw, 4rem);
  color: rgba(255, 255, 255, .22);
  font-size: 4.5rem;
}

.about-quote blockquote {
  position: relative;
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  font-weight: 690;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.about-quote p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 750;
}

.about-copy {
  padding: clamp(2.7rem, 6vw, 5rem);
}

.about-copy h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.about-copy > p {
  font-size: 1.04rem;
}

.about-copy > p:last-of-type {
  margin-bottom: 0;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1.25rem;
  margin-top: 2rem;
}

.about-points span {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink, #1f2c2a);
  font-size: .92rem;
  font-weight: 760;
}

.about-points i {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #315e58;
  font-size: .68rem;
}

@media (max-width: 991.98px) {
  .about-quote {
    min-height: 430px;
  }
}

@media (max-width: 767.98px) {
  .about-panel {
    border-radius: 24px;
  }

  .about-quote {
    min-height: 390px;
    padding: 2.4rem 2rem;
  }

  .about-quote > i {
    top: 2.2rem;
    left: 2rem;
    font-size: 3.6rem;
  }

  .about-copy {
    padding: 2.7rem 2rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
}
/*
 * Fußpflege – Hausbesuche
 * Nur einbinden, wenn diese Regeln nicht bereits in der globalen styles.css vorhanden sind.
 */

.home-visits {
  padding: 0 0 120px;
  background: var(--cream, #f8f6f1);
}

.home-visits-inner {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  padding: clamp(2.6rem, 4.5vw, 3.75rem) clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg, 32px);
  color: #fff;
  background: #315e58;
  box-shadow: 0 24px 60px rgba(31, 44, 42, .14);
}

.home-visits-inner--without-icon {
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-visits-inner--without-button {
  grid-template-columns: 96px minmax(0, 1fr);
}

.home-visits-inner--without-icon.home-visits-inner--without-button {
  grid-template-columns: minmax(0, 1fr);
}

.home-visits-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-size: 1.8rem;
}

.home-visits-content {
  min-width: 0;
}

.home-visits .eyebrow {
  margin-bottom: .65rem;
}

.home-visits h2 {
  max-width: 760px;
  margin-bottom: .8rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.home-visits p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.65;
}

.home-visits .btn-light {
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-color: #244944;
  --bs-btn-hover-bg: #f0f5f4;
  --bs-btn-hover-border-color: #f0f5f4;
  --bs-btn-hover-color: #1f3f3b;
  --bs-btn-active-bg: #e6efed;
  --bs-btn-active-border-color: #e6efed;
  --bs-btn-active-color: #1f3f3b;
  min-width: 218px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(20, 45, 42, .16);
}

.home-visits .btn-light:focus-visible {
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .28), 0 12px 28px rgba(20, 45, 42, .16);
}

@media (max-width: 991.98px) {
  .home-visits {
    padding-bottom: 88px;
  }

  .home-visits-inner,
  .home-visits-inner--without-button {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
    padding: 2.75rem;
  }

  .home-visits-inner--without-icon,
  .home-visits-inner--without-icon.home-visits-inner--without-button {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-visits-icon {
    width: 72px;
    height: 72px;
  }

  .home-visits .btn {
    grid-column: 2;
    justify-self: start;
  }

  .home-visits-inner--without-icon .btn {
    grid-column: 1;
  }
}

@media (max-width: 767.98px) {
  .home-visits-inner,
  .home-visits-inner--without-icon,
  .home-visits-inner--without-button,
  .home-visits-inner--without-icon.home-visits-inner--without-button {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.25rem 1.5rem;
    border-radius: 24px;
  }

  .home-visits-icon {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }

  .home-visits h2 {
    margin-bottom: .65rem;
  }

  .home-visits .btn,
  .home-visits-inner--without-icon .btn {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    margin-top: .25rem;
  }
}

/*
 * Fußpflege – Kontakt
 * Nur einbinden, wenn diese Regeln nicht bereits in der globalen styles.css vorhanden sind.
 */

.contact {
  background: #fff;
}

.contact h2 {
  margin-bottom: 1.5rem;
}

.contact-intro {
  max-width: 590px;
  font-size: 1.08rem;
}

.phone-display {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  color: inherit;
  text-decoration: none;
}

.phone-display > span {
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary, #315e58);
  color: #fff;
  box-shadow: 0 12px 28px rgba(49, 94, 88, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.phone-display:hover > span {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(49, 94, 88, .23);
}

.phone-display:focus-visible {
  outline: 3px solid rgba(49, 94, 88, .28);
  outline-offset: 5px;
  border-radius: 12px;
}

.phone-display--without-icon {
  gap: 0;
}

.phone-display small {
  display: block;
  color: var(--muted, #65706d);
  font-size: .73rem;
  font-weight: 780;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.phone-display strong {
  display: block;
  color: var(--ink, #1f2c2a);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -.03em;
}

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line, #e5e9e7);
  border-radius: var(--radius-lg, 32px);
  background: var(--cream, #f8f6f1);
}

.contact-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
  padding: 1.7rem 1.9rem;
  border-bottom: 1px solid var(--line, #e5e9e7);
}

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

.contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary, #315e58);
  box-shadow: 0 8px 20px rgba(31, 44, 42, .06);
}

.contact-icon--empty {
  box-shadow: none;
  background: transparent;
}

.contact-row small {
  display: block;
  color: var(--primary, #315e58);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-row strong {
  display: block;
  margin: .12rem 0 .3rem;
  color: var(--ink, #1f2c2a);
  font-size: 1.08rem;
}

.contact-row strong a {
  color: inherit;
  text-decoration: none;
}

.contact-row strong a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-row p {
  margin: 0;
  color: var(--muted, #65706d);
  font-size: .94rem;
  line-height: 1.55;
}

.contact-row > a {
  align-self: center;
  color: var(--primary-dark, #244944);
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.contact-row > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-row > a:focus-visible,
.contact-row strong a:focus-visible {
  outline: 3px solid rgba(49, 94, 88, .24);
  outline-offset: 4px;
  border-radius: 4px;
}

.contact-row > a i {
  margin-left: .35rem;
  font-size: .74rem;
}

@media (max-width: 991.98px) {
  .contact .row.g-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (max-width: 767.98px) {
  .contact-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.35rem;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-row > a {
    grid-column: 2;
    justify-self: start;
    margin-top: .25rem;
  }
}

@media (max-width: 420px) {
  .phone-display {
    align-items: flex-start;
  }

  .phone-display > span {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .contact-card {
    border-radius: 24px;
  }

  .contact-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .85rem;
    padding: 1.2rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }
}

/*
 * RockSolid Custom Element: Fußpflege – Rechtliche Inhaltsseite
 * Nur einbinden, wenn diese Regeln nicht bereits in der globalen styles.css vorhanden sind.
 */

.rsce-legal-page {
  width: 100%;
  max-width: 900px;
}

.rsce-legal-page--spaced {
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
}

.rsce-legal-page h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.rsce-legal-page h2 {
  margin: 2.7rem 0 1rem;
  font-size: clamp(1.45rem, 2.3vw, 1.7rem);
  line-height: 1.25;
}

.rsce-legal-page h3 {
  margin: 2rem 0 .8rem;
  font-size: clamp(1.18rem, 1.8vw, 1.35rem);
  line-height: 1.3;
}

.rsce-legal-page .legal-note {
  margin-bottom: 2.25rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #d6a66e;
  border-radius: 0 10px 10px 0;
  background: #fff7ed;
  color: #704b20;
  line-height: 1.65;
}

.rsce-legal-page .legal-content {
  color: var(--muted, #5d6b69);
  line-height: 1.75;
}

.rsce-legal-page .legal-content p,
.rsce-legal-page .legal-content ul,
.rsce-legal-page .legal-content ol,
.rsce-legal-page .legal-content table,
.rsce-legal-page .legal-content blockquote {
  margin-bottom: 1.15rem;
}

.rsce-legal-page .legal-content ul,
.rsce-legal-page .legal-content ol {
  padding-left: 1.4rem;
}

.rsce-legal-page .legal-content a {
  color: var(--primary, #315e58);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rsce-legal-page .legal-content a:hover {
  text-decoration-thickness: 2px;
}

.rsce-legal-page .legal-content table {
  width: 100%;
  border-collapse: collapse;
}

.rsce-legal-page .legal-content th,
.rsce-legal-page .legal-content td {
  padding: .75rem;
  border: 1px solid rgba(31, 44, 42, .14);
  vertical-align: top;
}

.rsce-legal-page .legal-content > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .rsce-legal-page--spaced {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .rsce-legal-page h1 {
    margin-bottom: 1.5rem;
  }

  .rsce-legal-page h2 {
    margin-top: 2.2rem;
  }
}
/*
 * Fußpflege – Hausbesuche / Gutschein-Teaser
 * SVG-Icons werden groß, freigestellt und auf Wunsch weiß dargestellt.
 */

.home-visits {
  padding: 0 0 120px;
  background: var(--cream, #f8f6f1);
}

.home-visits-inner {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  min-height: 290px;
  padding: clamp(2.75rem, 4.5vw, 4rem) clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg, 32px);
  color: #fff;
  background: #315e58;
  box-shadow: 0 24px 60px rgba(31, 44, 42, .14);
  overflow: hidden;
}

.home-visits-inner--svg-icon {
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) auto;
}

.home-visits-inner--without-icon {
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-visits-inner--without-button {
  grid-template-columns: 96px minmax(0, 1fr);
}

.home-visits-inner--svg-icon.home-visits-inner--without-button {
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
}

.home-visits-inner--without-icon.home-visits-inner--without-button {
  grid-template-columns: minmax(0, 1fr);
}

.home-visits-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
}

.home-visits-icon--font {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-size: 1.8rem;
}

.home-visits-icon--svg {
  width: min(100%, 180px);
  min-height: 130px;
}

.home-visits-icon--svg img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 145px;
  object-fit: contain;
  object-position: center;
}

.home-visits-icon--svg img.is-inverted {
  filter: brightness(0) invert(1);
}

.home-visits-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-visits .eyebrow {
  margin-bottom: .65rem;
}

.home-visits h2 {
  max-width: 760px;
  margin-bottom: .8rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.home-visits p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.65;
}

.home-visits .btn-light {
  position: relative;
  z-index: 1;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-color: #244944;
  --bs-btn-hover-bg: #f0f5f4;
  --bs-btn-hover-border-color: #f0f5f4;
  --bs-btn-hover-color: #1f3f3b;
  --bs-btn-active-bg: #e6efed;
  --bs-btn-active-border-color: #e6efed;
  --bs-btn-active-color: #1f3f3b;
  min-width: 218px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(20, 45, 42, .16);
}

.home-visits .btn-light:focus-visible {
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .28), 0 12px 28px rgba(20, 45, 42, .16);
}

@media (max-width: 1199.98px) {
  .home-visits-inner--svg-icon {
    grid-template-columns: 140px minmax(0, 1fr) auto;
  }

  .home-visits-icon--svg {
    width: 140px;
  }

  .home-visits-icon--svg img {
    max-width: 140px;
    max-height: 125px;
  }
}

@media (max-width: 991.98px) {
  .home-visits {
    padding-bottom: 88px;
  }

  .home-visits-inner,
  .home-visits-inner--without-button {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
    min-height: 0;
    padding: 2.75rem;
  }

  .home-visits-inner--svg-icon,
  .home-visits-inner--svg-icon.home-visits-inner--without-button {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .home-visits-inner--without-icon,
  .home-visits-inner--without-icon.home-visits-inner--without-button {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-visits-icon--font {
    width: 72px;
    height: 72px;
  }

  .home-visits-icon--svg,
  .home-visits-icon--svg img {
    width: 130px;
    max-width: 130px;
    max-height: 115px;
  }

  .home-visits .btn {
    grid-column: 2;
    justify-self: start;
  }

  .home-visits-inner--without-icon .btn {
    grid-column: 1;
  }
}

@media (max-width: 767.98px) {
  .home-visits-inner,
  .home-visits-inner--svg-icon,
  .home-visits-inner--without-icon,
  .home-visits-inner--without-button,
  .home-visits-inner--svg-icon.home-visits-inner--without-button,
  .home-visits-inner--without-icon.home-visits-inner--without-button {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.25rem 1.5rem;
    border-radius: 24px;
  }

  .home-visits-icon {
    justify-self: start;
  }

  .home-visits-icon--font {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }

  .home-visits-icon--svg,
  .home-visits-icon--svg img {
    width: 118px;
    max-width: 118px;
    max-height: 105px;
  }

  .home-visits h2 {
    margin-bottom: .65rem;
  }

  .home-visits .btn,
  .home-visits-inner--without-icon .btn {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    margin-top: .25rem;
  }
}

