﻿:root {
  --ink: #172126;
  --muted: #5c6970;
  --paper: #fffdf9;
  --soft: #edf4f1;
  --mist: #e7eef4;
  --paper-2: #f8fbfa;
  --warm: #fbf2ee;
  --teal: #176e68;
  --teal-dark: #0f514d;
  --berry: #7a3456;
  --clay: #a15a43;
  --olive: #66784f;
  --line: rgba(23, 33, 38, 0.14);
  --shadow: 0 18px 50px rgba(31, 44, 49, 0.15);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 244, 241, 0.45), rgba(255, 253, 249, 0) 420px),
    var(--paper);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 30px rgba(31, 44, 49, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(23, 110, 104, 0.22);
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--soft);
  transform: translateY(-1px);
  outline: none;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--teal);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dce7e3;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.92) 0%, rgba(255, 253, 249, 0.72) 42%, rgba(255, 253, 249, 0.22) 100%),
    linear-gradient(0deg, rgba(23, 33, 38, 0.08), rgba(23, 33, 38, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 64px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.65rem;
  line-height: 1.02;
  font-weight: 600;
  max-width: 12.8ch;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  line-height: 1.08;
  font-weight: 600;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  color: #28383d;
  font-size: 1.22rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(23, 110, 104, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-1px);
  outline: none;
}

.button.secondary {
  border-color: rgba(23, 33, 38, 0.25);
  background: rgba(255, 255, 255, 0.66);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 33, 38, 0.13);
  border-radius: 999px;
  color: #304247;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-notes span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

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

section:not(.hero) {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0;
}

section:not(.hero, .cta-band, .contact-section)::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(var(--max), calc(100% - 36px));
  height: 1px;
  background: rgba(23, 33, 38, 0.08);
  transform: translateX(-50%);
}

.intro-section::before,
.profile-band::before {
  display: none;
}

.intro-section {
  background: #fff;
}

.services-overview {
  background: var(--paper-2);
}

.intro-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.intro-text p,
.two-column p,
.wide-split p,
.section-heading p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.overview-grid article {
  display: grid;
  align-content: start;
  min-height: 268px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 44, 49, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.overview-grid article:hover {
  border-color: rgba(23, 110, 104, 0.28);
  box-shadow: 0 18px 38px rgba(31, 44, 49, 0.1);
  transform: translateY(-3px);
}

.overview-grid span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.overview-grid p {
  color: var(--muted);
}

.overview-grid a {
  align-self: end;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.overview-grid a:hover,
.overview-grid a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.profile-band {
  background:
    linear-gradient(135deg, rgba(231, 238, 244, 0.96), rgba(237, 244, 241, 0.82)),
    var(--mist);
}

.cta-band {
  color: #fff;
  background: var(--teal-dark);
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff;
}

.cta-band .section-kicker {
  color: #f2d3df;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner .button.primary {
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: #fff;
}

.cta-inner .button.primary:hover,
.cta-inner .button.primary:focus-visible {
  color: var(--ink);
  background: var(--soft);
}

.facts-panel,
.contact-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.facts-panel {
  position: sticky;
  top: 96px;
}

.facts-panel div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

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

.facts-panel span {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.facts-panel strong {
  display: block;
  line-height: 1.35;
}

.approach-section {
  background: var(--paper);
}

.method-section {
  background: linear-gradient(180deg, #fbf6f8, #fffdf9);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.section-heading.compact {
  margin-bottom: 20px;
}

.approach-grid,
.service-grid,
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approach-grid article,
.service-card,
.assessment-grid article,
.stacked-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 44, 49, 0.055);
}

.approach-grid article,
.assessment-grid article {
  padding: 24px;
}

.approach-grid article,
.service-card,
.assessment-grid article,
.pathway-grid article,
.network-list article,
.stacked-list article,
.timeline div,
.faq-list details {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.approach-grid article:hover,
.service-card:hover,
.assessment-grid article:hover,
.pathway-grid article:hover,
.network-list article:hover,
.stacked-list article:hover,
.timeline div:hover {
  border-color: rgba(23, 110, 104, 0.24);
  box-shadow: 0 16px 34px rgba(31, 44, 49, 0.09);
  transform: translateY(-2px);
}

.approach-grid p,
.service-card p,
.assessment-grid p,
.stacked-list p,
.network-list p,
.focus-list li,
.timeline p {
  color: var(--muted);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(122, 52, 86, 0.22);
  border-radius: var(--radius);
  background: rgba(122, 52, 86, 0.22);
  box-shadow: 0 18px 40px rgba(122, 52, 86, 0.08);
}

.method-steps article {
  min-height: 252px;
  padding: 24px;
  background: #fff;
}

.method-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--berry);
  font-weight: 800;
}

.method-steps p {
  color: var(--muted);
}

.competence-section {
  background: #ffffff;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.tab-button {
  flex: 1 1 180px;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  background: var(--teal);
}

.tab-button:focus-visible {
  outline: 3px solid rgba(23, 110, 104, 0.28);
}

.tab-panels {
  margin-top: 18px;
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 44, 49, 0.11);
}

