:root {
  --bg: #f4f8f8;
  --surface: #ffffff;
  --surface-soft: #edf4f3;
  --text: #102325;
  --muted: #4f6468;
  --teal-100: #8dc0cc;
  --teal-300: #6cb4a2;
  --teal-700: #2d7f62;
  --teal-900: #1f4f46;
  --border: #d4e2df;
  --shadow: 0 18px 40px -28px rgba(16, 35, 37, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% -5%, rgba(141, 192, 204, 0.35), transparent 38%),
    radial-gradient(circle at 88% 0%, rgba(108, 180, 162, 0.25), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.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-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.bg-orb.one {
  width: 420px;
  height: 420px;
  background: rgba(141, 192, 204, 0.28);
  top: 220px;
  right: -140px;
}

.bg-orb.two {
  width: 360px;
  height: 360px;
  background: rgba(45, 127, 98, 0.18);
  top: 860px;
  left: -140px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(16, 35, 37, 0.08);
  background: rgba(244, 248, 248, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 69px;
  height: 69px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 22px -16px rgba(16, 35, 37, 0.65);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-title {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.98rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.brand-sub {
  margin: 0;
  line-height: 1.12;
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(45, 127, 98, 0.08);
  outline: none;
}

.nav-link.active {
  color: var(--text);
  background: rgba(45, 127, 98, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--teal-300);
  outline-offset: 2px;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--teal-900), var(--teal-700));
  box-shadow: 0 14px 28px -20px rgba(31, 79, 70, 0.85);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 28px -18px rgba(31, 79, 70, 0.85);
}

.btn-soft {
  background: rgba(45, 127, 98, 0.11);
  border-color: rgba(45, 127, 98, 0.16);
  color: var(--teal-900);
}

.btn-soft:hover {
  transform: translateY(-1px);
  background: rgba(45, 127, 98, 0.18);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  display: none;
  place-items: center;
  font-size: 1.2rem;
}

.mobile-panel {
  display: none;
}

.hero {
  padding: clamp(2.25rem, 5.4vw, 4.8rem) 0 clamp(3.2rem, 6.3vw, 5.8rem);
}

.hero-compare {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #21534b;
  background: rgba(108, 180, 162, 0.2);
  border: 1px solid rgba(45, 127, 98, 0.2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-900);
  background: rgba(141, 192, 204, 0.22);
}

.hero h1 {
  margin: 14px 0 16px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 5vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

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

.key-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.stat strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #d6e6e4;
  border: 1px solid rgba(16, 35, 37, 0.08);
  box-shadow: var(--shadow);
}

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

.media-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 14px;
  background: rgba(13, 24, 27, 0.78);
  color: #e4f3f1;
  padding: 13px 14px;
  display: grid;
  gap: 6px;
}

.media-card strong {
  font-size: 0.94rem;
}

.media-card span {
  font-size: 0.84rem;
  color: rgba(228, 243, 241, 0.82);
}

.hero-compare {
  padding: 0;
}

.hero-compare-secondary {
  padding: 0;
}

.hero-bleed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1f21;
}

.hero-bleed-bg {
  position: absolute;
  inset: 0;
}

.hero-bleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* 
    Alternative right-aligned positioning (if needed):
    width: 120%;
    object-position: right center;
    transform: translateX(300px);
  */
}

.hero-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(8, 20, 22, 0.78) 0%,
    rgba(8, 20, 22, 0.72) 36%,
    rgba(8, 20, 22, 0.55) 58%,
    rgba(8, 20, 22, 0.26) 74%,
    rgba(8, 20, 22, 0) 100%
  );
}

.hero-bleed-b .hero-bleed-overlay {
  background: linear-gradient(
    92deg,
    rgba(8, 20, 22, 0.68) 0%,
    rgba(8, 20, 22, 0.62) 34%,
    rgba(8, 20, 22, 0.38) 58%,
    rgba(8, 20, 22, 0.18) 74%,
    rgba(8, 20, 22, 0) 100%
  );
}

.hero-bleed-content {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 7vw, 96px) 0;
  color: #ffffff;
}

