﻿:root {
  --coral: #dc6e52;
  --coral-dark: #c55a3f;
  --ink: #2c3d45;
  --ink-soft: #3d515b;
  --muted: #5e6f77;
  --line: #e6ddd6;
  --cream: #f7f1eb;
  --paper: #ffffff;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(44, 61, 69, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17.5px;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}
p { margin: 0 0 1em; }
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 10px 0;
  height: 45px;
}
.topbar a:hover { color: var(--coral); }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.logo img {
  width: 220px;
  height: 72px;
  object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 700;
  color: var(--ink-soft);
}
.nav a:hover,
.nav a.is-active { color: var(--coral); }
.nav .btn { margin-left: 8px; }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 32px 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
}
.nav-dropdown-toggle:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-active .nav-dropdown-toggle {
  color: var(--coral);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 60;
}
.nav-dropdown-menu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: var(--cream);
  color: var(--coral);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.7rem;
  color: var(--coral);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: 0.2s ease;
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #1d2a30; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-outline {
  border: 1.5px solid var(--coral);
  color: var(--coral);
  background: #fff;
}
.btn-outline:hover { background: var(--coral); color: #fff; }

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  background: #1d2a30 center / cover no-repeat;
  color: #fff;
}
.hero-block {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: 0;
}
.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  overflow: hidden;
  background: #1d2a30;
  color: #fff;
  padding: 0;
}
.hero-home:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(44,61,69,0.55);
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding: 80px 0;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-home .hero-inner > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-home h1 { animation-delay: 0.15s; }
.hero-cta {
  animation-delay: 0.35s;
  font-size: 1.05rem;
  padding: 16px 40px;
  margin-top: 28px;
}

/* Homepage services below hero */
.home-services-section {
  padding: 46px 0 20px;
  background: #fff;
}
.home-journey-section {
  padding-top: 64px;
  padding-bottom: 72px;
}
.home-journey-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.home-journey-step {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f2 100%);
  border: 1px solid rgba(44, 61, 69, 0.12);
  border-top: 4px solid rgba(220, 110, 82, 0.65);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 14px 26px rgba(44, 61, 69, 0.08);
  opacity: 1;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.home-journey-step:hover,
.home-journey-step:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(220, 110, 82, 0.5);
  box-shadow: 0 18px 36px rgba(44, 61, 69, 0.13);
  outline: none;
}
.home-journey-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dde4e8;
}
.home-journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.3s ease;
  filter: saturate(0.95);
}
.home-journey-step:hover .home-journey-media img,
.home-journey-step:focus-visible .home-journey-media img {
  transform: scale(1.08);
  filter: saturate(1.06);
}
.home-journey-media .home-journey-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.home-journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--coral);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(44, 61, 69, 0.16);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.home-journey-step:hover .home-journey-num,
.home-journey-step:focus-visible .home-journey-num {
  background: var(--coral);
  color: #fff;
  transform: scale(1.05);
}
.home-journey-step h3 {
  margin: 0 0 8px;
  padding: 18px 18px 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.home-journey-step:hover h3,
.home-journey-step:focus-visible h3 {
  color: var(--coral);
}
.home-journey-step p {
  margin: 0;
  padding: 14px 18px 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  border-top: 1px solid rgba(44, 61, 69, 0.08);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.home-journey-step:hover p,
.home-journey-step:focus-visible p {
  color: var(--ink);
  border-color: rgba(220, 110, 82, 0.28);
}
/* Text-only journey cards (patient-transport page) */
.home-journey-step--text {
  padding-bottom: 4px;
}
.home-journey-step--text .home-journey-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(44, 61, 69, 0.08);
}
.home-journey-step--text .home-journey-num {
  position: static;
  flex-shrink: 0;
  margin: 0;
  width: 2.3rem;
  min-width: 2.3rem;
  height: 2.3rem;
  background: rgba(220, 110, 82, 0.12);
  box-shadow: none;
  transform: none;
}
.home-journey-step--text:hover .home-journey-num,
.home-journey-step--text:focus-visible .home-journey-num {
  transform: none;
  background: var(--coral);
  color: #fff;
}
.home-journey-step--text h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.home-journey-step--text p {
  min-height: 0;
  flex: 1;
  border-top: 0;
  padding-top: 14px;
}
.home-journey-actions {
  justify-content: center;
  margin-top: 38px;
  opacity: 0;
  animation: journeyFade 0.7s ease forwards;
  animation-delay: 0.55s;
}
@keyframes journeyFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes journeyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.transport-media img {
  animation: transportKenBurns 18s ease-in-out infinite alternate;
}
.story-photo.transport-media img,
.about-hero-media.transport-media img,
.facility-card-highlight .facility-card-media img,
.facility-card-media.transport-media img {
  animation: transportKenBurns 16s ease-in-out infinite alternate;
}
@keyframes transportKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.service-tile[href*="patient-transport"] img,
.service-tile[href*="mental-health-transport"] img,
.service-tile.transport-tile img {
  animation: transportKenBurns 14s ease-in-out infinite alternate;
}
.hero-services {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  transform: none;
  margin-bottom: 0;
}
.hero-services-label {
  display: block;
  margin: 0 0 22px;
  max-width: none;
}
.hero-services-label .eyebrow {
  margin: 0 0 14px;
}
.hero-services-label h2 {
  margin: 0 0 10px;
}
.service-grid.hero-service-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  padding-bottom: 0;
}
.service-grid.hero-service-grid .service-tile {
  display: block;
  position: relative;
  flex: none;
  max-width: none;
  min-height: 340px;
  width: 100%;
  min-height: 260px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(44,61,69,0.1);
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.service-grid.hero-service-grid .service-tile-body {
  min-height: 340px;
  padding: 22px 20px;
}
.service-grid.hero-service-grid .service-tile h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.32);
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.kicker {
  display: inline-block;
  background: rgba(220, 110, 82, 0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 0;
  line-height: 1.15;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.9); }

