:root {
  --ink: #102126;
  --muted: #5f6f72;
  --line: #d8e3e1;
  --paper: #fbf8f2;
  --white: #ffffff;
  --mint: #e1f3f8;
  --teal: #1f97c5;
  --teal-dark: #126b92;
  --coral: #d6725b;
  --gold: #b99754;
  --shadow: 0 24px 70px rgba(16, 33, 38, 0.16);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --container-padding: 24px;
  --container-padding-mobile: 18px;
  --header-radius: 8px;
  --header-shadow: 0 12px 34px rgba(16, 33, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(calc(100% - (var(--container-padding) * 2)), var(--max));
  min-height: 76px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--header-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--header-shadow);
  backdrop-filter: blur(18px) saturate(170%);
  transition:
    min-height 240ms var(--ease-premium),
    padding 240ms var(--ease-premium),
    background 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    backdrop-filter 240ms var(--ease-premium);
}

.site-header.is-scrolled {
  min-height: 70px;
  padding: 8px 14px 8px 16px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(16, 33, 38, 0.11);
  backdrop-filter: blur(20px) saturate(180%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: opacity 220ms var(--ease-premium);
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.86;
  outline: none;
}

.brand-logo {
  width: 62px;
  height: 70px;
  flex: 0 0 62px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 220ms var(--ease-premium),
    opacity 220ms var(--ease-premium),
    background 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
  background: var(--mint);
  outline: none;
}

.site-nav a.is-active {
  color: var(--ink);
  background: rgba(217, 239, 231, 0.72);
}

.site-nav a.nav-cta {
  margin-left: 8px;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(18, 107, 146, 0.25);
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 38px rgba(18, 107, 146, 0.3);
  transform: translateY(-1px);
}

.site-nav a.nav-cta:active {
  box-shadow: 0 10px 22px rgba(18, 107, 146, 0.18);
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(16, 33, 38, 0.08);
  outline: none;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 32px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(18, 107, 146, 0.25);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.floating-call svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
}

.floating-call:hover,
.floating-call:focus-visible {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 22px 46px rgba(18, 107, 146, 0.32);
  outline: none;
  transform: translateY(-4px) scale(1.02);
}

.floating-call:active {
  box-shadow: 0 10px 24px rgba(18, 107, 146, 0.2);
  transform: translateY(0) scale(1);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 136px 24px 72px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: min(42vw, 620px);
  background: linear-gradient(90deg, rgba(251, 248, 242, 0.38), rgba(251, 248, 242, 0));
  backdrop-filter: blur(3px) saturate(78%);
  pointer-events: none;
}

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

.hero-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroImageSettle 1000ms var(--ease-premium) both;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.82) 0%, rgba(251, 248, 242, 0.5) 44%, rgba(251, 248, 242, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 33, 38, 0.22), rgba(16, 33, 38, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5.05rem);
  line-height: 1;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  color: #33474c;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 20px;
}

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

.button.primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(18, 107, 146, 0.25);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal);
  box-shadow: 0 20px 42px rgba(18, 107, 146, 0.32);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(18, 107, 146, 0.28);
  background: #f5f7fa;
  box-shadow: 0 16px 34px rgba(16, 33, 38, 0.1);
  font-weight: 800;
}

.button.secondary svg {
  color: var(--teal-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--teal-dark);
  box-shadow: 0 18px 38px rgba(16, 33, 38, 0.13);
}

.button:active {
  box-shadow: 0 8px 18px rgba(16, 33, 38, 0.1);
  transform: translateY(0);
}