.hero-bleed-content > * {
  max-width: min(660px, 100%);
}

.hero-bleed .compare-tag {
  color: #e7f6f3;
  border-color: rgba(231, 246, 243, 0.4);
  background: rgba(108, 180, 162, 0.22);
}

.hero-bleed .eyebrow {
  color: #e3f3ef;
  background: rgba(141, 192, 204, 0.2);
}

.hero-bleed-title {
  margin: 16px 0 18px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(2.4rem, 6.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-bleed-title span {
  display: block;
}

.hero-bleed-content p {
  margin: 0;
  color: rgba(232, 244, 242, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.hero-bleed-page {
  min-height: clamp(520px, 70vh, 740px);
}

.hero-bleed-page .hero-bleed-content {
  padding: clamp(44px, 6.8vw, 80px) 0;
}

.hero-bleed-page .hero-bleed-title {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
}

.hero-bleed-page .hero-bleed-content > * {
  max-width: min(760px, 100%);
}

.hero-bleed-page .hero-bleed-content > .page-hero-grid {
  max-width: none;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.4rem) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section h2 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-motto {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--teal-900);
  font-weight: 600;
}

.section-motto strong {
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px -32px rgba(9, 19, 22, 0.75);
  padding: 18px;
}

.card h3,
.card h4 {
  margin: 0 0 8px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.card ul {
  margin: 8px 0 0;
  padding-left: 16px;
  color: var(--muted);
}

.card li {
  margin: 4px 0;
}

.icon-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(141, 192, 204, 0.9), rgba(108, 180, 162, 0.95));
  margin-bottom: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-search {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 14px 0 8px;
}

.service-search input {
  flex: 1 1 260px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--text);
}

.service-search-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-search-feedback {
  margin: 8px 0 0;
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-search-feedback.is-error {
  color: #7a2b2b;
}

.search-suggestions {
  margin-top: 10px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 16px 32px -28px rgba(16, 35, 37, 0.55);
  display: none;
  gap: 8px;
}

.search-suggestions.is-open {
  display: grid;
}

.search-suggestion {
  width: 100%;
  text-align: left;
  background: rgba(45, 127, 98, 0.08);
  border: 1px solid rgba(45, 127, 98, 0.15);
  color: var(--teal-900);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
  background: rgba(45, 127, 98, 0.16);
  border-color: rgba(45, 127, 98, 0.32);
  outline: none;
}

.service-detail {
  scroll-margin-top: 110px;
  border-bottom: 1px solid var(--border);
}

.service-detail .container {
  transition: background 0.4s ease, box-shadow 0.4s ease;
  border-radius: var(--radius-lg);
}

.service-detail.is-highlight .container {
  background: rgba(141, 192, 204, 0.16);
  box-shadow: 0 0 0 2px rgba(45, 127, 98, 0.35), 0 18px 36px -30px rgba(16, 35, 37, 0.5);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.sub-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.sub-services.single {
  grid-template-columns: 1fr;
}

.sub-service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 14px 36px -32px rgba(9, 19, 22, 0.75);
}

.sub-service__title {
  margin: 0 0 8px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.98rem;
}

.sub-service__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

#faq .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#faq .faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--teal-700);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.condition-marquee {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  padding: 12px 0;
}

.condition-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding-left: 12px;
  animation: conditionMarquee 34s linear infinite;
}

.condition-marquee:hover .condition-track {
  animation-play-state: paused;
}

.condition-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 127, 98, 0.12);
  border: 1px solid rgba(45, 127, 98, 0.16);
  color: var(--teal-900);
  font-size: 0.88rem;
  font-weight: 600;
}

@keyframes conditionMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section-tight {
  padding-top: 1.3rem;
  padding-bottom: 2.2rem;
}

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

.practice-stat {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 34px -30px rgba(13, 24, 27, 0.65);
}

.practice-stat strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  color: #183236;
  line-height: 1.1;
}

.practice-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 127, 98, 0.12);
  border: 1px solid rgba(45, 127, 98, 0.16);
  font-size: 0.88rem;
  color: var(--teal-900);
  font-weight: 600;
}