.page-hero {
  background: #1d2a30 center / cover no-repeat;
  color: #fff;
  min-height: 240px;
  display: grid;
  align-items: center;
}
.page-hero .wrap { padding: 64px 0; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 0; }
.page-hero-programme {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--ink);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.page-hero-programme:hover .page-hero-media img { transform: scale(1.05); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(44,61,69,0.92) 0%,
    rgba(44,61,69,0.72) 50%,
    rgba(220,110,82,0.45) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.page-hero-programme h1 {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease 0.15s forwards;
}
.crumb { color: rgba(255,255,255,0.75); margin-bottom: 10px; font-size: 0.95rem; }
.crumb a:hover { color: #fff; }

.programme-journey {
  position: relative;
  display: grid;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.programme-journey:before {
  content: "";
  position: absolute;
  left: 58px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--coral), rgba(220,110,82,0.2));
}
.programme-phase {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 28px;
  align-items: start;
  opacity: 0;
  transform: translateY(22px);
  animation: programmeIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 110ms);
}
.programme-marker {
  position: relative;
  z-index: 1;
  padding-top: 24px;
}
.programme-marker span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(220,110,82,0.35);
  color: var(--coral);
  font-weight: 800;
  font-size: 0.86rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(44,61,69,0.06);
}
.programme-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(44,61,69,0.12);
  border-color: rgba(220,110,82,0.38);
}
.programme-card h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}
.programme-card p { color: var(--muted); margin: 0 0 1em; }
.programme-card p:last-child { margin-bottom: 0; }
.programme-card-alt { background: var(--cream); }
.programme-link {
  color: var(--coral);
  font-weight: 800;
}
.programme-link:hover { text-decoration: underline; }
.cta-panel-programme-page { min-height: 300px; }
@keyframes programmeIn {
  to { opacity: 1; transform: translateY(0); }
}

.tiles {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.tile h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tile p { color: var(--muted); margin: 0 0 14px; font-size: 0.98rem; }
.tile a { color: var(--coral); font-weight: 800; }

.section { padding: 80px 0; }
.section.cream { background: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  opacity: 0.75;
}
.section h2,
.hero-services-label h2,
.contact-layout h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 8px;
}
.stat strong {
  display: block;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 2.2rem;
  color: var(--coral);
}
.stat span { color: var(--muted); }