.hero-facts {
  margin-top: 26px;
  color: #23373c;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-facts span,
.hero-facts a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(31, 151, 197, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(16, 33, 38, 0.08);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.hero-facts span:hover,
.hero-facts a:hover {
  border-color: rgba(31, 151, 197, 0.28);
  box-shadow: 0 14px 34px rgba(16, 33, 38, 0.1);
  transform: translateY(-2px);
}

.hero-facts a:focus-visible {
  border-color: rgba(31, 151, 197, 0.42);
  box-shadow:
    0 0 0 4px rgba(18, 107, 146, 0.14),
    0 14px 34px rgba(16, 33, 38, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.fact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: var(--teal-dark);
}

.google-reviews {
  padding-top: clamp(42px, 6vw, 68px);
  padding-bottom: clamp(18px, 3vw, 32px);
  background: var(--white);
}

.reviews-inner {
  display: grid;
  gap: 22px;
}

.reviews-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.reviews-summary h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.reviews-rating {
  display: grid;
  justify-items: start;
  gap: 6px;
  min-width: 220px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(16, 33, 38, 0.06);
}

.reviews-rating div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.reviews-rating strong {
  color: var(--teal-dark);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.rating-source {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-stars {
  color: #FBBC05;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.reviews-rating small,
.reviews-fallback {
  color: var(--muted);
}

.rating-profile {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.reviews-fallback {
  margin: 0;
  font-size: 1rem;
}

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

.review-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(16, 33, 38, 0.045);
  transition:
    border-color 250ms var(--ease-premium),
    box-shadow 250ms var(--ease-premium),
    transform 250ms var(--ease-premium);
}

.review-card:hover {
  border-color: rgba(31, 151, 197, 0.24);
  box-shadow: 0 22px 48px rgba(16, 33, 38, 0.11);
  transform: translateY(-4px);
}

.review-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.review-avatar.tone-1 {
  color: #126b92;
  background: #e1f3f8;
}

.review-avatar.tone-2 {
  color: #0f6f69;
  background: #ddf3ef;
}

.review-avatar.tone-3 {
  color: #2f6f97;
  background: #e5eef8;
}

.review-avatar.tone-4 {
  color: #477074;
  background: #e6f2f1;
}

.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.review-card time,
.review-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(31, 151, 197, 0.16);
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(225, 243, 248, 0.46);
}

.review-source span {
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

.review-card > .review-stars {
  display: block;
  margin-bottom: 12px;
}

.review-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.reviews-link {
  justify-self: start;
  margin-top: 2px;
}

.reviews-link span {
  display: inline-block;
  transition: transform 220ms var(--ease-premium);
}

.reviews-link:hover,
.reviews-link:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.reviews-link:hover span,
.reviews-link:focus-visible span {
  transform: translateX(4px);
}

.care-feature {
  padding-top: clamp(8px, 2vw, 18px);
  background: var(--white);
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(72px, 9vw, 120px);
  align-items: center;
}

.care-image-wrap {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  transition:
    box-shadow 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
}

.care-image-wrap:hover {
  box-shadow: 0 18px 42px rgba(16, 33, 38, 0.08);
  transform: translateY(-2px);
}

.care-image-wrap img {
  width: 100%;
  aspect-ratio: 5 / 5.4;
  object-fit: cover;
  object-position: center;
}

.care-copy {
  max-width: 560px;
}

.care-copy h2 {
  color: var(--teal-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
}

.care-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #33474c;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.care-button {
  margin-top: 38px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: clamp(64px, 10vw, 112px) var(--container-padding);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero {
  padding: 156px var(--container-padding) 84px;
  background:
    linear-gradient(135deg, rgba(217, 239, 231, 0.88), rgba(251, 248, 242, 0.96) 56%, rgba(255, 255, 255, 1)),
    var(--paper);
}

.page-hero-inner {
  max-width: var(--max);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: #33474c;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.services-hero {
  padding: 136px var(--container-padding) 68px;
}

.services-hero-inner {
  max-width: var(--max);
}

.services-hero .eyebrow {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.services-hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.45vw, 5.15rem);
  line-height: 1;
}

.services-hero p:not(.eyebrow) {
  max-width: 740px;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.58vw, 1.22rem);
}

.prices-hero {
  padding: 136px var(--container-padding) 68px;
}

.prices-hero-inner {
  max-width: var(--max);
}

.prices-hero .eyebrow {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.prices-hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.45vw, 5.15rem);
  line-height: 1;
}

.prices-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.58vw, 1.22rem);
}

.careers-hero {
  padding-bottom: clamp(72px, 8vw, 96px);
}

.careers-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5.8vw, 72px);
}

.careers-hero-copy {
  max-width: 720px;
}

.careers-hero h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
}

.careers-hero p:not(.eyebrow) {
  max-width: 650px;
}

.careers-hero-visual {
  overflow: hidden;
  aspect-ratio: 4 / 4.65;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(16, 33, 38, 0.13);
}