.chip-link {
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(45, 127, 98, 0.16);
  background: rgba(45, 127, 98, 0.12);
}

.chip-link:focus-visible {
  outline: 2px solid rgba(45, 127, 98, 0.45);
  outline-offset: 2px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3.5vw, 32px);
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 380px;
}

.media-main {
  width: 84%;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-float {
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 46%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}


.provider-portrait {
  position: relative;
  padding-bottom: 26px;
  width: 100%;
  max-width: 420px;
}

.provider-portrait-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.provider-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.provider-portrait-badge {
  position: absolute;
  left: 18px;
  bottom: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}

.provider-portrait-badge strong {
  font-size: 0.95rem;
}

.provider-portrait-badge span {
  font-size: 0.82rem;
  color: var(--teal-700);
  font-weight: 600;
}

.step-wrap {
  counter-reset: care-steps;
  display: grid;
  gap: 12px;
}

.step {
  position: relative;
  padding: 14px 16px 14px 58px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.step::before {
  counter-increment: care-steps;
  content: counter(care-steps);
  position: absolute;
  left: 16px;
  top: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--teal-300), var(--teal-700));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.step h4 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.video-panel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c1f22;
  position: relative;
  min-height: 320px;
}

.video-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.video-panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(12, 31, 34, 0.85) 8%, rgba(12, 31, 34, 0.26) 72%);
}

.video-copy {
  position: relative;
  z-index: 1;
  color: #e7f4f2;
  padding: clamp(20px, 3vw, 30px);
  max-width: 460px;
}

.video-copy h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.video-copy p {
  margin: 0;
  color: rgba(231, 244, 242, 0.86);
}

.carousel-shell {
  position: relative;
}

.carousel {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.quote-slide {
  min-width: 100%;
  padding: 28px;
  display: grid;
  gap: 12px;
}

.quote-rich {
  gap: 14px;
}

.quote-stars {
  margin: 0;
  letter-spacing: 0.14em;
  color: #e1a931;
  font-size: 0.95rem;
  font-weight: 700;
}

.quote-slide blockquote {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  line-height: 1.42;
  color: #193036;
}

.quote-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #2e6c67, #4d9f8f);
}

.quote-meta strong,
.quote-meta span {
  display: block;
}

.quote-meta strong {
  color: #193036;
  margin-bottom: 2px;
}

.quote-meta span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.carousel-controls {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.testimonial-controls {
  justify-content: center;
  align-items: center;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #b4c8c5;
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: #2d7f62;
}

.testimonials-surface {
  background: radial-gradient(circle at 12% 8%, rgba(141, 192, 204, 0.16), transparent 33%),
    radial-gradient(circle at 84% -4%, rgba(108, 180, 162, 0.15), transparent 38%),
    var(--bg);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(45, 127, 98, 0.08);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
}

.gallery-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 220px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.gallery .item-a {
  grid-row: 1 / span 2;
}

.accent-panel {
  border-radius: 22px;
  background: linear-gradient(135deg, #1a3e3c, #2d7f62 54%, #6cb4a2);
  color: #f0fbfa;
  padding: clamp(22px, 4vw, 34px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.accent-panel h3 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.34rem, 2.1vw, 1.86rem);
}

.accent-panel p {
  margin: 6px 0 0;
  color: rgba(240, 251, 250, 0.84);
}

.accent-panel-split {
  justify-content: space-between;
}

.accent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-ghost-light {
  color: #f1fbfb;
  border-color: rgba(241, 251, 251, 0.48);
  background: rgba(241, 251, 251, 0.07);
}

.btn-ghost-light:hover {
  background: rgba(241, 251, 251, 0.18);
  color: #ffffff;
}

.tele-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tele-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.tele-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--teal-300), var(--teal-700));
}