.impact-section { padding: 0; }
.impact-band {
  position: relative;
  background: linear-gradient(135deg, #24343c 0%, var(--ink) 52%, #1d2a30 100%);
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}
.impact-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(220,110,82,0.14), transparent 42%),
    radial-gradient(circle at 88% 50%, rgba(220,110,82,0.1), transparent 38%);
  pointer-events: none;
}
.impact-band:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), #f3c4b6, var(--coral));
}
.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.impact-stat {
  position: relative;
  text-align: center;
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: background 0.35s ease;
}
.impact-stat:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}
.impact-visible .impact-stat {
  animation: impactIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms);
}
.impact-stat:hover {
  background: rgba(255,255,255,0.04);
}
.impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(220,110,82,0.16);
  border: 1px solid rgba(220,110,82,0.35);
  color: #f3c4b6;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.impact-icon svg { width: 30px; height: 30px; }
.impact-stat:hover .impact-icon {
  transform: translateY(-4px) scale(1.06);
  background: rgba(220,110,82,0.28);
  box-shadow: 0 12px 28px rgba(220,110,82,0.25);
}
.impact-label {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.72);
  text-transform: none;
}
.impact-value {
  margin: 0 0 10px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--coral);
  transition: transform 0.35s ease, text-shadow 0.35s ease;
}
.impact-stat:hover .impact-value {
  transform: scale(1.06);
  text-shadow: 0 0 32px rgba(220,110,82,0.45);
}
.impact-desc {
  margin: 0 auto;
  max-width: 210px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
@keyframes impactIn {
  to { opacity: 1; transform: translateY(0); }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse img { order: -1; }
.lede { font-size: 1.08rem; color: var(--ink-soft); }

.story-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.story-layout-reverse { grid-template-columns: 0.95fr 1.05fr; }
.story-layout-reverse .story-visual { order: -1; }
.story-content {
  opacity: 0;
  animation: storySlide 0.75s ease forwards;
}
.story-layout .story-content { transform: translateX(-22px); }
.story-layout-reverse .story-content { transform: translateX(22px); }
.story-lede {
  font-size: 1.14rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.story-content p:last-child { margin-bottom: 0; color: var(--muted); }
.story-visual {
  position: relative;
  opacity: 0;
  animation: storySlide 0.75s ease 0.12s forwards;
}
.story-layout .story-visual { transform: translateX(22px); }
.story-layout-reverse .story-visual { transform: translateX(-22px); }
.story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.story-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-visual:hover .story-photo img { transform: scale(1.06); }
.story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(44,61,69,0.12);
  font-weight: 800;
  color: var(--ink);
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.story-visual:hover .story-badge {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44,61,69,0.16);
}
.story-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.85rem;
}
@keyframes storySlide {
  to { opacity: 1; transform: translateX(0); }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-trust-section {
  padding-top: 64px;
  padding-bottom: 72px;
}
.home-trust-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
.home-trust-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 18px 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(44, 61, 69, 0.06);
  color: var(--ink);
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--coral);
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.home-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 110, 82, 0.45);
  box-shadow: 0 18px 36px rgba(44, 61, 69, 0.12);
}
.home-trust-card:hover::before {
  transform: scaleX(1);
}
.home-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(220, 110, 82, 0.12);
  color: var(--coral);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.home-trust-icon svg {
  display: block;
  stroke: currentColor;
}
.home-trust-card:hover .home-trust-icon {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}
.home-trust-card h3 {
  margin: 0 0 10px;
  color: var(--ink) !important;
  font-size: 1.05rem;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.home-trust-card:hover h3 {
  color: var(--coral-dark) !important;
}
.home-trust-card p {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.88rem;
  line-height: 1.55;
}
.home-therapy-compact {
  padding-top: 56px;
  padding-bottom: 56px;
}
.section.transport-lead,
.transport-lead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
}
.section.cream.transport-lead {
  background: var(--ink);
}
.transport-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/patient-transport-new.png") center / cover no-repeat;
  transform: scale(1.04);
}
.transport-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(26, 37, 43, 0.88) 0%, rgba(44, 61, 69, 0.78) 55%, rgba(220, 110, 82, 0.42) 100%),
    linear-gradient(180deg, rgba(26, 37, 43, 0.35) 0%, rgba(26, 37, 43, 0.7) 100%);
}
.transport-lead > .wrap {
  position: relative;
  z-index: 2;
}
.transport-lead .home-therapy-compact {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}
.transport-lead .eyebrow {
  color: #f3c4b6;
}
.transport-lead .eyebrow:before {
  background: var(--coral);
}
.transport-lead h2 {
  color: #fff;
  margin-bottom: 14px;
}
.transport-lead p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto;
  max-width: 38rem;
  line-height: 1.65;
}
.transport-lead .home-therapy-compact .cta-actions {
  margin-top: 28px;
  justify-content: center;
}
.transport-lead .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}
.transport-lead .btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card h3 { font-size: 1.25rem; }
.card p:last-child { margin: 0; color: var(--muted); }
.cards-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}
.about-transport-band {
  background: linear-gradient(135deg, #24343c 0%, var(--ink) 52%, #1d2a30 100%);
  color: #fff;
  padding: 72px 0;
}
.about-transport-band .section-head h2,
.about-transport-band .section-head p {
  color: rgba(255,255,255,0.92);
}
.about-transport-band .eyebrow { color: #f3c4b6; }
.about-transport-band .eyebrow:before { background: var(--coral); }
.about-transport-band .stat span { color: rgba(255,255,255,0.78); }
.about-therapy-block { padding: 56px 0; }

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.service-tile {
  flex: 1 1 300px;
  max-width: 360px;
  min-height: 340px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  isolation: isolate;
  transform: translateY(16px);
  opacity: 0;
  animation: serviceIn 0.65s ease forwards;
  animation-delay: calc(var(--i, 0) * 80ms);
}
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,61,69,0.1) 20%, rgba(44,61,69,0.88) 100%);
  transition: background 0.35s ease;
}
.service-tile-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.service-tile h3 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 10px;
}
.service-tile p {
  color: rgba(255,255,255,0.9);
  margin: 0 0 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.35s ease;
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}
.service-more:after {
  content: "→";
  transition: transform 0.25s ease;
}
.service-tile:hover img { transform: scale(1.08); }
.service-tile:hover:after {
  background: linear-gradient(180deg, rgba(220,110,82,0.25) 10%, rgba(44,61,69,0.94) 100%);
}
.service-tile:hover p {
  max-height: 140px;
  opacity: 1;
  margin-bottom: 14px;
}
.service-tile:hover .service-more:after { transform: translateX(6px); }

