:root {
  --brand-bg: #ebeded;
  --brand-text: #000000;
  --brand-primary: #94a44c;
  --brand-primary-dark: #636d33;
  --brand-accent: #ff9933;
  --brand-muted: #898d8e;
  --surface: #ffffff;
  --surface-contrast: #f6f8ef;
  --border: #d1d8b5;
  --radius: 14px;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0.5rem;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0.5rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-contrast {
  background: var(--surface-contrast);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(235, 237, 237, 0.96);
  backdrop-filter: blur(8px);
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--brand-primary-dark);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-primary-dark);
}

.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: radial-gradient(
      circle at 95% 8%,
      rgba(148, 164, 76, 0.25),
      rgba(148, 164, 76, 0)
    ),
    radial-gradient(
      circle at 5% 94%,
      rgba(255, 153, 51, 0.2),
      rgba(255, 153, 51, 0)
    );
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-media {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--brand-primary-dark);
  font-size: 0.78rem;
}

h1,
h2 {
  margin-top: 0;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.15;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3.8vw, 2.5rem);
}

.lead {
  max-width: 62ch;
  font-size: 1.05rem;
  color: #222;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  background: var(--brand-primary);
  color: #1e220e;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-primary-dark);
  color: #f5f7ec;
}

.btn-ghost {
  border-color: var(--brand-muted);
  color: #222;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: #222;
}

.split {
  display: grid;
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.dual-panel {
  display: grid;
  gap: 1rem;
}

.info-panel {
  border-radius: var(--radius);
  background: linear-gradient(145deg, #5d672f, #7a8740);
  color: #ffffff;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.info-panel .eyebrow {
  color: #ffcf99;
}

.info-panel h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  max-width: 22ch;
}

.info-panel p {
  color: #eef0ff;
}

.gap-section {
  background: linear-gradient(160deg, #4f5929, #6f7c3a);
  color: #ffffff;
}

.gap-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.gap-card {
  border-radius: 20px;
  background: #ffffff;
  color: #121212;
  padding: 1.25rem;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.gap-kicker {
  color: #f2643f;
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(242, 100, 63, 0.12);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.gap-card h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  max-width: 24ch;
}

.gap-heading {
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.gap-heading span {
  display: block;
  color: #4f5929;
  font-size: 0.92em;
}

.gap-stat {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.gap-donut {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(#f2643f 15%, #6f7c3a 0);
  display: grid;
  place-items: center;
}

.gap-donut-wrap {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.gap-donut::before {
  content: "";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ffffff;
}

.gap-donut span {
  position: absolute;
  color: #f2643f;
  font-weight: 800;
}

.gap-donut-primary {
  font-size: 1.2rem;
}

.gap-donut-secondary {
  color: #6f7c3a;
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
}

.solution-graphic {
  position: relative;
  min-height: 138px;
  margin: 1rem 0 0.4rem;
  border: 1px solid #ced7ae;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfcf6, #f2f5e5);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
}

.solution-metric {
  align-self: start;
  text-align: left;
}

.solution-metric span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c7448;
}

.solution-metric strong {
  display: block;
  font-size: 1rem;
  color: #4f5929;
}

.metric-right {
  text-align: right;
}

.solution-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.55rem;
  min-height: 94px;
  position: relative;
}

.bar {
  width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #b4c27a, #6f7c3a);
}

.b1 {
  height: 34px;
}

.b2 {
  height: 50px;
}

.b3 {
  height: 68px;
}

.b4 {
  height: 86px;
}

.solution-arrow {
  position: absolute;
  right: 27%;
  top: 37%;
  width: 82px;
  height: 4px;
  background: #f2643f;
  transform: rotate(-28deg);
  border-radius: 999px;
}

.solution-arrow::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #f2643f;
}

.solution-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.therapy-flow-section {
  background: #eef2de;
}

.flow-title {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #4f5929;
  position: relative;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.flow-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7c3a, #ff9933);
}

.therapy-flow {
  display: grid;
  gap: 0.8rem;
}

.flow-step {
  background: #ffffff;
  border: 1px solid #d4ddb7;
  border-radius: 16px;
  padding: 1rem 1rem 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  animation: flowReveal 700ms ease forwards;
}

.flow-step:nth-of-type(1) {
  animation-delay: 90ms;
}

.flow-step:nth-of-type(2) {
  animation-delay: 210ms;
}

.flow-step:nth-of-type(3) {
  animation-delay: 330ms;
}

.flow-number {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #6f7c3a;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
}

.flow-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.24rem;
  line-height: 1.2;
  color: #4f5929;
}

.flow-step p {
  margin: 0;
}

.flow-arrow {
  width: 30px;
  height: 30px;
  justify-self: center;
  position: relative;
  animation: flowArrowPulse 1600ms ease-in-out infinite;
}

.flow-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  width: 3px;
  height: 22px;
  transform: translateX(-50%);
  background: #b8c48a;
  border-radius: 999px;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #b8c48a;
}

@keyframes flowReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowArrowPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.section-heading {
  margin-bottom: 1rem;
}

.pipeline-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.filter-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: #1c1c1c;
  font: inherit;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #ffffff;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pipeline-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.pipeline-table th,
.pipeline-table td {
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5ead3;
}

.pipeline-table th {
  background: #eef2de;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pipeline-table tbody tr:last-child td {
  border-bottom: 0;
}

.pipeline-table tbody tr.is-hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  color: #2b2b2b;
}

.contact-band {
  background-image: linear-gradient(rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.55)),
    url("https://static.wixstatic.com/media/11062b_254deac88da14c43a32af02941ed7b30~mv2.jpeg/v1/fill/w_1600,h_900,al_c,q_85,enc_avif,quality_auto/11062b_254deac88da14c43a32af02941ed7b30~mv2.jpeg");
  background-size: cover;
  background-position: center;
}

.contact-shell {
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  padding: 1.25rem;
  display: grid;
  gap: 1.2rem;
}

.contact-intro p {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd4aa;
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: #ffffff;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

.contact-form button {
  width: fit-content;
  margin-top: 0.35rem;
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
}

.page-hero p {
  max-width: 70ch;
}

.feature-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.service-path-grid {
  display: grid;
  gap: 1.1rem;
}

.service-path-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-path-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-path-content {
  padding: 1.1rem;
}

.service-media-grid {
  display: grid;
  gap: 1rem;
}

.service-media-card {
  display: grid;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-media-text {
  padding: 1.05rem;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.about-visual-grid {
  display: grid;
  gap: 1rem;
}

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.about-image.one {
  background-image: url("https://images.unsplash.com/photo-1579154204601-01588f351e67?auto=format&fit=crop&w=1200&q=80");
}

.about-image.two {
  background-image: url("https://images.unsplash.com/photo-1579165466991-467135ad3110?auto=format&fit=crop&w=1200&q=80");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 760px) {
  .nav-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 2rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem;
  }

  .dual-panel {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .gap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
  }

  .therapy-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0.95rem;
  }

  .flow-step {
    padding: 1.05rem 1.05rem 1.1rem;
  }

  .flow-arrow {
    width: 42px;
    height: 100%;
    align-self: center;
  }

  .flow-arrow::before {
    left: 0;
    top: 50%;
    width: 30px;
    height: 3px;
    transform: translateY(-50%);
  }

  .flow-arrow::after {
    left: 31px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #b8c48a;
    border-right: 0;
  }

  .contact-shell {
    padding: 2rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-visual-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-media-card {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .service-media-card:nth-child(even) {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .service-media-card:nth-child(even) img {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-step,
  .flow-arrow {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