.careers-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}

.team-hero {
  padding-bottom: clamp(72px, 8vw, 104px);
}

.team-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.team-hero-copy {
  max-width: 600px;
}

.team-hero h1 {
  max-width: 600px;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  line-height: 1;
}

.team-hero p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 38px;
}

.team-hero-visual {
  overflow: hidden;
  aspect-ratio: 4 / 4.65;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(16, 33, 38, 0.13);
}

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

.prose p,
.service-grid p,
.team-grid p,
.contact-panel p {
  color: var(--muted);
}

.about {
  padding-bottom: clamp(44px, 6vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.about h2 {
  font-size: clamp(1.85rem, 3.55vw, 3.6rem);
}

.prose p {
  margin: 0 0 22px;
  font-size: 1.08rem;
}

.about-visual {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mint);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  object-position: 58% center;
}

.about-visual .about-team-photo {
  aspect-ratio: 16 / 9.8;
  object-position: center center;
}

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

.about-button {
  margin-top: 0;
}

.button.outline {
  color: var(--teal-dark);
  border-color: rgba(18, 107, 146, 0.42);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.button.outline:hover,
.button.outline:focus-visible {
  color: var(--teal-dark);
  background: rgba(225, 243, 248, 0.68);
  border-color: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(18, 107, 146, 0.08);
}

.button.subtle {
  color: var(--teal-dark);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.button.subtle:hover,
.button.subtle:focus-visible {
  color: var(--teal-dark);
  border-color: rgba(18, 107, 146, 0.2);
  background: rgba(225, 243, 248, 0.42);
  box-shadow: none;
}

.services {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(225, 243, 248, 0.36) 48%, rgba(251, 248, 242, 0.96) 100%),
    var(--paper);
}

.services-page {
  padding-top: clamp(72px, 9vw, 104px);
}

.services .eyebrow {
  color: var(--teal-dark);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.section-heading h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.service-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 38, 0.055);
  transition:
    background 250ms ease-out,
    border-color 250ms ease-out,
    box-shadow 250ms ease-out,
    transform 250ms ease-out;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(16, 33, 38, 0.13);
  transform: translateY(-6px);
  outline: none;
}

.service-card-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(33%) sepia(87%) saturate(1041%) hue-rotate(164deg) brightness(87%) contrast(92%);
  transition:
    filter 250ms ease-out,
    opacity 250ms ease-out,
    transform 250ms ease-out;
}

.service-card:hover .service-card-icon,
.service-card:focus-visible .service-card-icon {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(42%) sepia(74%) saturate(1059%) hue-rotate(168deg) brightness(93%) contrast(91%);
  transform: translateY(-2px) scale(1.06);
}

.service-card span {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 250ms ease-out;
}

.service-card:hover span,
.service-card:focus-visible span {
  color: var(--ink);
}