.independence-grid { margin-bottom: 8px; }

.outcomes-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.outcomes-visual {
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  animation: outcomeSlide 0.75s ease forwards;
}
.outcomes-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.outcomes-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.outcomes-visual:hover .outcomes-photo img { transform: scale(1.06); }
.outcomes-trust {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(44,61,69,0.12);
  font-weight: 800;
  color: var(--ink);
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.outcomes-visual:hover .outcomes-trust {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44,61,69,0.16);
}
.outcomes-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.85rem;
}
.outcomes-content {
  opacity: 0;
  transform: translateX(20px);
  animation: outcomeSlide 0.75s ease 0.12s forwards;
}
.outcomes-intro { color: var(--ink-soft); margin-bottom: 24px; }
.outcome-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.outcome-item {
  position: relative;
  padding: 16px 16px 16px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(14px);
  animation: outcomeIn 0.55s ease forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 70ms);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.outcome-item:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  transform: translateY(-50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.outcome-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(220,110,82,0.45);
  color: var(--ink);
}
.outcome-item:hover:before {
  transform: translateY(-50%) scale(1.25);
  box-shadow: 0 0 0 4px rgba(220,110,82,0.18);
}
.outcome-item:nth-child(7) {
  grid-column: 1 / -1;
  max-width: calc(50% - 7px);
  justify-self: center;
}
@keyframes outcomeSlide {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes outcomeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes serviceIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .transport-lead::before {
    transform: none;
  }
  .service-tile,
  .outcomes-visual,
  .outcomes-content,
  .outcome-item,
  .story-content,
  .story-visual,
  .cta-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .home-journey-step {
    animation: none;
    opacity: 1;
  }
  .home-journey-media,
  .home-journey-step:hover .home-journey-media,
  .home-journey-step:focus-visible .home-journey-media {
    transform: none;
  }
  .home-journey-media img,
  .home-journey-step:hover .home-journey-media img,
  .home-journey-step:focus-visible .home-journey-media img {
    transform: none;
    transition: none;
    filter: none;
  }
  .home-journey-num,
  .home-journey-step:hover .home-journey-num,
  .home-journey-step:focus-visible .home-journey-num {
    transform: none;
  }
  .home-journey-actions {
    animation: none;
    opacity: 1;
  }
  .home-trust-card:hover {
    transform: none;
  }
  .home-trust-card:hover .home-trust-icon {
    transform: none;
  }
  .transport-media img,
  .story-photo.transport-media img,
  .about-hero-media.transport-media img,
  .facility-card-highlight .facility-card-media img,
  .facility-card-media.transport-media img,
  .service-tile[href*="patient-transport"] img,
  .service-tile[href*="mental-health-transport"] img,
  .service-tile.transport-tile img {
    animation: none;
  }
  .impact-stat {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .impact-visible .impact-stat {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .service-tile img,
  .service-tile p,
  .service-more:after,
  .outcomes-photo img,
  .outcome-item,
  .outcomes-trust,
  .story-photo img,
  .story-badge,
  .cta-panel-media img,
  .cta-trust span,
  .cta-highlight,
  .btn-lift,
  .impact-stat,
  .impact-icon,
  .hero-media img,
  .hero-home .hero-inner > *,
  .hero-trust span,
  .programme-card,
  .page-hero-media img { transition: none; }
  .hero-media img,
  .hero-home .hero-inner > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .programme-phase {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .page-hero-programme h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.checklist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery figure {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery img { height: 210px; width: 100%; object-fit: cover; }
.gallery figcaption { padding: 14px 16px; color: var(--ink-soft); }

.facilities-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.facility-card {
  margin: 0;
  display: grid;
  grid-template-rows: 220px auto;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(44, 61, 69, 0.08);
  box-shadow: 0 16px 36px rgba(44, 61, 69, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(44, 61, 69, 0.14);
}
.facility-card-media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.facility-card-media:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(44, 61, 69, 0.35));
  pointer-events: none;
}
.facility-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.facility-card:hover .facility-card-media img {
  transform: scale(1.06);
}
.facility-card-body {
  padding: 22px 22px 26px;
  border-top: 4px solid var(--coral);
}
.facility-card-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.facility-card-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 800;
  line-height: 1.3;
}
.facilities-transport-head {
  margin-top: 56px;
  margin-bottom: 28px;
  max-width: 720px;
}
.facilities-transport-head h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.facilities-transport-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.facilities-transport-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.facility-card-highlight {
  grid-template-rows: 240px auto;
  border: 2px solid rgba(220, 110, 82, 0.45);
  box-shadow: 0 20px 48px rgba(220, 110, 82, 0.14);
  background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
}
.facility-card-highlight .facility-card-body {
  border-top-width: 5px;
}
.facility-card-highlight .facility-card-label:before {
  content: "Featured · ";
  color: var(--ink-soft);
}
.facility-card-highlight p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.facility-card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--coral);
  font-weight: 800;
  font-size: 0.95rem;
}
.facility-card-link:hover {
  color: var(--coral-dark);
}

.timeline { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--line);
}
.step strong { color: var(--coral); display: block; margin-bottom: 4px; }
.guidance-timeline .step span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.guidance-timeline .step p:last-child { margin-bottom: 0; }
.guidance-ready {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.guidance-ready h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.2rem;
}