.page-hero {
  padding: clamp(3.2rem, 6vw, 5rem) 0 2.2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.page-hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.86rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.page-hero p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

.service-search--hero {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.service-search--hero input {
  width: 100%;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}

th {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  background: #f6fbfb;
}

.form {
  display: grid;
  gap: 12px;
}

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

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #c8d8d5;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal-700);
  outline: 2px solid rgba(45, 127, 98, 0.22);
  outline-offset: 1px;
}

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

.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: #0f2628;
  color: #dbeceb;
  padding: 2.8rem 0 1.4rem;
}

.footer-top {
  border-bottom: 1px solid rgba(219, 236, 235, 0.16);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 66px;
  height: 66px;
  border-radius: 12px;
}

.footer-brand > div {
  display: grid;
  gap: 2px;
}

.footer-brand strong,
.footer-brand p {
  margin: 0;
  line-height: 1.14;
}

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

.footer-grid h4 {
  margin: 0 0 9px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: #eff9f8;
  font-size: 0.96rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  margin: 0;
  color: rgba(219, 236, 235, 0.84);
  font-size: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(219, 236, 235, 0.74);
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

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

[data-reveal][data-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.24s;
}

[data-reveal][data-delay="4"] {
  transition-delay: 0.32s;
}

@media (max-width: 1020px) {
  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-panel {
    position: fixed;
    inset: 81px 0 auto;
    background: rgba(244, 248, 248, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 14px 4vw 18px;
    z-index: 150;
  }

  .menu-open .mobile-panel {
    display: grid;
    gap: 10px;
  }

  .mobile-panel .btn {
    margin-top: 6px;
  }

  .hero-grid,
  .split,
  .page-hero-grid,
  .grid.cards-4,
  .grid.cards-3 {
    grid-template-columns: 1fr;
  }

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

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

  .hero-media {
    min-height: 360px;
  }

  .hero-compare-secondary {
    padding-top: 0.6rem;
  }

  .hero-bleed {
    min-height: clamp(480px, 76vh, 660px);
  }

  .hero-bleed-content {
    padding: clamp(40px, 8vw, 72px) 0;
  }

  .hero-bleed-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 20, 22, 0.88) 0%,
      rgba(8, 20, 22, 0.68) 56%,
      rgba(8, 20, 22, 0.12) 100%
    );
  }

  .hero-bleed-b .hero-bleed-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 20, 22, 0.76) 0%,
      rgba(8, 20, 22, 0.52) 56%,
      rgba(8, 20, 22, 0.08) 100%
    );
  }

  .key-stats {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 220px 220px;
  }

  .gallery .item-a {
    grid-row: 1;
    grid-column: 1 / span 2;
  }

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

@media (max-width: 700px) {
  .header-inner {
    min-height: 88px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    padding-top: 2.2rem;
    padding-bottom: 2.8rem;
  }

  .hero-compare {
    padding-top: 1rem;
    padding-bottom: 1.6rem;
  }

  .hero-compare-secondary {
    padding-top: 0.2rem;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 10vw, 2.6rem);
  }

  .hero-bleed-title {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .hero-bleed-content {
    padding: 34px 0 40px;
  }

  .hero-actions,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail .section-head {
    margin-bottom: 1rem;
    padding: 14px 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
  }

  .service-detail .section-head h2 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
    line-height: 1.2;
  }

  .service-detail .section-head h3 {
    margin: 0;
    font-family: "Sora", "Trebuchet MS", sans-serif;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .service-detail .section-head p {
    font-size: 0.95rem;
    margin-top: 8px;
  }

  .container {
    width: min(560px, 88vw);
  }

  .service-search--hero {
    grid-template-columns: 1fr;
  }

  .service-search--hero .btn {
    width: 100%;
  }

  .practice-stats {
    grid-template-columns: 1fr;
  }

  .accent-actions {
    width: 100%;
  }

  .accent-actions .btn {
    width: 100%;
  }

  .grid.cards-2,
  .form .row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .grid.mobile-two .card {
    padding: 14px;
  }

  .grid.mobile-two .card h3,
  .grid.mobile-two .card h4 {
    font-size: 1rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 210px);
  }

  .gallery-3 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .gallery .item-a {
    grid-column: 1;
    grid-row: 1;
  }

  .quote-slide {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