.service-card p {
  margin: 16px 0 0;
  min-height: 78px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.service-card small {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 26px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    color 250ms ease-out,
    transform 250ms ease-out;
}

.service-card:hover small,
.service-card:focus-visible small {
  color: var(--teal-dark);
  transform: translateX(4px);
}

.service-card:active {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(16, 33, 38, 0.1);
  transform: translateY(-2px);
}

.service-card:active span {
  color: var(--teal-dark);
}

.service-card:active .service-card-icon {
  filter: brightness(0) saturate(100%) invert(33%) sepia(87%) saturate(1041%) hue-rotate(164deg) brightness(87%) contrast(92%);
}

.service-cta {
  padding-top: 0;
  background: var(--white);
}

.service-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.service-cta-inner:hover {
  border-color: rgba(31, 151, 197, 0.26);
  box-shadow: 0 16px 38px rgba(16, 33, 38, 0.08);
  transform: translateY(-2px);
}

.service-cta h2 {
  max-width: 780px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.team-final-cta {
  background: var(--white);
}

.team-final-cta .service-cta-inner {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: clamp(22px, 3.6vw, 48px);
  padding: clamp(34px, 4.6vw, 54px);
  border-color: rgba(18, 107, 146, 0.14);
  background:
    linear-gradient(135deg, var(--white) 0%, rgba(225, 243, 248, 0.24) 100%),
    var(--white);
  box-shadow: 0 24px 64px rgba(16, 33, 38, 0.085);
}

.team-final-cta .service-cta-inner:hover {
  border-color: rgba(31, 151, 197, 0.24);
  box-shadow: 0 28px 76px rgba(16, 33, 38, 0.105);
}

.team-final-cta .eyebrow {
  margin-bottom: 10px;
  color: rgba(18, 107, 146, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.team-final-cta h2 {
  max-width: 680px;
  font-size: clamp(1.65rem, 2.75vw, 2.85rem);
  line-height: 1.06;
}

.team-final-cta-text {
  max-width: 590px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.team-final-cta-button {
  align-self: center;
  justify-self: end;
  min-width: 218px;
  min-height: 56px;
  padding-inline: 32px;
  box-shadow: 0 16px 34px rgba(18, 107, 146, 0.22);
}

.team-final-cta-button:hover,
.team-final-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(18, 107, 146, 0.28);
}

.services-final-cta .service-cta-inner {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: clamp(22px, 3.6vw, 48px);
  padding: clamp(34px, 4.8vw, 56px);
  border-color: rgba(18, 107, 146, 0.14);
  background:
    linear-gradient(135deg, var(--white) 0%, rgba(225, 243, 248, 0.24) 100%),
    var(--white);
  box-shadow: 0 24px 64px rgba(16, 33, 38, 0.085);
}

.services-final-cta .service-cta-inner:hover {
  border-color: rgba(31, 151, 197, 0.24);
  box-shadow: 0 28px 76px rgba(16, 33, 38, 0.105);
}

.services-final-cta .eyebrow {
  margin-bottom: 10px;
  color: rgba(18, 107, 146, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.services-final-cta h2 {
  max-width: 720px;
  font-size: clamp(1.65rem, 2.75vw, 2.85rem);
  line-height: 1.06;
}

.services-final-cta-text {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.services-final-cta-button {
  justify-self: end;
  min-width: 218px;
  min-height: 56px;
  padding-inline: 32px;
  box-shadow: 0 16px 34px rgba(18, 107, 146, 0.22);
}

.services-final-cta-button:hover,
.services-final-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(18, 107, 146, 0.28);
}

.services-trust {
  background: var(--white);
}

.services-trust-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.services-trust-visual {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 24px 68px rgba(16, 33, 38, 0.11);
}

.services-trust-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center;
}

.services-trust-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.04;
}

.services-trust-intro {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.services-benefits {
  display: grid;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 38px);
}

.services-benefits div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.services-benefits div:first-child {
  border-top: 0;
}

.services-benefits svg {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
  fill: currentColor;
}

.services-benefits span {
  color: var(--ink);
  font-weight: 800;
}

.service-detail-hero h1 {
  max-width: 840px;
}

.service-detail-hero p:not(.eyebrow) {
  max-width: 760px;
}

.service-detail-main {
  background: var(--white);
}

.service-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 82px);
}

.service-detail-kicker {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(18, 107, 146, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--white), rgba(225, 243, 248, 0.24)),
    var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 38, 0.055);
}

.service-detail-kicker h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
}

.service-detail-kicker p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-detail-content {
  display: grid;
  gap: 22px;
}

.service-detail-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 38, 0.045);
}

.service-detail-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.service-detail-panel p {
  margin: 0;
  color: var(--muted);
}

.service-detail-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 30px;
  color: #405356;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-dark);
  box-shadow: 0 0 0 6px rgba(31, 151, 197, 0.1);
}

.service-detail-steps {
  counter-reset: service-steps;
}

.service-detail-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-left: 0;
}