.banner {
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink) center / cover no-repeat;
  color: #fff;
}
.banner-inner {
  background: linear-gradient(90deg, rgba(44,61,69,0.92), rgba(220,110,82,0.72));
  padding: 56px 48px;
  text-align: center;
}
.banner h2 { color: #fff; }
.banner p { max-width: 720px; margin: 0 auto 24px; color: rgba(255,255,255,0.92); }

.cta-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  min-height: 340px;
  display: grid;
  align-items: center;
  opacity: 1;
  transform: none;
  animation: none;
  background-color: #2c3d45;
  background-image: linear-gradient(125deg, #2c3d45 0%, #3a4f58 45%, #dc6e52 100%);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #2c3d45;
  background-image: linear-gradient(125deg, #2c3d45 0%, #3a4f58 45%, rgba(220, 110, 82, 0.88) 100%);
}
.cta-panel-spaced { margin-top: 48px; }
.cta-panel-media {
  display: none;
}
.cta-panel-overlay {
  display: none;
}
.cta-panel-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-panel h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  margin-bottom: 18px;
}
.cta-panel p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
}
.cta-lede {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-trust span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.cta-trust span:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.cta-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-highlight {
  padding: 16px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.cta-highlight strong {
  display: block;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 4px;
}
.cta-highlight span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.cta-highlight:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-lift {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.btn-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
@keyframes ctaIn {
  to { opacity: 1; transform: translateY(0); }
}

/* About page hero */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1d2a30;
  color: #fff;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.photo-portrait {
  object-position: center 18%;
}
.photo-team {
  object-position: center 68%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(44,61,69,0.4) 0%,
    rgba(44,61,69,0.7) 50%,
    rgba(44,61,69,0.92) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 56px;
  max-width: 680px;
}
.about-hero-content .kicker {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s ease 0.1s forwards;
}
.about-hero-content h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  margin: 0 0 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s ease 0.22s forwards;
}
.about-hero-content > p {
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s ease 0.34s forwards;
}
@media (max-width: 900px) {
  .about-hero { min-height: 320px; }
  .about-hero-content { padding: 64px 0 40px; }
  .about-hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
}

.contact-title {
  padding: 56px 0 28px;
  border-bottom: 4px solid var(--coral);
}
.contact-title h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin: 0 0 12px;
}
.email-us p { margin-bottom: 1.2em; }
.email-us a { color: var(--coral); font-weight: 700; }
.email-us a:hover { text-decoration: underline; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0;
  align-items: start;
}
.contact-note {
  color: var(--muted);
  margin-bottom: 22px;
}
.contact-form {
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.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;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%232c3d45' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  background: #fff;
}
.contact-form .btn { width: fit-content; min-width: 160px; margin-top: 4px; }
.contact-form .btn:disabled { opacity: 0.7; cursor: wait; }
.contact-map-shell {
  position: relative;
  width: min(100%, 1800px);
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(44, 61, 69, 0.10);
}
.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.uk-map-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.uk-map-outline path {
  fill: rgba(255, 59, 48, 0.04);
  stroke: #ff2d2d;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-dasharray: 10 8;
  vector-effect: non-scaling-stroke;
}
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.contact-form label span.req { color: var(--coral); }
.contact-form label span.opt { color: var(--muted); font-weight: 400; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.form-status-success {
  background: #e8f5ee;
  color: #1d4a34;
}
.form-status-error {
  background: #fdecea;
  color: #7a1f16;
}
.form-status-error a { color: inherit; font-weight: 700; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.info-list { display: grid; gap: 18px; }
.info-list div {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.info-list span { display: block; font-weight: 800; color: var(--coral); margin-bottom: 4px; }
form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
label { font-weight: 700; font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
form .btn { width: fit-content; }

.site-footer {
  position: relative;
  background: linear-gradient(165deg, #1e2c33 0%, var(--ink) 55%, #243840 100%);
  color: rgba(255,255,255,0.88);
  padding: 0 0 28px;
  overflow: hidden;
}
.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0%, #e8957a 50%, var(--coral) 100%);
}
.footer-inner {
  padding-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.footer-brand p {
  max-width: 42ch;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 12px 0 0;
}
.site-footer h3 {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}
.site-footer h3 span {
  color: var(--coral);
}
.footer-heading {
  color: #fff;
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-heading::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--coral);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 12px;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  display: block;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.footer-contact li {
  display: grid;
  gap: 2px;
}
.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.footer-contact-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
a.footer-contact-value:hover {
  color: var(--coral);
}
.footer-cta {
  margin-top: 22px;
  padding: 11px 22px;
  font-size: 0.92rem;
  border-radius: 999px;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.legal {
  margin: 0;
  font-size: 0.88rem;
  text-align: center;
  color: rgba(255,255,255,0.52);
}
.site-footer a:hover { color: var(--coral); }

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .footer-inner {
    padding-top: 40px;
  }
  .footer-cta {
    width: fit-content;
  }
  .home-journey-track {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-trust-row {
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .home-trust-card {
    flex: 0 0 220px;
    min-width: 220px;
  }
}

@media (max-width: 900px) {
  .eyebrow:before { width: 24px; }
  .section h2,
  .hero-services-label h2,
  .contact-layout h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 14px;
  }
  .tiles-grid, .stats, .cards, .gallery, .facilities-gallery, .split, .split.reverse,
  .story-layout, .story-layout-reverse,
  .outcomes-layout, .outcome-grid, .impact-grid, .hero-tiles-grid,
  .contact-grid, .contact-layout, .step {
    grid-template-columns: 1fr;
  }
  .cards-two { grid-template-columns: 1fr; }
  .facilities-transport-featured { grid-template-columns: 1fr; }
  .home-journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .home-journey-track::before {
    display: none;
  }
  .home-trust-row {
    gap: 12px;
  }
  .home-trust-card {
    padding: 20px 14px 22px;
  }
  .home-trust-card h3 {
    font-size: 0.98rem;
  }
  .home-trust-card p {
    font-size: 0.82rem;
  }
  .outcome-item:nth-child(7) { max-width: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-stat:not(:last-child):after {
    right: 12%;
    left: 12%;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  }
  .impact-band { padding: 48px 0; }
  .impact-stat { padding: 32px 20px; }
  .cta-highlights { grid-template-columns: 1fr; }
  .cta-panel-content { padding: 40px 24px; }
  .story-layout-reverse .story-visual { order: 0; }
  .split.reverse img { order: 0; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 88px 16px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav { display: flex; }
  .nav .btn { margin-left: 0; }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 4px 0;
  }
  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    padding: 6px;
    background: var(--cream);
  }
  .nav-dropdown-menu:before {
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.is-open:hover .nav-dropdown-menu {
    display: flex;
  }
  .nav-dropdown-menu a {
    white-space: normal;
  }
  .hero { min-height: 60vh; align-items: center; }
  .hero-home { min-height: 60vh; }
  .hero-block { padding-bottom: 0; }
  .hero-inner { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .home-services-section { padding-top: 26px; }
  .hero-services-label {
    display: block;
    margin-bottom: 18px;
  }
  .service-grid.hero-service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-grid.hero-service-grid .service-tile,
  .service-grid.hero-service-grid .service-tile-body { min-height: 260px; }
  .hero-tiles-grid,
  .tiles-grid { grid-template-columns: 1fr; }
  .banner-inner { padding: 40px 24px; }
  .programme-phase { grid-template-columns: 1fr; gap: 12px; }
  .programme-journey:before { display: none; }
  .programme-marker { padding-top: 0; }
}
@media (max-width: 900px) and (min-width: 601px) {
  .hero-block { padding-bottom: 0; }
  .service-grid.hero-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stat:nth-child(2):after { display: none; }
  .impact-stat:not(:last-child):after {
    right: 0;
    left: auto;
    top: 12%;
    bottom: auto;
    width: 1px;
    height: 76%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
  }
  .impact-stat:nth-child(1),
  .impact-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* CTA live fallback: keep panel dark even if earlier gradient is dropped */
div.cta-panel {
  background-color: #2c3d45 !important;
  background-image: linear-gradient(125deg, #2c3d45 0%, #3a4f58 45%, #dc6e52 100%) !important;
  color: #fff;
  opacity: 1;
}


