:root {
  --ink: #1c3d52;
  --ink-deep: #122b3c;
  --teal: #38719b; /* logo sky blue */
  --mist: #e2eaef;
  --cream: #f6f0e5;
  --paper: #fffdf8;
  --coral: #e6785e;
  --coral-dark: #bc513d;
  --gold: #e9b94f;
  --text: #2b3a45;
  --muted: #647684;
  --line: rgba(18, 43, 60, 0.16);
  --shadow: 0 22px 60px rgba(18, 43, 60, 0.12);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: 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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ink-deep);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(18, 43, 60, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand-logo {
  width: 156px;
  height: 79px;
  object-fit: contain;
  border-radius: 7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav > a:not(.button) {
  position: relative;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  color: var(--ink-deep);
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: white;
  background: var(--ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-coral {
  border-color: var(--coral);
  color: var(--ink-deep);
  background: var(--coral);
}

.button-coral:hover,
.button-coral:focus-visible {
  color: white;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 82px;
  overflow: hidden;
  background: #dfd4c3;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 82px 0 0;
  width: 100%;
  height: calc(100% - 82px);
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(246, 240, 229, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 678px;
  align-items: center;
}

.hero-copy {
  width: min(570px, 52%);
  padding: 50px 48px 48px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink-deep);
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6vw, 5.9rem);
}

h1 em {
  position: relative;
  color: var(--coral-dark);
  font-weight: 600;
}

h1 em::after {
  position: absolute;
  right: -8px;
  bottom: 1px;
  left: 3px;
  height: 7px;
  content: "";
  background: var(--gold);
  opacity: 0.75;
  transform: rotate(-2deg);
  z-index: -1;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
}

.hero-intro {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--ink-deep);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-deep);
  font-weight: 700;
  text-decoration: none;
}

.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(400px, 36vw);
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  color: white;
  background: var(--ink);
}