.service-detail-steps li::before {
  counter-increment: service-steps;
  content: counter(service-steps, decimal-leading-zero);
  position: static;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(225, 243, 248, 0.76);
  box-shadow: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-detail-prices {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-prices li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(216, 227, 225, 0.72);
}

.service-detail-prices li:first-child {
  border-top: 0;
}

.service-detail-prices span {
  color: #405356;
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-detail-prices strong {
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.service-detail-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-detail-cta .service-cta-inner {
  border-color: rgba(18, 107, 146, 0.14);
  background:
    linear-gradient(135deg, var(--white) 0%, rgba(225, 243, 248, 0.24) 100%),
    var(--white);
  box-shadow: 0 24px 64px rgba(16, 33, 38, 0.085);
}

.service-detail-cta h2 {
  max-width: 720px;
  font-size: clamp(1.65rem, 2.75vw, 2.85rem);
  line-height: 1.06;
}

.service-detail-cta-text {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
}

.about-page-story {
  background: var(--white);
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.about-story-copy {
  max-width: 660px;
}

.about-story-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  line-height: 1.04;
}

.about-story-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.about-story-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.about-story-values span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 107, 146, 0.14);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(225, 243, 248, 0.38);
  font-size: 0.86rem;
  font-weight: 800;
}

.about-story-visual {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 24px 68px rgba(16, 33, 38, 0.11);
}

.about-story-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center;
}

.careers-section {
  background: var(--white);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.career-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 38, 0.055);
  transition:
    border-color 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
}

.career-card:hover {
  border-color: rgba(31, 151, 197, 0.32);
  box-shadow: 0 28px 70px rgba(16, 33, 38, 0.12);
  transform: translateY(-4px);
}

.career-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.career-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.career-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.career-card li {
  position: relative;
  padding-left: 26px;
  color: #405356;
  font-size: 0.94rem;
}

.career-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-dark);
  box-shadow: 0 0 0 5px rgba(31, 151, 197, 0.1);
}

.career-card .button {
  width: 100%;
  margin-top: auto;
}

.career-form-section {
  padding-top: clamp(22px, 5vw, 54px);
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(225, 243, 248, 0.28) 100%),
    var(--white);
}

.career-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.career-form-copy {
  max-width: 520px;
}

.career-form-copy h2 {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.04;
}

.career-form-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.career-form-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 68px rgba(16, 33, 38, 0.09);
}

.career-form-card .contact-form {
  margin-top: 0;
}

.career-form-card input[type="file"] {
  cursor: pointer;
}

.prices-section {
  background: var(--white);
}

.prices-note {
  max-width: 820px;
  margin: 0 0 clamp(28px, 4vw, 44px);
  padding: 18px 20px;
  border: 1px solid rgba(18, 107, 146, 0.14);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(225, 243, 248, 0.28);
  font-weight: 600;
}

.prices-installments-note {
  margin-bottom: 12px;
}

.prices-grid {
  column-count: 2;
  column-gap: 32px;
}

.price-card {
  break-inside: avoid;
  margin-bottom: 32px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 38, 0.055);
}

.price-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.price-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(216, 227, 225, 0.72);
}

.price-card li:first-child {
  border-top: 0;
}