.tab-panel p {
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 12px;
  border-radius: 999px;
  color: #233238;
  background: var(--mist);
  font-weight: 650;
}

.audience-section {
  background: linear-gradient(180deg, var(--soft), #f9fcfb);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.pathway-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 44, 49, 0.055);
}

.pathway-grid p {
  color: var(--muted);
}

.adult-pathways article {
  border-color: rgba(122, 52, 86, 0.2);
}

.adult-band {
  background: linear-gradient(180deg, #fff8f5, #fffdf9);
}

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

.service-card {
  padding: 22px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--berry);
  font-weight: 800;
}

.wide-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.52fr);
  gap: 28px;
  align-items: stretch;
}

.wide-split > div:first-child {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(122, 52, 86, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.focus-list {
  padding: 24px;
  border: 1px solid rgba(122, 52, 86, 0.25);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 30px rgba(122, 52, 86, 0.075);
}

.focus-list ul {
  margin: 0;
  padding-left: 20px;
}

.focus-list li + li {
  margin-top: 8px;
}

.assessment-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.development-section {
  background: #fff;
}

.collaboration-section {
  background: var(--paper-2);
}

.stacked-list {
  display: grid;
  gap: 14px;
}

.network-list {
  display: grid;
  gap: 14px;
}

.network-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stacked-list article {
  padding: 20px;
}

.training-section {
  background: #f5f7ef;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline div {
  min-height: 190px;
  padding: 22px;
  background: #fff;
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--olive);
  font-weight: 800;
}

.faq-section {
  background: #fff;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 44, 49, 0.04);
}

.faq-list details[open] {
  border-color: rgba(23, 110, 104, 0.24);
  box-shadow: 0 14px 30px rgba(31, 44, 49, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(23, 110, 104, 0.28);
  outline-offset: 2px;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 81, 77, 0.98), rgba(23, 110, 104, 0.9)),
    var(--teal-dark);
}

.contact-section .section-kicker,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section h2 {
  color: #fff;
}

.legal-page {
  background: #fff;
}

.legal-page h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
}

.legal-page h2 {
  margin-top: 36px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.legal-page p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 800;
}

.legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
}

.contact-panel {
  padding: 8px;
  color: var(--ink);
}

.contact-panel a,
.contact-panel p {
  display: block;
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel span {
  display: block;
  margin-bottom: 3px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  outline: none;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

  .reveal-enabled .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
  }

  .site-nav.open {
    display: grid;
  }

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

  .hero {
    min-height: 78svh;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 253, 249, 0.9), rgba(255, 253, 249, 0.68)),
      linear-gradient(0deg, rgba(23, 33, 38, 0.06), rgba(23, 33, 38, 0));
  }

  .facts-panel {
    position: static;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .intro-grid,
  .two-column,
  .contact-grid,
  .tab-panel,
  .wide-split {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .approach-grid,
  .method-steps,
  .service-grid,
  .assessment-grid,
  .pathway-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    width: min(100% - 32px, 540px);
    margin-left: 16px;
    padding: 48px 0 58px;
  }

  h1 {
    font-size: 2.35rem;
    max-width: 13ch;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-notes,
  .tabs,
  .site-footer {
    display: grid;
  }

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

  .hero-notes span {
    width: 100%;
    border-radius: var(--radius);
  }

  .button {
    width: 100%;
  }

  .approach-grid,
  .overview-grid,
  .method-steps,
  .service-grid,
  .assessment-grid,
  .pathway-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .overview-grid article,
  .method-steps article {
    min-height: auto;
  }

  section:not(.hero) {
    padding: 54px 0;
  }

  .timeline div {
    min-height: auto;
  }

  .pill-list li {
    width: 100%;
    border-radius: var(--radius);
  }
}