.hero-note svg,
.contact-location svg {
  width: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-note span {
  font-size: 0.88rem;
}

.hero-note strong {
  display: block;
  color: #bcd8ec;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.values-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.values-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.values-grid > div:first-child {
  padding-left: 0;
}

.values-grid > div:last-child {
  border-right: 0;
}

.value-number {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 2rem;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.values-grid strong {
  color: var(--ink-deep);
  font-size: 0.96rem;
}

.section {
  padding: 120px 0;
}

.intro-section {
  position: relative;
}

.intro-section::after {
  position: absolute;
  top: 34px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 44px solid var(--mist);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.intro-copy .lead {
  color: var(--ink-deep);
  font-size: 1.25rem;
  font-weight: 500;
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
}

.about-section::before {
  position: absolute;
  top: -130px;
  left: -130px;
  width: 390px;
  height: 390px;
  border: 56px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 88px;
  align-items: center;
}

.about-copy .eyebrow {
  color: #9cc4e0;
}

.about-copy h2 {
  color: white;
}

.about-copy .lead {
  color: white;
  font-size: 1.18rem;
  font-weight: 500;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: #b9c6d2;
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.about-principles span {
  padding: 8px 11px;
  color: #d8e6f2;
  border: 1px solid rgba(156, 196, 224, 0.35);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.leader-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.leader-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--mist);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-content {
  display: flex;
  padding: 34px 30px;
  flex-direction: column;
  justify-content: center;
}

.leader-kicker {
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leader-content h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.leader-content > p:not(.leader-kicker):not(.leader-name) {
  color: var(--muted);
  font-size: 0.9rem;
}

.leader-name {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.leader-name strong,
.leader-name span {
  display: block;
}

.leader-name strong {
  color: var(--ink-deep);
}

.leader-name span {
  color: var(--muted);
  font-size: 0.77rem;
}

.services-section {
  background: var(--cream);
}

.services-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}

.services-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 38px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(18, 43, 60, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card h3 {
  max-width: 300px;
  margin: 48px 0 14px;
  font-size: 2rem;
}

.service-card p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-dark {
  color: #d3e2ee;
  background: var(--ink);
}

.service-card-dark h3,
.service-card-dark p {
  color: white;
}

.service-card-coral {
  background: #f5c6b8;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  background: var(--mist);
  border-radius: 50%;
}

.service-card-dark .service-icon {
  color: white;
  background: var(--teal);
}

.service-card-coral .service-icon {
  background: var(--paper);
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.card-number {
  position: absolute;
  top: 42px;
  right: 38px;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-card-dark .card-number {
  color: #9cc4e0;
}

.approach-section {
  padding-bottom: 130px;
  background: var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: center;
}

.approach-visual {
  display: flex;
  justify-content: center;
}

.approach-arch {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 0.78;
  overflow: hidden;
  color: white;
  background: var(--teal);
  border-radius: 220px 220px 12px 12px;
}

.approach-arch::after {
  position: absolute;
  right: -65px;
  bottom: -50px;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.sun-disc {
  position: absolute;
  top: 78px;
  left: 80px;
  width: 92px;
  height: 92px;
  background: var(--gold);
  border-radius: 50%;
}

.approach-arch svg {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
}

.approach-arch p {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 42px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  text-align: right;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.commitment-list > div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.commitment-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.commitment-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.journey-section {
  color: white;
  background: var(--ink-deep);
}

.journey-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 80px;
  align-items: end;
  margin-bottom: 64px;
}

.journey-heading .eyebrow {
  grid-column: 1 / -1;
  color: #9cc4e0;
}

.journey-heading h2 {
  color: white;
}

.journey-heading > p:last-child {
  max-width: 420px;
  margin: 0 0 8px;
  color: #b9c6d2;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  position: relative;
  min-height: 260px;
  padding: 0 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.journey-list li:not(:last-child) {
  margin-right: 42px;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 34px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.15);
}

.journey-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  place-items: center;
  color: var(--ink-deep);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}

.journey-list h3 {
  margin: 34px 0 14px;
  color: white;
  font-size: 1.9rem;
}

.journey-list p {
  margin: 0;
  color: #b9c6d2;
}

.contact-section {
  padding: 120px 0;
  color: white;
  background: var(--ink-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.eyebrow-light {
  color: #d8e6f2;
}

.contact-copy h2 {
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #d3e2ee;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
  color: white;
  font-weight: 700;
}

.contact-form {
  padding: 38px;
  color: var(--text);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: block;
  margin-bottom: 20px;
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #bfc9d2;
  border-radius: 4px;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(56, 113, 155, 0.16);
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  padding: 58px 0 26px;
  color: #b9c6d2;
  background: #0c2130;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 44px;
}

.brand-footer {
  color: white;
}

.brand-footer .brand-logo {
  width: 190px;
  height: 96px;
  padding: 3px;
  background: white;
}

.footer-grid p {
  color: #9daebb;
}

.footer-grid p {
  max-width: 390px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: white;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.76rem;
}

.chatbot {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
  font-family: var(--sans);
}

.chat-launcher {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--ink-deep);
  box-shadow: 0 12px 35px rgba(9, 39, 46, 0.28);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  background: var(--teal);
  transform: translateY(-2px);
}

.chat-launcher svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.chat-panel {
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  color: var(--text);
  background: var(--paper);
  border: 1px solid rgba(18, 43, 60, 0.12);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(9, 39, 46, 0.28);
  transform-origin: bottom right;
  animation: chat-in 180ms ease both;
}

.chat-panel[hidden] {
  display: none;
}

@keyframes chat-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  color: white;
  background: var(--ink-deep);
}

.chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.chat-avatar svg {
  width: 28px;
  fill: currentColor;
}

.chat-header h2 {
  margin: 0;
  color: white;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.chat-header p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 0;
  color: #b9c6d2;
  font-size: 0.73rem;
}

.chat-header p span {
  width: 7px;
  height: 7px;
  background: #73c6a6;
  border-radius: 50%;
}

.chat-close {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  color: white;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.chat-close:hover,
.chat-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.chat-close svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.chat-messages {
  height: 280px;
  padding: 20px 18px 8px;
  overflow-y: auto;
  background: #f7f4ed;
  scroll-behavior: smooth;
}

.chat-message {
  max-width: 86%;
  margin-bottom: 13px;
}

.chat-message p {
  margin: 3px 0 0;
  padding: 11px 13px;
  border-radius: 4px 14px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-message-label {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-message-bot p {
  background: white;
  border: 1px solid rgba(18, 43, 60, 0.08);
}

.chat-message-user {
  margin-left: auto;
  text-align: right;
}

.chat-message-user p {
  color: white;
  background: var(--teal);
  border-radius: 14px 4px 14px 14px;
  text-align: left;
}

.chat-safety-note {
  margin: 7px 0 13px;
  padding: 9px 11px;
  color: #6e5c43;
  background: #fbefcf;
  border-radius: 7px;
  font-size: 0.72rem;
  line-height: 1.4;
}

.chat-suggestions {
  display: flex;
  gap: 7px;
  padding: 11px 14px;
  overflow-x: auto;
  background: var(--paper);
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
}

.chat-suggestions button {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(56, 113, 155, 0.35);
  color: var(--teal);
  background: white;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.chat-suggestions button:hover,
.chat-suggestions button:focus-visible {
  color: white;
  background: var(--teal);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px 14px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid #bfc9d2;
  border-radius: 8px;
  color: var(--text);
  background: white;
  outline: none;
}

.chat-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(56, 113, 155, 0.14);
}

.chat-form button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  color: white;
  background: var(--coral-dark);
  border-radius: 8px;
  cursor: pointer;
}

.chat-form button:hover,
.chat-form button:focus-visible {
  background: var(--ink-deep);
}

.chat-form svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 960px) {
  .primary-nav {
    gap: 20px;
  }

  .hero {
    min-height: 700px;
  }

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

  .hero-copy {
    width: 58%;
  }

  .hero-note {
    width: 42vw;
  }

  .intro-grid,
  .about-grid,
  .approach-grid,
  .contact-grid {
    gap: 52px;
  }

  .approach-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .journey-list li:not(:last-child) {
    margin-right: 28px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    min-height: calc(100vh - 72px);
    padding: 42px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--paper);
  }

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

  .primary-nav a:not(.button) {
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.6rem;
  }

  .primary-nav .button {
    margin-top: 22px;
  }

  .hero {
    min-height: 760px;
    padding-top: 72px;
  }

  .hero-image,
  .hero-shade {
    inset: 72px 0 0;
    height: calc(100% - 72px);
  }

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

  .hero-shade {
    background: rgba(246, 240, 229, 0.62);
  }

  .hero-inner {
    min-height: 688px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 78px 0 160px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .hero-intro {
    max-width: 520px;
  }

  .hero-note {
    width: calc(100% - 28px);
    min-height: 82px;
    padding: 18px 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .values-grid > div,
  .values-grid > div:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 86px 0;
  }

  .intro-grid,
  .approach-grid,
  .contact-grid,
  .journey-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-section::after {
    display: none;
  }

  .about-grid {
    gap: 54px;
  }

  .leader-card {
    max-width: 600px;
  }

  .services-heading {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

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

  .service-card {
    min-height: 280px;
    padding: 30px;
  }

  .approach-grid {
    gap: 56px;
  }

  .approach-arch {
    max-width: 390px;
  }

  .approach-copy {
    order: -1;
  }

  .journey-heading .eyebrow {
    grid-column: auto;
  }

  .journey-list {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .journey-list li,
  .journey-list li:not(:last-child) {
    min-height: 0;
    margin-right: 0;
    padding: 0 0 10px;
  }

  .journey-list li:not(:last-child)::after {
    display: none;
  }

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

  .contact-form {
    padding: 28px 22px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 128px;
    height: 65px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .commitment-list {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    min-height: 390px;
  }

  .approach-arch p {
    right: 28px;
    bottom: 32px;
  }

  .chatbot {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
  }

  .chat-messages {
    height: min(280px, calc(100vh - 360px));
    min-height: 180px;
  }

  .chat-launcher {
    min-height: 54px;
    padding: 0 17px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Multi-page additions: subpage banners + service detail
   ============================================================ */

.primary-nav a.is-current:not(.button) {
  color: var(--ink);
}
.primary-nav a.is-current:not(.button)::after {
  transform: scaleX(1);
}

.page-banner {
  position: relative;
  padding: 150px 0 70px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: var(--paper);
  overflow: hidden;
}
.page-banner::after {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 56px solid rgba(220, 231, 240, 0.14);
  border-radius: 50%;
  content: "";
}
.page-banner .shell {
  position: relative;
  z-index: 1;
}
.page-banner .eyebrow {
  color: var(--gold);
}
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 16ch;
}
.page-banner p {
  max-width: 56ch;
  font-size: 1.18rem;
  color: var(--mist);
  margin: 0;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: rgba(220, 231, 240, 0.75);
}
.breadcrumbs a:hover {
  color: var(--paper);
}

/* Detailed service blocks */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type {
  border-bottom: none;
}
.service-detail.is-flipped .service-detail-art {
  order: 2;
}
.service-detail-art {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  background: var(--mist);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-detail-art.art-teal { background: linear-gradient(150deg, var(--teal), var(--ink)); }
.service-detail-art.art-cream { background: linear-gradient(150deg, var(--cream), var(--mist)); }
.service-detail-art.art-coral { background: linear-gradient(150deg, var(--coral), var(--coral-dark)); }
.service-detail-art svg {
  width: 110px;
  height: 110px;
  fill: none;
  stroke: rgba(255, 253, 248, 0.92);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-detail-art.art-cream svg {
  stroke: var(--ink);
}
.service-detail-copy .eyebrow {
  color: var(--coral-dark);
}
.service-detail-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 6px 0 14px;
  color: var(--ink-deep);
}
.service-detail-copy p {
  color: var(--text);
}
.service-feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.service-feature-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
}
.service-feature-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mist);
  box-shadow: inset 0 0 0 6px var(--teal);
}

/* Simple contact detail cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 14px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.contact-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 12px;
}
.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--ink-deep);
}
.contact-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .service-detail.is-flipped .service-detail-art {
    order: 0;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .page-banner {
    padding: 130px 0 56px;
  }
}

/* ============================================================
   IDD agency expansion: header call CTA, NAP footer, sub-page
   content components, and the intake form
   ============================================================ */

/* Animated "Welcome to Soar" hero greeting */
.hero-welcome {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  animation: welcome-rise 700ms ease both;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-welcome {
    background: linear-gradient(100deg, var(--coral-dark) 0%, var(--gold) 45%, var(--coral-dark) 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: welcome-rise 700ms ease both, welcome-shimmer 4.5s linear 700ms infinite;
  }
}
@keyframes welcome-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes welcome-shimmer {
  to {
    background-position: 200% center;
  }
}

/* Header "Call" link */
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-call:hover,
.nav-call:focus-visible {
  color: var(--ink);
}

/* ---- Redesigned, compliance-ready footer ---- */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr;
  gap: 48px;
  padding-bottom: 38px;
}
.footer-brand > p {
  max-width: 360px;
  margin: 14px 0 0;
  font-size: 0.9rem;
}
.footer-license {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #8c9dab;
}
.footer-col h2 {
  margin: 0 0 16px;
  color: #ccdae6;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin-bottom: 11px;
  color: #ccdae6;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: white;
}
.footer-contact a[href^="tel"],
.footer-contact a[href^="mailto"] {
  font-weight: 700;
}
.footer-contact p {
  margin: 4px 0 16px;
  font-size: 0.9rem;
}
.footer-contact .button {
  margin-top: 2px;
}
.footer-areas {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #9daebb;
}
.footer-areas strong {
  color: #ccdae6;
}

/* ---- Generic sub-page content components ---- */
.section-narrow {
  padding: 84px 0;
}
.section-tint {
  background: var(--cream);
}
.section-heading.center {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.section-heading.center .eyebrow {
  justify-content: center;
}
.section-heading.center > p {
  margin-top: 14px;
  color: var(--muted);
}
.prose {
  max-width: 760px;
}
.prose > p {
  color: var(--text);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.feature-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--ink);
  background: var(--mist);
  border-radius: 14px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.feature-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.feature-card ul li {
  margin-bottom: 6px;
}

.numbered-steps {
  display: grid;
  gap: 18px;
  margin: 46px 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}
.numbered-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.numbered-steps li::before {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.numbered-steps h3 {
  margin: 3px 0 8px;
  font-size: 1.25rem;
}
.numbered-steps p {
  margin: 0;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge-row span {
  padding: 9px 14px;
  color: var(--ink-deep);
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.link-card {
  display: block;
  padding: 26px 28px;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.link-card:hover,
.link-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.link-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  color: var(--ink-deep);
  font-size: 1.18rem;
}
.link-card h3 svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--coral-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-embed {
  position: relative;
  width: 100%;
  margin-top: 46px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-directions {
  margin: 22px 0 0;
  text-align: center;
}
.map-directions .text-link {
  color: var(--teal);
}

@media (max-width: 600px) {
  .map-embed {
    aspect-ratio: 4 / 5;
  }
}

.note-band {
  margin-top: 42px;
  padding: 22px 26px;
  color: #5f5135;
  background: #fbf3df;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
}
.note-band strong {
  color: #4a3f29;
}

/* ---- Intake form extras ---- */
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
fieldset.checkbox-set {
  min-width: 0;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.checkbox-set {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.checkbox-set legend {
  padding: 0;
  margin-bottom: 4px;
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 700;
}
.checkbox-set label.inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}
.checkbox-set input {
  width: auto;
  margin: 0;
}
.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  margin-top: 4px;
  color: var(--muted) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
}
.consent input {
  width: auto;
  margin: 3px 0 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status.is-error {
  color: var(--coral-dark);
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav-call {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Tighter homepage "Three ways we support" section
   (all three cards in one row; less vertical spacing)
   ============================================================ */
.services-section {
  padding: 84px 0;
}
.services-heading {
  margin-bottom: 34px;
}
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  min-height: 0;
  padding: 30px;
}
.service-card h3 {
  margin-top: 24px;
  font-size: 1.65rem;
}
.card-number {
  top: 30px;
  right: 30px;
}

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

/* Slightly tighter primary nav so the Careers link fits on one line */
@media (min-width: 961px) {
  .primary-nav {
    gap: 24px;
  }
  .primary-nav > a:not(.button) {
    font-size: 0.9rem;
  }
}

/* Résumé upload on the careers form */
.contact-form input[type="file"] {
  padding: 11px 12px;
  background: #f7f4ed;
  cursor: pointer;
}
.contact-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-deep);
  background: white;
  font-weight: 700;
  cursor: pointer;
}