.price-card li span {
  color: #405356;
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-card li strong {
  color: var(--teal-dark);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.prices-final-cta .service-cta-inner {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: clamp(22px, 3.6vw, 48px);
  padding: clamp(34px, 4.8vw, 56px);
  border-color: rgba(18, 107, 146, 0.14);
  background:
    linear-gradient(135deg, var(--white) 0%, rgba(225, 243, 248, 0.24) 100%),
    var(--white);
  box-shadow: 0 24px 64px rgba(16, 33, 38, 0.085);
}

.prices-final-cta .eyebrow {
  margin-bottom: 10px;
  color: rgba(18, 107, 146, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.prices-final-cta h2 {
  max-width: 720px;
  font-size: clamp(1.65rem, 2.75vw, 2.85rem);
  line-height: 1.06;
}

.prices-final-cta-text {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.prices-final-cta-button {
  justify-self: end;
  min-width: 218px;
  min-height: 56px;
  padding-inline: 32px;
  box-shadow: 0 16px 34px rgba(18, 107, 146, 0.22);
}

.team {
  background: var(--white);
}

.team-page {
  padding-top: clamp(64px, 8vw, 104px);
}

.team-section-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.team-section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}

.team-section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.team-group + .team-group {
  margin-top: clamp(46px, 7vw, 76px);
}

.team-group-label {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.team-card {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(16, 33, 38, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 38, 0.06);
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    transform 260ms var(--ease-premium);
}

.team-card:hover,
.team-card:focus-within {
  border-color: rgba(31, 151, 197, 0.22);
  box-shadow: 0 26px 64px rgba(16, 33, 38, 0.11);
  transform: translateY(-4px);
}

.team-photo {
  overflow: hidden;
  aspect-ratio: 4 / 4.15;
  border-radius: 22px;
  background: var(--paper);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease-out;
}

.team-card:hover .team-photo img,
.team-card:focus-within .team-photo img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 18px 6px 4px;
}

.team-card-compact {
  display: flex;
  min-height: 300px;
  align-items: stretch;
}

.team-card-compact .team-card-body {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 28px 20px;
}

.team-grid h3 {
  margin: 2px 0 6px;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.2;
}

.team-role {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-specialty {
  margin: 0;
  color: var(--muted);
}

.team-summary {
  display: -webkit-box;
  margin: 13px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.team-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(18, 107, 146, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(225, 243, 248, 0.44);
  font-size: 0.8rem;
  font-weight: 800;
}

.team-profile-button {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
}

.team-schedule {
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.team-schedule span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-schedule p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.team-schedule p + p {
  margin-top: 3px;
}

.profile-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.profile-modal[hidden] {
  display: none;
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 33, 38, 0.42);
  backdrop-filter: blur(14px);
}

.profile-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: calc(100svh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 38px 110px rgba(16, 33, 38, 0.22);
}

.profile-dialog-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(26px, 4vw, 46px);
  padding: clamp(22px, 4vw, 38px);
}

.profile-dialog-photo {
  overflow: hidden;
  align-self: start;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background: var(--paper);
}

.profile-dialog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-dialog-content h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
}

.profile-specialty {
  margin: 12px 0 28px;
  color: var(--teal-dark);
  font-weight: 800;
}

.profile-detail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.profile-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-detail p {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}

.profile-dialog-content .button {
  margin-top: 18px;
}

.profile-services {
  margin-top: 0;
}

.profile-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 33, 38, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 33, 38, 0.08);
  font-size: 1.5rem;
  line-height: 1;
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.profile-close:hover,
.profile-close:focus-visible {
  border-color: rgba(18, 107, 146, 0.34);
  box-shadow: 0 14px 32px rgba(16, 33, 38, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.schedule-contact {
  padding-top: clamp(44px, 6vw, 72px);
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
}

.schedule-panel,
.contact-panel {
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.schedule-panel:hover,
.contact-panel:hover {
  border-color: rgba(31, 151, 197, 0.26);
  box-shadow: 0 16px 38px rgba(16, 33, 38, 0.08);
  transform: translateY(-2px);
}

.schedule-panel dl {
  margin: 34px 0 0;
}

.schedule-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-panel div:last-child {
  border-bottom: 0;
}

.schedule-panel dt,
.schedule-panel dd {
  margin: 0;
}

.schedule-panel dt {
  font-weight: 700;
}

.schedule-panel dd {
  color: var(--muted);
  font-weight: 400;
}

.schedule-panel .is-closed dd {
  color: #9aa6a8;
}

.contact-form {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e1e8;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fffdf8;
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background 220ms var(--ease-premium);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.72;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--teal-dark);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 4px rgba(18, 107, 146, 0.14);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.contact-submit {
  min-width: 196px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(225, 243, 248, 0.32);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(31, 151, 197, 0.24);
  color: var(--teal-dark);
  background: rgba(225, 243, 248, 0.54);
}

.form-status.is-error {
  border-color: rgba(214, 114, 91, 0.28);
  color: #9b4634;
  background: rgba(214, 114, 91, 0.08);
}

.call-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    color 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.call-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: currentColor;
}

.call-note:hover,
.call-note:focus-visible {
  color: var(--teal);
  transform: translateY(-1px);
  outline: none;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-inner,
.footer-bottom {
  width: min(calc(100% - (var(--container-padding) * 2)), var(--max));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.8fr));
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(54px, 8vw, 78px) 0 34px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  transition: opacity 220ms var(--ease-premium);
}

.footer-logo:hover,
.footer-logo:focus-visible {
  opacity: 0.84;
  outline: none;
}

.footer-logo img {
  width: 48px;
  height: 54px;
  object-fit: contain;
}

.footer-logo span {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-brand p {
  max-width: 310px;
  margin: 0;
  color: #b8c6c9;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a,
.footer-bottom {
  color: #b8c6c9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

[data-reveal-item] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms var(--ease-premium),
    transform 520ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible [data-reveal-item] {
  opacity: 1;
  transform: translateY(0);
}

.site-footer[data-reveal] {
  opacity: 0;
  transition: opacity 520ms var(--ease-premium);
}

.site-footer[data-reveal].is-visible {
  opacity: 1;
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .site-header,
  .site-header.is-scrolled,
  .button,
  .site-nav a,
  .floating-call,
  .hero-image,
  .hero-facts span,
  .hero-facts a,
  .schedule-panel,
  .contact-panel,
  .service-card,
  .team-grid article,
  .team-card,
  .team-photo img,
  .profile-close,
  .service-cta-inner,
  .care-image-wrap,
  .call-note,
  [data-reveal-item] {
    transform: none !important;
  }

  [data-reveal-item],
  .site-footer[data-reveal] {
    opacity: 1 !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .site-nav a.nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    min-height: 94svh;
    padding-top: 124px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 248, 242, 0.9) 0%, rgba(251, 248, 242, 0.64) 58%, rgba(251, 248, 242, 0.24) 100%),
      linear-gradient(0deg, rgba(16, 33, 38, 0.2), rgba(16, 33, 38, 0));
  }

  .hero-image {
    object-position: 58% center;
  }

  .service-grid,
  .review-grid,
  .care-layout,
  .about-story-layout,
  .career-grid,
  .career-form-layout,
  .services-trust-inner,
  .service-detail-intro,
  .split,
  .careers-hero-inner,
  .team-hero-inner,
  .contact-layout,
  .service-cta-inner {
    grid-template-columns: 1fr;
  }

  .careers-hero-copy {
    max-width: 680px;
  }

  .careers-hero h1,
  .careers-hero p:not(.eyebrow) {
    max-width: 680px;
  }

  .careers-hero-visual {
    max-width: 680px;
    aspect-ratio: 16 / 12;
  }

  .team-hero-copy {
    max-width: 680px;
  }

  .team-hero h1,
  .team-hero p:not(.eyebrow) {
    max-width: 680px;
  }

  .team-hero-visual {
    max-width: 680px;
    aspect-ratio: 16 / 10;
  }

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

  .profile-dialog-grid {
    grid-template-columns: 1fr;
  }

  .profile-dialog-photo {
    max-height: 520px;
  }

  .service-cta-inner .button {
    justify-self: start;
  }

  .service-detail-kicker {
    position: static;
  }

  .team-final-cta .service-cta-inner {
    gap: 22px;
    padding: clamp(30px, 6vw, 42px);
  }

  .services-final-cta .service-cta-inner {
    gap: 22px;
    padding: clamp(30px, 6vw, 42px);
  }

  .prices-grid {
    column-count: 1;
    column-gap: 0;
  }

  .prices-final-cta .service-cta-inner {
    gap: 22px;
    padding: clamp(30px, 6vw, 42px);
  }

  .team-final-cta-button {
    justify-self: start;
  }

  .services-final-cta-button {
    justify-self: start;
  }

  .prices-final-cta-button {
    justify-self: start;
  }

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

  .care-copy {
    max-width: none;
  }

  .service-card,
  .team-grid article {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .care-feature {
    padding-top: clamp(6px, 2vw, 14px);
  }

  .reviews-summary {
    display: grid;
    align-items: start;
  }

  .reviews-rating {
    justify-items: start;
  }
}

@media (max-width: 768px) {
  .service-cta {
    padding-bottom: 112px;
  }

  .service-cta-inner,
  .team-final-cta .service-cta-inner,
  .services-final-cta .service-cta-inner,
  .prices-final-cta .service-cta-inner,
  .service-detail-cta .service-cta-inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }

  .service-cta-inner > div,
  .team-final-cta .service-cta-inner > div,
  .services-final-cta .service-cta-inner > div,
  .prices-final-cta .service-cta-inner > div,
  .service-detail-cta .service-cta-inner > div {
    width: 100%;
    max-width: 100%;
  }

  .service-cta .eyebrow,
  .team-final-cta .eyebrow,
  .services-final-cta .eyebrow,
  .prices-final-cta .eyebrow,
  .service-detail-cta .eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    white-space: normal;
    word-break: normal;
  }

  .service-cta h2,
  .team-final-cta h2,
  .services-final-cta h2,
  .prices-final-cta h2,
  .service-detail-cta h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.375rem);
    line-height: 1.1;
    overflow-wrap: normal;
    white-space: normal;
    word-break: normal;
  }

  .service-cta p,
  .team-final-cta-text,
  .services-final-cta-text,
  .prices-final-cta-text,
  .service-detail-cta-text {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    white-space: normal;
    word-break: normal;
  }

  .service-cta-inner .button,
  .team-final-cta-button,
  .services-final-cta-button,
  .prices-final-cta-button,
  .service-detail-cta .button {
    width: 100%;
    justify-self: stretch;
  }

  .floating-call {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - (var(--container-padding-mobile) * 2));
    min-height: 64px;
    padding: 10px;
  }

  .brand-logo {
    width: 52px;
    height: 58px;
    flex-basis: 52px;
  }

  .brand small {
    display: none;
  }

  .floating-call {
    top: auto;
    right: 18px;
    bottom: 24px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    transform: none;
  }

  .floating-call span {
    display: none;
  }

  .floating-call svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .floating-call:hover,
  .floating-call:focus-visible {
    transform: translateY(-4px) scale(1.02);
  }

  .floating-call:active {
    transform: translateY(-1px) scale(1);
  }

  .hero {
    min-height: 96svh;
    padding: 112px 18px 42px;
  }

  .page-hero {
    padding: 124px var(--container-padding-mobile) 64px;
  }

  .services-hero {
    padding: 118px var(--container-padding-mobile) 54px;
  }

  .prices-hero {
    padding: 118px var(--container-padding-mobile) 54px;
  }

  .careers-hero {
    padding-bottom: 54px;
  }

  .services-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
  }

  .careers-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .prices-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
  }

  .services-hero p:not(.eyebrow) {
    margin-top: 18px;
  }

  .prices-hero p:not(.eyebrow) {
    margin-top: 18px;
  }

  .careers-hero-visual {
    aspect-ratio: 4 / 4.75;
    border-radius: 22px;
  }

  .team-hero {
    padding-bottom: 54px;
  }

  .team-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .team-hero p:not(.eyebrow) {
    margin-top: 28px;
  }

  .team-hero-visual {
    aspect-ratio: 4 / 4.6;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

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

  .button {
    min-height: 50px;
  }

  .section {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }

  .footer-inner {
    width: calc(100% - (var(--container-padding-mobile) * 2));
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    width: calc(100% - (var(--container-padding-mobile) * 2));
    flex-direction: column;
  }

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

  .team-photo {
    min-height: 360px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .team-photo img {
    display: block;
  }

  .team-card {
    border-radius: 22px;
  }

  .team[data-reveal] [data-reveal-item],
  .team [data-reveal-item] {
    opacity: 1;
    transform: none;
  }

  .profile-modal {
    padding: 12px;
  }

  .profile-dialog {
    max-height: calc(100svh - 24px);
    border-radius: 22px;
  }

  .profile-dialog-grid {
    padding: 16px;
  }

  .profile-close {
    top: 12px;
    right: 12px;
  }

  .team-final-cta-button {
    width: 100%;
  }

  .services-final-cta-button {
    width: 100%;
  }

  .prices-final-cta-button {
    width: 100%;
  }

  .service-detail-cta .button {
    width: 100%;
  }

  .about-actions {
    display: grid;
    width: 100%;
  }

  .about-actions .button {
    width: 100%;
  }

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

  .price-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-detail-prices li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-card li strong {
    white-space: normal;
  }

  .service-detail-prices strong {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .page-hero h1,
  .services-hero h1,
  .prices-hero h1,
  .team-hero h1,
  .service-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 14vw, 3.5rem);
    line-height: 0.98;
    overflow-wrap: normal;
    white-space: normal;
    word-break: normal;
    text-align: left;
  }

  .hero-text,
  .page-hero p:not(.eyebrow),
  .services-hero p:not(.eyebrow),
  .prices-hero p:not(.eyebrow),
  .team-hero p:not(.eyebrow),
  .service-detail-hero p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 30px;
    overflow-wrap: normal;
    white-space: normal;
    word-break: normal;
    text-align: left;
  }
}
