* {
  box-sizing: border-box;
}

:root {
  --green: #2f6f5e;
  --dark-green: #1f4d41;
  --blue: #2f6f9f;
  --navy: #20263b;
  --soft-green: #e8f3ee;
  --cream: #f8faf7;
  --warm: #fff8ef;
  --text: #1f2933;
  --muted: #63717a;
  --white: #ffffff;
  --border: #dfe7e2;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.09);
  --green-shadow: 0 22px 48px rgba(47, 111, 94, 0.27);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--dark-green);
  flex-shrink: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-text small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--soft-green);
  color: var(--dark-green);
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  position: absolute;
  top: 78px;
  left: 1rem;
  right: 1rem;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.nav-links.active {
  display: grid;
  gap: 0.5rem;
}

.nav-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-links a:hover {
  background: var(--soft-green);
  color: var(--green);
}

.nav-links .nav-cta {
  background: var(--green);
  color: var(--white);
  text-align: center;
  border: 2px solid var(--green);
  box-shadow: 0 8px 18px rgba(47, 111, 94, 0.23);
}

.nav-links .nav-cta:hover {
  background: var(--dark-green);
  color: var(--white);
}

/* HERO CAROUSEL */

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  background: var(--blue);
}

.carousel-window {
  width: 100%;
  min-height: 640px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  min-height: 640px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), #245f8d);
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: -75px;
  right: 40%;
  z-index: 1;
  width: 430px;
  height: 760px;
  border-radius: 999px;
  background: var(--navy);
  transform: rotate(8deg);
}

.carousel-slide::after {
  content: "";
  position: absolute;
  top: -115px;
  right: -280px;
  z-index: 1;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.slide-inner {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1180px;
  min-height: 640px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.slide-content {
  position: relative;
  z-index: 5;
  max-width: 580px;
  color: var(--white);
}

.slide-content h1 {
  margin: 0 0 1.2rem;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.slide-content p {
  max-width: 650px;
  margin: 0 0 1.7rem;
  color: var(--white);
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d9f4ea;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 900;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.hero-cta span {
  font-size: 1.4rem;
  line-height: 1;
}

.slide-photo-area {
  position: absolute;
  top: 50%;
  right: -230px;
  z-index: 4;
  width: 760px;
  height: 760px;
  transform: translateY(-50%);
}

.slide-photo-circle {
  width: 760px;
  height: 760px;
  overflow: hidden;
  border: 18px solid #d9eff8;
  border-radius: 50%;
  background-color: #d9eff8;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(32, 38, 59, 0.92);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--green);
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  z-index: 21;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--white);
}

/* GENERAL */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.2rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.12;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.primary {
  background: var(--green);
  color: var(--white);
}

.primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.secondary {
  border-color: var(--green);
  background: var(--white);
  color: var(--green);
}

.secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Keep every call-to-action consistent: green background and white text on hover. */
.button:hover,
.button:focus-visible,
.hero-cta:hover,
.nav-links .nav-cta:hover {
  background: var(--green);
  color: var(--white);
}

.button:focus-visible,
.hero-cta:focus-visible,
.nav-links .nav-cta:focus-visible {
  outline: 3px solid rgba(47, 111, 94, 0.3);
  outline-offset: 3px;
}

.center-button {
  margin-top: 2rem;
  text-align: center;
}

/* PROFESSIONAL NAVIGATION CARDS */

.explore-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 245px;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 94, 0.24);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(31, 41, 51, 0.06);
  color: var(--text);
  text-decoration: none;
  isolation: isolate;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.pathway-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.pathway-card-content {
  position: relative;
  z-index: 2;
}

.pathway-image {
  width: calc(100% + 3.4rem);
  height: 170px;
  margin: -1.7rem -1.7rem 1.35rem;
  background-image: url("../images/navigation-card-photos.png");
  background-repeat: no-repeat;
  background-size: 300% auto;
  background-position: 0 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.pathway-image-about { background-position: 0 0; }
.pathway-image-learning { background-position: 50% 0; }
.pathway-image-services { background-position: 100% 0; }
.pathway-image-process { background-position: 0 100%; }
.pathway-image-contact { background-position: 50% 100%; }
.pathway-image-book { background-position: 100% 100%; }

.pathway-image-about {
  background-color: #fff8ef;
  background-image: url("../images/card-about-tree.png");
  background-size: cover;
  background-position: center;
}

.pathway-image-learning {
  background-image: url("../images/card-learning-centre.png");
  background-size: cover;
  background-position: center;
}

.pathway-image-services {
  background-image: url("../images/card-services.png");
  background-size: cover;
  background-position: center;
}

.pathway-image-process {
  background-image: url("../images/card-how-it-works.png");
  background-size: cover;
  background-position: center;
}

.pathway-image-book {
  background-image: url("../images/card-book-consultation.png");
  background-size: cover;
  background-position: center;
}

.pathway-image-social {
  background-image: url("../images/contact-social-banner.png");
  background-size: cover;
  background-position: center;
}

.pathway-card h3 {
  margin-bottom: 0.8rem;
  color: var(--dark-green);
  font-size: 1.35rem;
  transition: color 0.25s ease;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.pathway-arrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 1.5rem;
  border-radius: 50%;
  background: var(--soft-green);
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  border-color: var(--green);
  background: var(--green);
  box-shadow: var(--green-shadow);
  color: var(--white);
  outline: none;
  transform: translateY(-7px);
}

.pathway-card:hover::before,
.pathway-card:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.pathway-card:hover h3,
.pathway-card:focus-visible h3,
.pathway-card:hover p,
.pathway-card:focus-visible p {
  color: var(--white);
}

.pathway-card:hover .pathway-arrow,
.pathway-card:focus-visible .pathway-arrow {
  background: var(--white);
  color: var(--green);
  transform: translateX(5px);
}

.pathway-card:hover .pathway-image,
.pathway-card:focus-visible .pathway-image {
  filter: brightness(1.08) saturate(0.9);
  transform: scale(1.025);
}

/* FOUNDER */

.founder-section,
.founder-profile-section {
  display: grid;
  align-items: center;
  gap: 2.2rem;
}

.founder-image-card {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-image {
  width: 100%;
  height: 520px;
  border-radius: 1.5rem;
  object-fit: cover;
}

.founder-content {
  display: grid;
  gap: 1.1rem;
}

.founder-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-intro {
  font-size: 1.12rem;
}

.highlight-grid {
  display: grid;
  gap: 0.9rem;
}

.highlight-box {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
}

.highlight-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--dark-green);
}

.highlight-box span {
  color: var(--muted);
  font-size: 0.95rem;
}

.qualifications-box {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background: var(--soft-green);
}

.qualifications-box h3 {
  color: var(--dark-green);
}

.qualifications-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.qualifications-box li {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-weight: 700;
}

/* LEARNING PREVIEW */

.soft-section {
  max-width: none;
  background: var(--soft-green);
}

.soft-section > * {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.learning-grid {
  display: grid;
  gap: 1rem;
}

.learning-card,
.card,
.step {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(31, 41, 51, 0.04);
}

.learning-card span,
.card-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learning-card h3,
.card h3,
.step h3 {
  color: var(--dark-green);
}

.learning-card p,
.card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.learning-card {
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.learning-card:hover {
  border-color: var(--green);
  background: var(--green);
  box-shadow: var(--green-shadow);
  transform: translateY(-6px);
}

.learning-card:hover span,
.learning-card:hover h3,
.learning-card:hover p {
  color: var(--white);
}

/* ABOUT PAGE */

.about-hero {
  display: grid;
  max-width: 1180px;
  gap: 2.5rem;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.about-hero-image-card {
  justify-self: center;
  width: min(100%, 390px);
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-hero-image {
  width: 100%;
  height: 440px;
  border-radius: 1.45rem;
  object-fit: cover;
  object-position: center top;
}

.about-hero-content {
  align-self: center;
  max-width: 620px;
}

.about-hero-content h1 {
  max-width: 15ch;
}

.about-founder-intro {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.about-founder-intro .founder-content h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--dark-green);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.about-founder-intro .qualifications-box h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.about-page .philosophy-content > .eyebrow {
  width: 100%;
  text-align: center;
}

.about-page .philosophy-group + .philosophy-group .philosophy-grid article:nth-child(n),
.about-page .philosophy-group + .philosophy-group .philosophy-grid article:nth-child(n):hover {
  background: transparent;
}

/* CARDS */

.cards-grid {
  display: grid;
  gap: 1rem;
}

.featured-card {
  border: 2px solid var(--green);
}

.steps-grid {
  display: grid;
  gap: 1rem;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

/* PHILOSOPHY */

.philosophy-section {
  max-width: 1180px;
  margin: 2rem auto 4rem;
  padding: 0 1.25rem;
}

.philosophy-content {
  padding: 4rem 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--dark-green), var(--green));
  color: var(--white);
  text-align: center;
}

.philosophy-content h2,
.philosophy-content p {
  color: var(--white);
}

.philosophy-content .eyebrow {
  color: #bfe3d5;
}

.philosophy-content p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.philosophy-content {
  background: var(--warm);
  border: 1px solid #f0ddc3;
  color: var(--text);
  text-align: left;
}

.philosophy-content h2,
.philosophy-content p,
.philosophy-content .eyebrow {
  color: inherit;
}

.philosophy-content .eyebrow { color: var(--green); }

.philosophy-hero {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.philosophy-hero h2 {
  max-width: none;
  color: var(--dark-green);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
}
.philosophy-hero p { margin: 0; color: var(--muted); }

.philosophy-group { margin-top: 2.5rem; }
.philosophy-group h3 { margin-bottom: 1rem; color: var(--dark-green); font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.06em; }

.philosophy-grid { display: grid; gap: 0.85rem; }

.philosophy-grid article {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.philosophy-icon { display: block; width: 54px; height: 54px; margin: 0 auto 0.55rem; background-image: url("../images/philosophy-icons.png"); background-size: 400% 200%; background-repeat: no-repeat; }
.philosophy-icon-1 { background-position: -8px -9px; }
.philosophy-icon-2 { background-position: -82px -7px; }
.philosophy-icon-3 { background-position: -155px -7px; }
.philosophy-icon-4 { background-position: -228px -7px; }
.philosophy-icon-5 { background-position: -6px -75px; }
.philosophy-icon-6 { background-position: -80px -71px; }
.philosophy-icon-7 { background-position: -156px -74px; }
.philosophy-icon-8 { background-position: -228px -73px; }
.philosophy-grid h4 { margin: 0 0 0.4rem; color: var(--dark-green); font-size: 1.05rem; text-transform: uppercase; }
.philosophy-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.philosophy-grid article:hover { transform: translateY(-3px); }
.philosophy-grid article:nth-child(1) { border-color: #cfe3ce; background: #eff7ed; }
.philosophy-grid article:nth-child(1) h4 { color: #247740; }
.philosophy-grid article:nth-child(2) { border-color: #d7e3f5; background: #edf4fc; }
.philosophy-grid article:nth-child(2) h4 { color: #1c58a5; }
.philosophy-grid article:nth-child(3) { border-color: #f5d9c3; background: #fff1e7; }
.philosophy-grid article:nth-child(3) h4 { color: #e26818; }
.philosophy-grid article:nth-child(4) { border-color: #e2d4f0; background: #f5effb; }
.philosophy-grid article:nth-child(4) h4 { color: #71439a; }

.philosophy-group + .philosophy-group article:nth-child(1),
.philosophy-group + .philosophy-group article:nth-child(4) { border-color: #cfe3ce; background: #eff7ed; }
.philosophy-group + .philosophy-group article:nth-child(1) h4,
.philosophy-group + .philosophy-group article:nth-child(4) h4 { color: #247740; }
.philosophy-group + .philosophy-group article:nth-child(2) { border-color: #d7e3f5; background: #edf4fc; }
.philosophy-group + .philosophy-group article:nth-child(2) h4 { color: #1c58a5; }
.philosophy-group + .philosophy-group article:nth-child(3) { border-color: #f5d9c3; background: #fff1e7; }
.philosophy-group + .philosophy-group article:nth-child(3) h4 { color: #e26818; }

.philosophy-grid article:hover,
.philosophy-grid article:hover h4,
.philosophy-grid article:hover p { color: inherit; }

.philosophy-grid article:nth-child(1):hover { background: #eff7ed; color: var(--text); }
.philosophy-grid article:nth-child(2):hover { background: #edf4fc; color: var(--text); }
.philosophy-grid article:nth-child(3):hover { background: #fff1e7; color: var(--text); }
.philosophy-grid article:nth-child(4):hover { background: #f5effb; color: var(--text); }
.philosophy-grid article:nth-child(1):hover h4 { color: #247740; }
.philosophy-grid article:nth-child(2):hover h4 { color: #1c58a5; }
.philosophy-grid article:nth-child(3):hover h4 { color: #e26818; }
.philosophy-grid article:nth-child(4):hover h4 { color: #71439a; }

.philosophy-group + .philosophy-group article:nth-child(1):hover,
.philosophy-group + .philosophy-group article:nth-child(4):hover { background: #eff7ed; }
.philosophy-group + .philosophy-group article:nth-child(2):hover { background: #edf4fc; }
.philosophy-group + .philosophy-group article:nth-child(3):hover { background: #fff1e7; }
.philosophy-group + .philosophy-group article:nth-child(1):hover h4,
.philosophy-group + .philosophy-group article:nth-child(4):hover h4 { color: #247740; }
.philosophy-group + .philosophy-group article:nth-child(2):hover h4 { color: #1c58a5; }
.philosophy-group + .philosophy-group article:nth-child(3):hover h4 { color: #e26818; }

/* Philosophy layout follows the visual hierarchy of the supplied reference. */
.philosophy-group {
  margin-top: 2.75rem;
}

.philosophy-group h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  letter-spacing: 0.04em;
  text-align: center;
}

.philosophy-group h3::before,
.philosophy-group h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dd6c28;
}

.philosophy-group + .philosophy-group h3::before,
.philosophy-group + .philosophy-group h3::after {
  background: var(--green);
}

.philosophy-grid {
  gap: 0;
}

.philosophy-grid article,
.philosophy-grid article:nth-child(n) {
  min-width: 0;
  padding: 0.35rem 1rem 0.75rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.philosophy-grid article + article {
  border-left: 1px solid #d8ddd4;
}

.philosophy-grid article:hover,
.philosophy-grid article:nth-child(n):hover {
  background: transparent;
  box-shadow: none;
  transform: translateY(-5px);
}

.philosophy-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background-color: #e4f1df;
  background-blend-mode: multiply;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.philosophy-grid article:hover .philosophy-icon {
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.14);
  transform: scale(1.08);
}

.philosophy-grid article:nth-child(2) .philosophy-icon { background-color: #dfe9f8; }
.philosophy-grid article:nth-child(3) .philosophy-icon { background-color: #fee6d3; }
.philosophy-grid article:nth-child(4) .philosophy-icon { background-color: #ede1f5; }

.philosophy-grid h4,
.philosophy-grid article:nth-child(n) h4 {
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
}

.philosophy-grid p {
  max-width: 15ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* HOW IT WORKS: INTERACTIVE FIVE-STAR JOURNEY */

.journey-intro,
.journey-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.journey-intro { padding-bottom: 2rem; text-align: center; }
.journey-intro h1 { max-width: 17ch; margin-right: auto; margin-left: auto; color: var(--dark-green); }
.journey-intro > p:last-child { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }
.journey-heading { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.journey-heading p:last-child { color: var(--muted); }

.star-journey { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.star-step { position: relative; padding: 1.35rem; border: 1px solid var(--border); border-radius: 1.35rem; background: var(--white); outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.star-step:hover, .star-step:focus { border-color: var(--green); box-shadow: var(--green-shadow); transform: translateY(-5px); }
.star-marker { display: flex; align-items: center; gap: 0.6rem; color: var(--green); }
.star-marker span { font-size: 2.4rem; line-height: 1; transition: color 0.3s ease, transform 0.3s ease; }
.star-marker strong { font-size: 0.82rem; letter-spacing: 0.1em; }
.star-step:hover .star-marker span, .star-step:focus .star-marker span { color: #f0a23b; transform: rotate(12deg) scale(1.14); }
.star-step h3 { margin: 0.4rem 0 0; color: var(--dark-green); }
.step-reveal { display: grid; grid-template-rows: 0fr; overflow: hidden; opacity: 0; transition: grid-template-rows 0.4s ease, opacity 0.3s ease; }
.step-reveal > * { min-height: 0; }
.star-step:hover .step-reveal, .star-step:focus .step-reveal { grid-template-rows: 1fr; margin-top: 1rem; opacity: 1; }
.step-reveal > div:last-child { overflow: hidden; color: var(--muted); }
.step-reveal p { margin: 0 0 0.7rem; }
.step-reveal p:last-child { margin-bottom: 0; }
.step-photo { height: 150px; margin-bottom: 1rem; border-radius: 0.9rem; background-image: url("../images/navigation-card-photos.png"); background-size: 300% 200%; background-position: 0 0; }
.step-consultation .step-photo { background-position: 0 100%; }
.step-observation .step-photo { background-position: 50% 0; }
.step-programme .step-photo { background-position: 100% 100%; }
.step-sessions .step-photo { background-position: 100% 0; }
.step-progress .step-photo { background-position: 0 0; }

/* Single-panel journey inspired by the selected reference layout. */
.journey-tabs { position: relative; display: grid; gap: 0.6rem; max-width: 1100px; margin: 0 auto 2rem; }
.journey-tabs::before { content: ""; position: absolute; top: 3.1rem; right: 8%; left: 8%; height: 3px; background: #dce9e3; }
.journey-tab { position: relative; z-index: 1; display: grid; justify-items: center; gap: 0.35rem; padding: 0; border: 0; background: transparent; color: #7a8984; font: inherit; cursor: pointer; }
.journey-star { display: inline-flex; align-items: center; justify-content: center; width: 4.1rem; height: 4.1rem; border-radius: 50%; background: #cfe4ef; color: var(--white); font-size: 2rem; transition: transform 0.25s ease, background-color 0.25s ease; }
.journey-order { display: none; }
.journey-tab strong { max-width: 12ch; color: inherit; font-size: 0.78rem; line-height: 1.2; text-align: center; text-transform: uppercase; }
.journey-tab.active { color: var(--green); }
.journey-tab.active .journey-star { background: #e7a51d; transform: scale(1.08); }
.journey-tab:hover .journey-star, .journey-tab:focus-visible .journey-star { background: var(--green); transform: scale(1.08); }
.journey-tab:focus-visible { outline: 3px solid rgba(47, 111, 94, 0.3); outline-offset: 6px; }
.journey-detail { display: grid; overflow: hidden; max-width: 1100px; margin: 0 auto; background: #f9f7f1; }
.journey-detail-photo {
  min-height: 280px;
  background-image: url("../images/navigation-card-photos.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  background-position: 0 0;
}
.journey-photo-consultation { background-position: 0 100%; }
.journey-photo-observation {
  background-image: url("../images/journey-step-2-observation.png");
  background-size: cover;
  background-position: center;
}
.journey-photo-programme {
  background-image: url("../images/journey-step-3-programme.png");
  background-size: cover;
  background-position: center;
}
.journey-photo-sessions {
  background-image: url("../images/journey-step-4-sessions.png");
  background-size: cover;
  background-position: center;
}
.journey-photo-progress { background-position: 0 0; }
.journey-detail-copy { align-self: center; padding: 2rem; text-align: center; }
.journey-detail-copy h3 { color: var(--dark-green); font-size: clamp(1.55rem, 3vw, 2.25rem); }
.journey-detail-copy > p:not(.eyebrow) { max-width: 46ch; margin-right: auto; margin-left: auto; color: var(--muted); }

/* CTA */

.cta-section {
  display: grid;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 4rem auto;
  padding: 2rem 1.25rem;
  border: 1px solid #f0ddc3;
  border-radius: 1.7rem;
  background: var(--warm);
}

.cta-section p {
  color: var(--muted);
}

.cta-button {
  background: var(--dark-green);
  color: var(--white);
}

.cta-button:hover {
  background: var(--green);
}

/* FOOTER */

.site-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--dark-green);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin: 1rem 0;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green);
}

.copyright {
  font-size: 0.9rem;
}

/* LEARNING CENTRE: PROGRAMMES, SESSION AND EXPERIENCE */

.lc-intro,
.lc-programmes,
.lc-session,
.lc-experience {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.lc-intro { max-width: 900px; text-align: center; }
.lc-intro h1 { color: var(--dark-green); font-size: clamp(2.5rem, 6vw, 4.6rem); }
.lc-intro > p:not(.eyebrow) { max-width: 820px; margin: 0.85rem auto; color: var(--muted); font-size: 1.08rem; }

.lc-programmes { border-radius: 2rem; background: #fbf7f2; }
.lc-section-heading { max-width: 820px; margin: 0 auto 2.25rem; text-align: center; }
.lc-section-heading h2 { color: var(--dark-green); }
.lc-section-heading > p:last-child { color: var(--muted); }
.lc-programme-grid { display: grid; gap: 0.9rem; }
.lc-programme { padding: 1.25rem; border: 1px solid var(--border); border-radius: 1.15rem; background: var(--white); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.lc-programme:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.lc-programme span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; margin-bottom: 0.75rem; border-radius: 0.8rem; color: var(--white); font-weight: 900; }
.lc-programme h3 { margin-bottom: 0.45rem; color: var(--dark-green); font-size: 1.05rem; }
.lc-programme p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.literacy span { background: #7442a0; }.maths span { background: #247740; }.writing span { background: #ed9c11; }.executive span { background: #1e6aa8; }.language span { background: #d65283; }.social span { background: #168d89; }
.lc-programme-note { display: grid; gap: 0.6rem; margin-top: 1rem; padding: 1.25rem; border-radius: 1rem; background: #eee3f5; color: var(--dark-green); }
.lc-programme-note span { color: var(--muted); }

.lc-session { background: var(--white); }
.lc-session-steps { display: grid; gap: 0.8rem; max-width: 930px; margin: 0 auto; padding: 0; list-style: none; counter-reset: session; }
.lc-session-steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding: 1.05rem; border-radius: 1rem; background: var(--soft-green); }
.lc-session-steps > li > span { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; }
.lc-session-steps h3 { margin-bottom: 0.25rem; color: var(--dark-green); }
.lc-session-steps p { margin: 0; color: var(--muted); }

.lc-experience { text-align: center; }
.lc-experience-layout { display: grid; gap: 2rem; align-items: center; padding: 2rem; border-radius: 1.5rem; background: #def1f8; text-align: left; }
.lc-experience-layout h3 { color: var(--green); text-transform: uppercase; }
.lc-experience-layout p { color: var(--muted); }
.lc-experience-layout img { width: 100%; border: 10px solid var(--white); box-shadow: var(--shadow); }

/* LEARNING CENTRE AND SERVICES PAGES */

.centre-hero,
.services-hero {
  display: grid;
  max-width: 1180px;
  gap: 2rem;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.centre-hero > div,
.services-hero > div { align-self: center; }
.centre-hero h1,
.services-hero h1 { color: var(--dark-green); }
.centre-hero > div > p:not(.eyebrow),
.services-hero > div > p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.1rem; }
.centre-hero img,
.services-hero img { width: 100%; min-height: 280px; border-radius: 1.5rem; object-fit: cover; box-shadow: var(--shadow); }

.centre-method-grid,
.centre-programme-grid,
.centre-session-grid,
.support-fit-grid,
.work-project-grid { display: grid; gap: 1rem; }

.centre-method-grid article,
.centre-programme-grid article,
.centre-session-grid article,
.work-project-grid article {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.centre-method-grid article:hover,
.centre-programme-grid article:hover,
.centre-session-grid article:hover,
.work-project-grid article:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.centre-method-grid span,
.work-symbol { display: inline-flex; width: 2.2rem; height: 2.2rem; align-items: center; justify-content: center; margin-bottom: 0.8rem; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; }
.centre-method-grid h3,
.centre-programme-grid h3,
.work-project-grid h3 { color: var(--dark-green); }
.centre-method-grid p,
.centre-programme-grid p,
.work-project-grid p { margin-bottom: 0; color: var(--muted); }

.centre-goals,
.group-learning-layout { display: grid; gap: 2rem; align-items: center; }
.centre-goals-image img,
.group-learning-image img { width: 100%; min-height: 260px; border-radius: 1.5rem; object-fit: cover; }
.centre-goals li { margin-bottom: 0.65rem; color: var(--muted); }
.group-learning-layout > div > p { color: var(--muted); font-size: 1.05rem; }
.group-benefits { display: grid; gap: 0.8rem; }
.group-benefits article { padding: 1rem 1.15rem; border-left: 4px solid var(--green); background: var(--soft-green); }
.group-benefits strong,
.group-benefits span { display: block; }
.group-benefits strong { color: var(--dark-green); }
.group-benefits span { margin-top: 0.25rem; color: var(--muted); }
.centre-session-grid article { display: grid; gap: 0.5rem; }
.centre-session-grid strong { color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; }
.centre-session-grid span { color: var(--muted); }

.support-fit-grid { align-items: start; }
.fit-card { padding: 1.7rem; border-radius: 1.5rem; }
.fit-card h3 { color: var(--dark-green); }
.fit-card ul { padding-left: 1.2rem; }
.fit-card li { margin-bottom: 0.6rem; color: var(--muted); }
.fit-suitable { border: 1px solid #c9dfcf; background: #f1f8f1; }
.fit-not-suitable { border: 1px solid #f0d8bf; background: #fff8ef; }
.fit-note { padding-top: 0.8rem; border-top: 1px solid #ecd6bd; color: var(--dark-green); font-weight: 700; }
.purpose-note { max-width: 800px; margin: 2rem auto 0; color: var(--muted); text-align: center; }

/* TABLET */

@media (min-width: 650px) {
  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* DESKTOP */

@media (min-width: 900px) {
  .journey-tabs { grid-template-columns: repeat(5, 1fr); }
  .journey-detail { grid-template-columns: 1fr 1fr; }
  .journey-detail-photo { min-height: 360px; }

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

  .lc-session-steps { grid-template-columns: repeat(5, 1fr); }

  .lc-session-steps li { grid-template-columns: 1fr; min-height: 210px; }

  .lc-experience-layout { grid-template-columns: 0.9fr 1.1fr; padding: 3rem; }

  .centre-hero,
  .services-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .centre-method-grid { grid-template-columns: repeat(4, 1fr); }
  .centre-programme-grid { grid-template-columns: repeat(4, 1fr); }
  .centre-session-grid { grid-template-columns: repeat(3, 1fr); }
  .support-fit-grid,
  .work-project-grid { grid-template-columns: repeat(2, 1fr); }
  .centre-goals,
  .group-learning-layout { grid-template-columns: repeat(2, 1fr); }

  .about-hero {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    padding: 5.5rem 1.25rem;
  }

  .about-hero-image-card {
    width: 100%;
    max-width: 390px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.65rem 0.75rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .nav-links .nav-cta {
    margin-left: 0.25rem;
    padding: 0.72rem 1rem;
  }

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

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

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

  .star-journey {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
  }

  .star-journey li {
    min-width: 0;
  }

  .star-step {
    height: 100%;
    padding: 1.15rem;
  }

  .star-step h3 {
    font-size: 1.08rem;
  }

  .step-photo {
    height: 115px;
  }

  .founder-section,
  .founder-profile-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

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

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

  .cta-section {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 3rem;
  }
}

/* FIVE-COLUMN PROFESSIONAL CARD LAYOUT */

@media (min-width: 1180px) {
  .pathway-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .pathway-card {
    min-height: 285px;
    padding: 1.5rem;
  }

  .pathway-card h3 {
    font-size: 1.22rem;
  }

  .pathway-card p {
    font-size: 0.93rem;
  }
}

/* MEDIUM HEADER */

@media (min-width: 900px) and (max-width: 1120px) {
  .brand-text small {
    display: none;
  }

  .nav-links {
    gap: 0.15rem;
  }

  .nav-links a {
    padding: 0.55rem;
    font-size: 0.84rem;
  }

  .nav-links .nav-cta {
    padding: 0.6rem 0.75rem;
  }
}

/* MOBILE */

@media (max-width: 899px) {
  .section {
    padding: 3.5rem 1.25rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-carousel,
  .carousel-window,
  .carousel-track,
  .carousel-slide {
    min-height: 760px;
  }

  .carousel-slide::before,
  .carousel-slide::after {
    display: none;
  }

  .slide-inner {
    align-content: start;
    min-height: 760px;
    padding: 3.5rem 1.25rem 5rem;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .slide-photo-area {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    transform: none;
  }

  .slide-photo-circle {
    width: min(360px, 84vw);
    height: min(360px, 84vw);
    border-width: 10px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.9rem;
  }

  .carousel-prev {
    left: 0.75rem;
  }

  .carousel-next {
    right: 0.75rem;
  }

  .founder-image {
    height: 420px;
  }
}

/* REDUCED MOTION */

@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;
  }
}

/* FINAL LEARNING CENTRE REFINEMENTS */

.lc-intro h1,
.lc-section-heading h2 {
  max-width: 20ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--dark-green);
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.02;
}

.lc-intro-lead {
  color: var(--green) !important;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem) !important;
  font-weight: 800;
}

.lc-section-heading > p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.65;
}

.lc-programme {
  overflow: hidden;
  padding: 0;
  border: 0;
}

.lc-programme img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.lc-programme > div {
  min-height: 160px;
  padding: 1.25rem;
}

.lc-programme h3 { font-size: 1.15rem; }
.lc-programme p { color: #3f505a; }
.lc-programme.literacy > div { background: #f1e8f8; }
.lc-programme.maths > div { background: #e5f3e5; }
.lc-programme.writing > div { background: #fff0d8; }
.lc-programme.executive > div { background: #e3f0fa; }
.lc-programme.language > div { background: #fce4ed; }
.lc-programme.social > div { background: #dff3f1; }
.lc-programme.literacy h3 { color: #7442a0; }
.lc-programme.maths h3 { color: #247740; }
.lc-programme.writing h3 { color: #c87500; }
.lc-programme.executive h3 { color: #1e6aa8; }
.lc-programme.language h3 { color: #b63b68; }
.lc-programme.social h3 { color: #147a76; }

.session-map {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.session-orbit {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 3px dashed #d6e5df;
  border-radius: 50%;
}

.session-core,
.session-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.session-core {
  inset: 34%;
  flex-direction: column;
  background: var(--dark-green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.session-core strong { font-size: 1.75rem; }
.session-core span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }

.session-node {
  width: 84px;
  height: 84px;
  border: 7px solid var(--white);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session-node span { position: absolute; top: 0.3rem; left: 0.5rem; font-size: 0.7rem; font-weight: 900; }
.session-node strong { font-size: 1.65rem; }
.session-node:hover,
.session-node:focus-visible,
.session-node.active { z-index: 3; transform: scale(1.14); box-shadow: 0 14px 28px rgba(31, 41, 51, 0.2); }
.node-1 { top: -7%; left: 40%; background: #f1a51c; }
.node-2 { top: 27%; right: -7%; background: #28aab5; }
.node-3 { right: 7%; bottom: 0; background: #7350a1; }
.node-4 { bottom: 0; left: 7%; background: #dd5b7e; }
.node-5 { top: 27%; left: -7%; background: #31935a; }

.session-detail {
  min-height: 260px;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #fff9ef, #edf6f2);
  box-shadow: var(--shadow);
}

.session-panel[hidden] { display: none; }
.session-panel > span { color: var(--green); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.session-panel h3 { margin-top: 0.7rem; color: var(--dark-green); font-size: clamp(1.6rem, 3vw, 2.35rem); }
.session-panel p { color: var(--muted); font-size: 1.05rem; }

/* HOW IT WORKS: SHOW ONE PANEL AND NUMBER THE STARS */

.journey-detail[hidden] { display: none !important; }
.journey-tab { min-height: 8.5rem; }
.journey-star {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 0;
  color: transparent;
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}
.journey-order {
  position: absolute;
  top: 1.6rem;
  left: 50%;
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  transform: translateX(-50%);
}
.journey-order sup { font-size: 0.58em; }

@media (min-width: 900px) {
  .session-map { grid-template-columns: 1.08fr 0.92fr; }
}

/* HOME: FULL-WIDTH, CENTRED SECTION INTRODUCTIONS */

.explore-section .section-heading {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.explore-section .section-heading h2,
.explore-section .section-heading > p:last-child {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.explore-section .section-heading h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  text-wrap: balance;
}

.explore-section .section-heading > p:last-child {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

@media (min-width: 900px) {
  .philosophy-hero {
    grid-template-columns: 1fr;
  }
}

.philosophy-hero > div {
  width: 100%;
  text-align: center;
}

.philosophy-hero h2,
.philosophy-hero p {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-wrap: balance;
}

.philosophy-hero h2 {
  font-size: clamp(2.5rem, 5.7vw, 4.9rem);
}

.philosophy-hero p {
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.philosophy-grid article,
.philosophy-grid article:nth-child(n) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.philosophy-icon,
.philosophy-icon-4,
.philosophy-icon-5 {
  flex: 0 0 auto;
  margin-right: auto;
  margin-left: auto;
}

/* SERVICES: STRONGER TITLE HIERARCHY AND EDITORIAL LAYOUTS */

.services-hero-v2 {
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(135deg, #eef7f3 0%, #f9fbfa 58%, #e6f1fb 100%);
}

.services-hero-v2 h1,
.support-fit-v2 .section-heading h2,
.group-learning-section .section-heading h2,
.work-project-v2 .section-heading h2,
.family-communication-section h2,
.right-fit-section h2 {
  max-width: 18ch;
  color: var(--dark-green);
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  line-height: 1.02;
  text-wrap: balance;
}

.services-hero-v2 .services-lead {
  max-width: 19ch;
  margin: 0.8rem 0;
  color: var(--green);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 850;
  line-height: 1.15;
}

.services-hero-v2 > div > p:not(.services-lead) {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.services-hero-v2 img {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
  border-radius: 1.8rem;
  box-shadow: 0 24px 55px rgba(25, 75, 64, 0.17);
}

.support-fit-v2 .section-heading,
.group-learning-section .section-heading,
.work-project-v2 .section-heading {
  width: 100%;
  max-width: none;
}

.support-fit-v2 .section-heading > p,
.group-learning-section .section-heading > p,
.work-project-v2 .section-heading > p {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.support-editorial {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.support-editorial-main,
.support-editorial-note {
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1.7rem;
}

.support-editorial-main {
  background: linear-gradient(145deg, #174f43, #2e7b69);
  color: var(--white);
  box-shadow: 0 22px 45px rgba(23, 79, 67, 0.2);
}

.support-editorial-main h3 {
  max-width: 29ch;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.support-editorial-main ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.support-editorial-main li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.5;
}

.support-editorial-main li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #f4bd4d;
  font-weight: 900;
}

.support-editorial-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #fff3df, #fce2cb);
  border: 1px solid #f0c999;
}

.support-editorial-note > span,
.right-fit-heading > span {
  color: #b56518;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-editorial-note h3 {
  margin-top: 0.7rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.group-benefits-v2 {
  display: grid;
  gap: 0.8rem;
}

.group-benefits-v2 article {
  padding: 1.25rem 1.35rem;
  border: 0;
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.group-benefits-v2 article:nth-child(1) { background: #dff1e7; border-left: 7px solid #2d8766; }
.group-benefits-v2 article:nth-child(2) { background: #e5eefb; border-left: 7px solid #3976bc; }
.group-benefits-v2 article:nth-child(3) { background: #fff0da; border-left: 7px solid #e09a2c; }
.group-benefits-v2 article:hover { transform: translateX(7px); box-shadow: 0 12px 24px rgba(31, 41, 51, 0.1); }
.group-benefits-v2 strong { display: block; margin-bottom: 0.35rem; color: var(--navy); font-size: 1.08rem; }
.group-benefits-v2 span { color: #40535e; line-height: 1.55; }

.work-project-v2 {
  border-radius: 2rem;
  background: #f7f3ed;
}

.work-project-v2 .work-project-grid {
  display: grid;
  gap: 1rem;
}

.work-project-v2 .work-project-grid article {
  min-height: 290px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 0;
  border-radius: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-project-v2 .work-independent { background: linear-gradient(145deg, #dff2e8, #bfe1d0); }
.work-project-v2 .work-collaborative { background: linear-gradient(145deg, #e9e5fa, #d5c9f0); }
.work-project-v2 .work-project-grid article:hover { transform: translateY(-7px); box-shadow: 0 18px 35px rgba(31, 41, 51, 0.13); }
.work-project-v2 .work-visual { display: inline-flex; padding: 0.55rem 0.9rem; border-radius: 999px; background: rgba(255, 255, 255, 0.72); color: var(--dark-green); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.work-project-v2 h3 { margin-top: 1.5rem; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.work-project-v2 p { color: #40535e; font-size: 1.03rem; line-height: 1.65; }
.purpose-note { max-width: 850px; margin: 2rem auto 0; text-align: center; }

.family-communication-section {
  background: linear-gradient(135deg, #143f49, #246b63);
  color: var(--white);
}

.family-communication-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
}

.family-communication-section h2 { color: var(--white); }
.family-communication-section .section-lead { color: #bfe8dc; font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 800; }
.family-communication-section p { color: #e3f1ed; line-height: 1.7; }
.family-communication-points { display: grid; gap: 0.85rem; }
.family-communication-points article { padding: 1.2rem 1.35rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; background: rgba(255,255,255,0.09); }
.family-communication-points strong { display: block; margin-bottom: 0.35rem; color: #ffd58f; font-size: 1.08rem; }
.family-communication-points span { color: #f0f7f5; line-height: 1.55; }

.right-fit-section {
  border-radius: 2rem;
  background: linear-gradient(145deg, #fff7ea, #f8eee2);
}

.right-fit-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
}

.right-fit-heading p,
.right-fit-copy p { color: #465964; line-height: 1.7; }
.right-fit-copy blockquote { margin: 1.5rem 0 0; padding: 1.4rem 1.5rem; border-left: 6px solid #df9a33; border-radius: 0 1rem 1rem 0; background: var(--white); color: var(--dark-green); font-size: 1.12rem; font-weight: 750; line-height: 1.55; }

/* Keep the home-page section introductions genuinely full width. */
.explore-section > .section-heading,
.philosophy-content > .philosophy-hero,
.philosophy-content > .philosophy-hero > div {
  width: 100% !important;
  max-width: none !important;
}

.explore-section > .section-heading,
.philosophy-content > .philosophy-hero > div,
.explore-section > .section-heading > h2,
.explore-section > .section-heading > p:last-child,
.philosophy-content > .philosophy-hero h2,
.philosophy-content > .philosophy-hero p {
  text-align: center !important;
}

.explore-section > .section-heading > h2,
.philosophy-content > .philosophy-hero h2 {
  width: 100% !important;
  max-width: none !important;
  text-wrap: wrap;
}

.explore-section > .section-heading > p:last-child,
.philosophy-content > .philosophy-hero p {
  width: 100% !important;
  max-width: none !important;
  text-wrap: wrap;
}

@media (min-width: 800px) {
  .services-hero-v2,
  .support-editorial,
  .family-communication-layout,
  .right-fit-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* LATEST CONTENT REFINEMENTS */

.lc-intro {
  max-width: 1180px;
  padding-top: 2rem;
  text-align: left;
}

.lc-methodology-hero {
  display: block;
  width: 100%;
  height: clamp(240px, 33vw, 430px);
  margin: 0 0 2.5rem;
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: 0 18px 45px rgba(20, 70, 62, 0.15);
}

.lc-intro h1 {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.lc-intro > p:not(.eyebrow) {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: justify;
  text-align-last: left;
}

.lc-intro .lc-intro-lead {
  text-align: left !important;
}

.group-learning-image {
  display: grid;
  gap: 1rem;
}

.group-learning-image img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.support-editorial-note ul {
  display: grid;
  gap: 0.48rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.support-editorial-note li {
  position: relative;
  padding-left: 1.3rem;
  color: #384753;
  line-height: 1.4;
}

.support-editorial-note li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b56518;
  font-weight: 900;
}

.journey-intro {
  max-width: 1180px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  text-align: left;
}

.journey-intro h1 {
  width: 100%;
  max-width: none;
  color: var(--dark-green);
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  text-align: left;
  text-wrap: wrap;
}

.journey-intro .journey-intro-lead {
  width: 100%;
  max-width: none;
  margin: 0.85rem 0;
  color: var(--green);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.journey-intro > p:last-child {
  width: 100%;
  max-width: none;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.journey-heading {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.journey-heading h2 {
  max-width: 20ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--dark-green);
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.02;
}

.journey-heading .journey-heading-lead {
  margin: 0.85rem auto 0;
  color: var(--green);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
}

.journey-heading > p:last-child {
  max-width: 760px;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.journey-photo-consultation {
  background-image: url("../images/journey-initial-consultation.png");
  background-size: cover;
  background-position: center;
}

/* Three project images fill the same visual height as the learning information. */
.group-learning-image img {
  height: 100%;
  min-height: 0;
}

.group-learning-image img:first-child {
  object-position: center center;
}

@media (min-width: 700px) {
  .group-learning-layout { align-items: stretch; }
  .group-learning-image { grid-template-rows: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 699px) {
  .group-learning-image img { height: 220px; }
}

/* BOOK A CONSULTATION */

.consultation-page {
  background:
    radial-gradient(circle at 7% 18%, rgba(47, 111, 159, 0.1), transparent 24rem),
    radial-gradient(circle at 95% 82%, rgba(47, 111, 94, 0.12), transparent 27rem),
    var(--cream);
}

.consultation-shell {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.consultation-intro {
  align-self: start;
}

.consultation-intro h1 {
  max-width: 11ch;
  margin: 0 0 1.4rem;
  color: var(--dark-green);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.consultation-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.consultation-reassurance {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.consultation-reassurance article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(47, 111, 94, 0.16);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.7);
}

.consultation-reassurance article > span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--soft-green);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.consultation-reassurance strong {
  display: block;
  color: var(--dark-green);
}

.consultation-reassurance p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consultation-form-card {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid rgba(47, 111, 94, 0.2);
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(31, 77, 65, 0.13);
}

.consultation-form-heading {
  margin-bottom: 1.8rem;
}

.consultation-form-heading h2 {
  margin: 0;
  color: var(--dark-green);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.consultation-form-heading > p:last-child {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.consultation-form-heading span,
.form-field label > span:not(.optional-label),
.contact-time-fieldset legend span,
.consent-field b {
  color: #b9542f;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-field label,
.contact-time-fieldset legend {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.optional-label {
  margin-left: 0.35rem;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9d8d1;
  border-radius: 0.9rem;
  background: #fbfdfc;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-field input {
  min-height: 52px;
  padding: 0.75rem 0.9rem;
}

.form-field textarea {
  min-height: 170px;
  padding: 0.9rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 111, 94, 0.12);
}

.contact-time-fieldset {
  margin: 0 0 1.2rem;
  padding: 0;
  border: 0;
}

.contact-time-fieldset legend {
  margin-bottom: 0.65rem;
}

.contact-time-options {
  display: grid;
  gap: 0.7rem;
}

.contact-time-option {
  position: relative;
  cursor: pointer;
}

.contact-time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-time-option > span {
  display: grid;
  gap: 0.12rem;
  min-height: 74px;
  padding: 0.9rem 1rem;
  border: 2px solid #d9e5df;
  border-radius: 1rem;
  background: #fbfdfc;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-time-option strong {
  color: var(--dark-green);
}

.contact-time-option small {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-time-option:hover > span {
  border-color: rgba(47, 111, 94, 0.55);
  transform: translateY(-2px);
}

.contact-time-option input:focus-visible + span {
  outline: 3px solid rgba(47, 111, 159, 0.28);
  outline-offset: 2px;
}

.contact-time-option input:checked + span {
  border-color: var(--green);
  background: var(--soft-green);
  box-shadow: 0 8px 20px rgba(47, 111, 94, 0.13);
}

.contact-time-option input:checked + span::after {
  content: "Selected";
  justify-self: start;
  margin-top: 0.3rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 0.4rem 0 1.25rem;
  color: #44535c;
  cursor: pointer;
}

.consent-field input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.18rem;
  accent-color: var(--green);
}

.consultation-submit {
  width: 100%;
  min-height: 56px;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 12px 27px rgba(47, 111, 94, 0.23);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.consultation-submit:hover,
.consultation-submit:focus-visible {
  border-color: var(--dark-green);
  background: var(--dark-green);
  box-shadow: 0 16px 34px rgba(31, 77, 65, 0.28);
  transform: translateY(-2px);
}

.consultation-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.consultation-privacy {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.consultation-status {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
}

.consultation-status.success {
  border: 1px solid #b9ddcd;
  background: var(--soft-green);
  color: var(--dark-green);
}

.consultation-status.error {
  border: 1px solid #edc2b2;
  background: #fff3ed;
  color: #8b3f27;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (min-width: 680px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field-wide {
    grid-column: 1 / -1;
  }

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

@media (min-width: 960px) {
  .consultation-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    align-items: start;
  }

  .consultation-intro {
    position: sticky;
    top: 120px;
  }
}

/* GLOBAL SLIDE-IN CONSULTATION PANEL */

body.consultation-drawer-open {
  overflow: hidden;
}

.consultation-drawer-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    visibility 0s linear 0.36s,
    opacity 0.28s ease;
}

.consultation-drawer-layer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.consultation-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 42, 0.48);
  backdrop-filter: blur(2px);
}

.consultation-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(540px, 38vw, 720px);
  height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(232, 111, 37, 0.24);
  background:
    radial-gradient(circle at 102% 8%, rgba(124, 82, 168, 0.1), transparent 18rem),
    radial-gradient(circle at -5% 75%, rgba(47, 111, 94, 0.09), transparent 20rem),
    #fff7ed;
  box-shadow: -22px 0 65px rgba(15, 29, 45, 0.22);
  transform: translateX(102%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.consultation-drawer-layer.is-open .consultation-drawer {
  transform: translateX(0);
}

.consultation-drawer-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.4rem, 3.2vw, 3rem) 2.5rem;
  scrollbar-color: rgba(232, 111, 37, 0.38) transparent;
  scrollbar-width: thin;
}

.consultation-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(32, 38, 59, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 22px rgba(32, 38, 59, 0.09);
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.consultation-drawer-close:hover,
.consultation-drawer-close:focus-visible {
  border-color: #e86f25;
  background: #fff;
  color: #d95d17;
  outline: none;
  transform: rotate(4deg);
}

.consultation-drawer-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem 1rem;
  align-items: center;
  padding-right: 3.3rem;
  margin-bottom: 2rem;
}

.consultation-drawer-logo {
  width: 68px;
  height: 68px;
  padding: 0.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
  object-fit: contain;
  box-shadow: 0 8px 22px rgba(32, 38, 59, 0.08);
}

.consultation-drawer-kicker {
  margin: 0 0 0.15rem;
  color: #d95d17;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consultation-drawer-header h2,
.consultation-drawer-success h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 2.7vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.consultation-drawer-intro {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  color: #555e68;
  font-size: 0.98rem;
  line-height: 1.65;
}

.consultation-drawer-form {
  display: grid;
  gap: 1.05rem;
}

.consultation-drawer-field {
  display: grid;
  gap: 0.42rem;
}

.consultation-drawer-field label,
.consultation-drawer-times legend {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.consultation-drawer-field label > span,
.consultation-drawer-times legend > span,
.consultation-drawer-consent b {
  color: #d95d17;
}

.consultation-drawer-field label small {
  margin-left: 0.35rem;
  color: #7d7580;
  font-weight: 600;
}

.consultation-drawer-field input,
.consultation-drawer-field textarea {
  width: 100%;
  border: 1px solid rgba(32, 38, 59, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 6px 16px rgba(32, 38, 59, 0.035);
  color: var(--navy);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.consultation-drawer-field input {
  min-height: 49px;
  padding: 0.7rem 0.85rem;
}

.consultation-drawer-field textarea {
  min-height: 132px;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.consultation-drawer-field input::placeholder,
.consultation-drawer-field textarea::placeholder {
  color: #8a8e94;
  opacity: 1;
}

.consultation-drawer-field input:focus,
.consultation-drawer-field textarea:focus {
  border-color: #e86f25;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232, 111, 37, 0.12);
}

.consultation-drawer-times {
  min-width: 0;
  margin: 0.15rem 0;
  padding: 0;
  border: 0;
}

.consultation-drawer-times legend {
  margin-bottom: 0.55rem;
}

.consultation-drawer-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.consultation-drawer-time {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.consultation-drawer-time input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consultation-drawer-time > span {
  position: relative;
  display: grid;
  gap: 0.14rem;
  min-height: 76px;
  padding: 0.75rem 0.65rem;
  border: 1.5px solid rgba(32, 38, 59, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 5px 14px rgba(32, 38, 59, 0.03);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.consultation-drawer-time strong {
  padding-right: 1rem;
  color: var(--navy);
  font-size: 0.86rem;
}

.consultation-drawer-time small {
  color: #68717b;
  font-size: 0.71rem;
  line-height: 1.25;
}

.consultation-drawer-time:hover > span {
  border-color: rgba(232, 111, 37, 0.6);
  transform: translateY(-2px);
}

.consultation-drawer-time input:focus-visible + span {
  outline: 3px solid rgba(47, 111, 159, 0.22);
  outline-offset: 2px;
}

.consultation-drawer-time input:checked + span {
  border-color: #e86f25;
  background: #ffead8;
  box-shadow: 0 8px 18px rgba(232, 111, 37, 0.13);
}

.consultation-drawer-time input:checked + span::after {
  content: "✓";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #e86f25;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.consultation-sensitive-note {
  margin: 0;
  color: #755f69;
  font-size: 0.75rem;
}

.consultation-drawer-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #434b57;
  font-size: 0.86rem;
  cursor: pointer;
}

.consultation-drawer-consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  accent-color: #e86f25;
}

.consultation-drawer-privacy {
  margin: -0.25rem 0 0 1.8rem;
  color: #76727a;
  font-size: 0.74rem;
  line-height: 1.45;
}

.consultation-drawer-error {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid #edb59b;
  border-radius: 0.8rem;
  background: #fff0e8;
  color: #8b3f27;
  font-size: 0.84rem;
  font-weight: 700;
}

.consultation-drawer-action {
  position: sticky;
  bottom: -2.5rem;
  z-index: 2;
  margin: 0 -0.35rem -2.5rem;
  padding: 1rem 0.35rem 2.5rem;
  background: linear-gradient(to bottom, rgba(255, 247, 237, 0), #fff7ed 25%);
}

.consultation-drawer-submit,
.consultation-success-close {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1.2rem;
  border: 1px solid #e86f25;
  border-radius: 0.8rem;
  background: #e86f25;
  box-shadow: 0 12px 27px rgba(217, 93, 23, 0.24);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.consultation-drawer-submit:hover,
.consultation-drawer-submit:focus-visible,
.consultation-success-close:hover,
.consultation-success-close:focus-visible {
  border-color: #c84d0d;
  background: #c84d0d;
  box-shadow: 0 16px 32px rgba(200, 77, 13, 0.3);
  outline: none;
  transform: translateY(-2px);
}

.consultation-drawer-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.consultation-drawer-submit.is-loading span::after {
  content: "";
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 0.65rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -0.12rem;
  animation: consultation-spin 0.75s linear infinite;
}

.consultation-drawer-success {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 7rem);
  text-align: center;
}

.consultation-drawer-success[hidden] {
  display: none;
}

.consultation-success-mark {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: #e8f3ee;
  box-shadow: 0 12px 30px rgba(47, 111, 94, 0.16);
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.consultation-drawer-success > p:not(.consultation-drawer-kicker) {
  max-width: 500px;
  margin: 1rem auto 1.8rem;
  color: #555e68;
}

.consultation-success-close {
  width: min(100%, 220px);
  margin: 0 auto;
}

.consultation-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@keyframes consultation-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .consultation-drawer {
    width: 100%;
    border-left: 0;
  }

  .consultation-drawer-scroll {
    padding: 1.35rem 1.1rem 2rem;
  }

  .consultation-drawer-header {
    grid-template-columns: 54px 1fr;
    gap: 0.75rem;
    padding-right: 3rem;
    margin-bottom: 1.4rem;
  }

  .consultation-drawer-logo {
    width: 54px;
    height: 54px;
  }

  .consultation-drawer-header h2 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .consultation-drawer-time-grid {
    grid-template-columns: 1fr;
  }

  .consultation-drawer-time > span {
    min-height: 64px;
  }

  .consultation-drawer-action {
    bottom: -2rem;
    margin-bottom: -2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .consultation-drawer-layer,
  .consultation-drawer {
    transition-duration: 0.01ms;
  }

  .consultation-drawer-submit.is-loading span::after {
    animation-duration: 1.5s;
  }
}

.journey-photo-progress {
  background-image: url("../images/programme-executive.png");
  background-size: cover;
  background-position: center;
}

.lc-session {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: radial-gradient(circle at 17% 80%, #d9f1e8 0, transparent 32%), radial-gradient(circle at 90% 12%, #e5dcf6 0, transparent 29%), #fbfaf5;
}

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

.session-map {
  position: relative;
  z-index: 1;
  gap: clamp(2rem, 5vw, 4rem);
}

.session-orbit {
  width: min(470px, 88vw);
  border: 0;
  background: conic-gradient(from 30deg, #f1ad25, #27a7ba, #7253b0, #d05c91, #319461, #f1ad25);
  box-shadow: 0 20px 45px rgba(31, 41, 51, 0.12);
}

.session-orbit::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fbfaf5;
}

.session-core { z-index: 1; inset: 33%; background: linear-gradient(145deg, #174f43, #287a6a); }
.session-core::before { content: ""; position: absolute; inset: -13px; border: 2px dashed #b9d9cc; border-radius: 50%; }
.session-core strong { font-size: 1.85rem; letter-spacing: 0.06em; }

.session-node {
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 8px solid #fbfaf5;
}

.session-node strong { display: none; }
.session-node span { position: static; color: var(--white); font-size: 1.55rem; letter-spacing: 0.03em; }
.session-node::after { content: attr(data-session-label); position: absolute; top: calc(100% + 0.5rem); left: 50%; min-width: 88px; color: var(--dark-green); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.05em; text-align: center; text-transform: uppercase; transform: translateX(-50%); }
.node-1 { top: -9%; left: 39%; }
.node-2 { top: 24%; right: -9%; }
.node-3 { right: 6%; bottom: -2%; }
.node-4 { bottom: -2%; left: 6%; }
.node-5 { top: 24%; left: -9%; }
.session-node:hover, .session-node:focus-visible, .session-node.active { transform: scale(1.13) rotate(-4deg); }

.session-detail { min-height: 300px; border: 1px solid #dce7e0; background: rgba(255, 255, 255, 0.86); box-shadow: 0 18px 38px rgba(31, 41, 51, 0.1); }
.session-panel h3 { max-width: 13ch; font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.session-panel p { max-width: 40ch; font-size: 1.12rem; line-height: 1.65; }

/* CONTACT PAGE */

.contact-showcase {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 1.25rem;
}

.contact-showcase-copy h1 {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  color: var(--dark-green);
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.02;
}

.contact-showcase-lead {
  width: 100%;
  max-width: none;
  margin: 0.85rem 0;
  color: var(--green);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
}

.contact-showcase-description {
  width: 100%;
  max-width: none;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.contact-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.contact-channel-grid {
  display: grid;
  gap: 0.65rem;
}

.contact-channel {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid #d6e3dc;
  border-radius: 0.9rem;
  background: var(--white);
  color: var(--dark-green);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-channel:hover { background: #eaf5ef; transform: translateY(-3px); }
.contact-channel span { display: block; margin-bottom: 0.22rem; color: var(--green); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.11em; }
.contact-channel strong { overflow-wrap: anywhere; }

.contact-map-card {
  overflow: hidden;
  border-radius: 1.7rem;
  background: #194f46;
  box-shadow: 0 24px 50px rgba(23, 79, 67, 0.2);
}

.contact-map-heading { padding: 1.6rem 1.6rem 1.25rem; color: var(--white); }
.contact-map-heading span { color: #ffd48b; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-map-heading h2 { margin: 0.45rem 0 0.35rem; color: var(--white); font-size: clamp(1.7rem, 3vw, 2.55rem); }
.contact-map-heading p { margin: 0; color: #d7eee5; }
.contact-map-card iframe { display: block; width: 100%; min-height: 350px; border: 0; filter: saturate(0.82) contrast(1.04); }

/* CONTACT: ABOUT-STYLE TYPOGRAPHY AND CONSULTATION PREPARATION */

.contact-page .contact-showcase-copy > .eyebrow {
  margin: 0 0 0.8rem;
}

.contact-page .contact-showcase-copy h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--dark-green);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

.contact-page .contact-showcase-description {
  max-width: 680px;
  margin-top: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: left;
}

.contact-page .contact-prep-section {
  max-width: 1140px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid #edd9bf;
  border-radius: 2rem;
  background: #fff8ee;
}

.contact-page .contact-prep-section .section-heading {
  width: 100%;
  max-width: 900px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.contact-page .contact-prep-section .section-heading h2 {
  margin: 0 auto 1rem;
  color: var(--dark-green);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.contact-page .contact-prep-section .section-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-page .prep-grid {
  display: grid;
  gap: 1rem;
}

.contact-page .prep-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 1.5rem;
  border: 1px solid var(--prep-border);
  border-radius: 1.35rem;
  background: var(--prep-bg);
  box-shadow: 0 15px 35px rgba(25, 70, 59, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .prep-card:hover {
  box-shadow: 0 22px 42px rgba(25, 70, 59, 0.14);
  transform: translateY(-5px);
}

.contact-page .prep-age { --prep-accent: #267b61; --prep-bg: #eaf5ef; --prep-border: #c7e2d5; }
.contact-page .prep-concern { --prep-accent: #275fa4; --prep-bg: #edf4fc; --prep-border: #cbdcf2; }
.contact-page .prep-reports { --prep-accent: #d06a24; --prep-bg: #fff0df; --prep-border: #f0d0ad; }
.contact-page .prep-helped { --prep-accent: #70428f; --prep-bg: #f4edf8; --prep-border: #ddcce8; }

.contact-page .prep-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.contact-page .prep-number {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--prep-accent);
  color: var(--white);
  font-weight: 900;
}

.contact-page .prep-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--prep-accent);
}

.contact-page .prep-icon svg {
  width: 2.45rem;
  height: 2.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-page .prep-card h3 {
  margin: 0 0 0.75rem;
  color: var(--prep-accent);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.contact-page .prep-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-page .two-column-section h2,
.contact-page .cta-section h2 {
  color: var(--dark-green);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.03;
}

.contact-page .two-column-section p,
.contact-page .cta-section p {
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 720px) {
  .contact-page .prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 800px) {
  .contact-showcase { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr); align-items: center; }
  .contact-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ABOUT: HOW WE SUPPORT CHILDREN */

.support-children-section,
.difference-comparison-section {
  max-width: 1180px;
  margin: 4rem auto;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
  border-radius: 2rem;
  background: #fffaf2;
}

.support-children-heading { text-align: center; }
.support-children-heading p,
.support-children-heading h2 {
  margin: 0;
  color: #0d2c60;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 950;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}
.support-children-heading h2 { color: #08753d; font-size: clamp(3rem, 7vw, 6rem); }
.support-children-heading > span { display: block; margin-top: 1rem; color: #142859; font-size: clamp(0.9rem, 1.8vw, 1.2rem); font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }

.support-children-grid { display: grid; gap: 1px; margin-top: 2.25rem; background: #eadfc9; }
.support-pillar { padding: 1.25rem; background: #fffdf8; text-align: center; }
.pillar-icon { display: inline-flex; align-items: center; justify-content: center; width: 4.2rem; height: 4.2rem; margin-bottom: 0.7rem; border-radius: 50%; background: #e4f0df; color: #227940; font-size: 2rem; font-weight: 900; }
.support-pillar h3 { margin: 0 0 0.45rem; font-size: 1.02rem; font-weight: 950; line-height: 1.08; text-transform: uppercase; }
.support-pillar ul { display: grid; gap: 0.24rem; margin: 0; padding: 0; list-style: none; color: #19254d; font-size: 0.92rem; }
.support-pillar li::before { content: "•"; margin-right: 0.35rem; }
.support-pillar.personalised h3, .support-pillar.personalised .pillar-icon { color: #157543; }
.support-pillar.evidence h3, .support-pillar.evidence .pillar-icon { color: #145ca0; }
.support-pillar.communication h3, .support-pillar.communication .pillar-icon { color: #70428f; }
.support-pillar.wellbeing h3, .support-pillar.wellbeing .pillar-icon { color: #dc5e27; }
.support-pillar.academic h3, .support-pillar.academic .pillar-icon { color: #08785d; }
.support-pillar.social h3, .support-pillar.social .pillar-icon { color: #bf8a16; }
.support-pillar.evidence .pillar-icon { background: #e0ecfb; }.support-pillar.communication .pillar-icon { background: #efe4f4; }.support-pillar.wellbeing .pillar-icon { background: #fde4d8; }.support-pillar.academic .pillar-icon { background: #dff0e9; }.support-pillar.social .pillar-icon { background: #fff0ce; }

.support-pillar .pillar-icon.philosophy-icon {
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  margin: 0 auto 0.7rem;
  background-image: url("../images/philosophy-icons.png");
  background-size: 400% 200%;
  background-repeat: no-repeat;
  box-shadow: none;
}

.support-pillar .philosophy-icon-2 { background-position: 33.333% 0; }
.support-pillar .philosophy-icon-3 { background-position: 66.666% 0; }
.support-pillar .philosophy-icon-5 { background-position: 0 100%; }
.support-pillar .philosophy-icon-6 { background-position: 33.333% 100%; }
.support-pillar .philosophy-icon-7 { background-position: 66.666% 100%; }
.support-pillar .philosophy-icon-8 { background-position: 100% 100%; }

.support-pillar .support-svg-icon {
  display: grid;
  width: 4.9rem;
  height: 4.9rem;
  margin: 0 auto 0.7rem;
  place-items: center;
}

.support-pillar .support-svg-icon svg {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.continuous-learning { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; padding: 1rem 1.3rem; border-radius: 1rem; background: #e5f0df; color: #12633b; }
.continuous-learning > div { display: flex; align-items: center; gap: 0.85rem; }.continuous-learning > div > span { font-size: 2rem; }.continuous-learning strong { display: block; font-size: 1.2rem; text-transform: uppercase; }.continuous-learning p { margin: 0.25rem 0 0; color: #18344a; }.learning-mark { color: #df6e20; font-size: 3rem; }
.support-principles { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin-top: 1.2rem; color: #177646; font-size: 0.82rem; font-weight: 900; text-transform: uppercase; }

.difference-comparison-section { background: #fffaf2; }
.difference-comparison-heading { text-align: center; }
.difference-comparison-heading h2 { margin: 0; color: #08743e; font-size: clamp(2.6rem, 6vw, 5.3rem); font-weight: 950; line-height: 1; text-transform: uppercase; }.difference-comparison-heading h2 span { color: #0d2c60; }
.difference-comparison-grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
.difference-column { padding: 1.6rem; border-radius: 1.25rem; }.difference-others { background: #fff0eb; }.difference-fas { background: #eef6e8; }
.difference-column h3 { display: flex; align-items: center; gap: 0.65rem; margin: 0 0 1.2rem; color: #0d2c60; font-size: clamp(1.25rem, 2.3vw, 1.8rem); text-transform: uppercase; }.difference-column h3 span { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; color: var(--white); font-size: 2rem; }.difference-others h3 span { background: #ed5c2a; }.difference-fas h3 span { background: #28934e; }.difference-column h3 em { color: #d75129; font-style: normal; }.difference-fas h3 em { color: #14713e; }
.difference-column ul { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; }.difference-column li { display: flex; align-items: center; gap: 0.7rem; color: #19254d; font-size: 1.05rem; }.difference-column li::before { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 1.65rem; height: 1.65rem; border-radius: 50%; color: var(--white); font-size: 1.1rem; font-weight: 900; }.difference-others li::before { content: "×"; background: #ed5c2a; }.difference-fas li::before { content: "✓"; background: #28934e; }

@media (min-width: 700px) { .support-children-grid { grid-template-columns: repeat(3, 1fr); }.difference-comparison-grid { grid-template-columns: repeat(2, 1fr); } }

.about-founder-intro .founder-content {
  order: 1;
}

.about-founder-intro .founder-image-card {
  order: 2;
}

.difference-column h3 {
  align-items: flex-start;
  line-height: 1.12;
}

@media (min-width: 1000px) {
  .about-founder-intro {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }
}

@media (max-width: 699px) {
  .difference-column h3 {
    font-size: 1.18rem;
  }
}

/* CONTACT PAGE — COHESIVE FÁS VISUAL SYSTEM */

.contact-page main {
  overflow: hidden;
}

.contact-page .contact-showcase {
  position: relative;
  max-width: 1180px;
  margin: clamp(1.5rem, 4vw, 3.5rem) auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid #ecd9c3;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(232, 110, 38, 0.1) 0 7rem, transparent 7.1rem),
    radial-gradient(circle at 90% 92%, rgba(47, 111, 94, 0.1) 0 9rem, transparent 9.1rem),
    #fff8ef;
}

.contact-page .contact-showcase::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 44%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #e86e26;
  box-shadow: 1rem 0 0 #2f6f5e, 2rem 0 0 #72519a;
  opacity: 0.7;
}

.contact-page .contact-showcase-copy {
  position: relative;
  z-index: 1;
}

.contact-page .contact-showcase-copy > .eyebrow,
.contact-page .contact-prep-section .eyebrow,
.contact-page .contact-next-section .eyebrow,
.contact-page .cta-section .eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page .contact-showcase-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  letter-spacing: -0.045em;
}

.contact-page .contact-showcase-description {
  max-width: 590px;
  color: #52646b;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.contact-page .contact-showcase-actions .button {
  padding: 0.95rem 1.45rem;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(47, 111, 94, 0.2);
}

.contact-page .contact-showcase-actions .button:hover {
  border-color: var(--dark-green);
  background: var(--dark-green);
  color: var(--white);
}

.contact-page .contact-channel-grid {
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-page .contact-channel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.9rem;
  border-color: rgba(47, 111, 94, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 77, 65, 0.07);
}

.contact-page .contact-channel:hover {
  background: var(--white);
  box-shadow: 0 16px 32px rgba(31, 77, 65, 0.13);
}

.contact-page .contact-channel-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--channel-bg, #e8f3ee);
  color: var(--channel-color, var(--green));
}

.contact-page .contact-channel-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-page .contact-channel-letter {
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.contact-page .contact-channel-email {
  --channel-bg: #e8f3ee;
  --channel-color: #23715d;
}

.contact-page .contact-channel-instagram {
  --channel-bg: #f3e8f6;
  --channel-color: #70428f;
}

.contact-page .contact-channel-facebook {
  --channel-bg: #e4eefb;
  --channel-color: #275fa4;
}

.contact-page .contact-channel-copy {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.contact-page .contact-channel-copy small {
  color: var(--channel-color);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page .contact-channel-copy strong {
  margin-top: 0.2rem;
  color: var(--dark-green);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.contact-page .contact-map-card {
  position: relative;
  z-index: 1;
  border: 0.45rem solid rgba(255, 255, 255, 0.72);
  border-radius: 2rem;
  background: var(--dark-green);
  transform: rotate(1deg);
}

.contact-page .contact-map-heading {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-page .contact-map-heading h2 {
  max-width: 13ch;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.04;
}

.contact-page .contact-map-card iframe {
  min-height: 390px;
}

.contact-page .contact-prep-section {
  position: relative;
  margin-top: clamp(3rem, 7vw, 6rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.9)),
    #fff8ee;
}

.contact-page .contact-prep-section::before {
  content: "";
  position: absolute;
  top: -1.15rem;
  left: 50%;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50% 50% 50% 0;
  background: #e86e26;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 8px 20px rgba(232, 110, 38, 0.2);
}

.contact-page .contact-prep-section .section-heading h2 {
  max-width: 18ch;
  letter-spacing: -0.035em;
}

.contact-page .prep-grid {
  align-items: stretch;
}

.contact-page .prep-card {
  min-height: 265px;
  border-width: 1px;
}

.contact-page .prep-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 1.4rem solid color-mix(in srgb, var(--prep-accent) 12%, transparent);
}

.contact-page .prep-card h3,
.contact-page .prep-card p {
  position: relative;
  z-index: 1;
}

.contact-page .contact-next-section {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: clamp(4rem, 8vw, 7rem) auto;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  border-radius: 2rem;
  background: #e9f4ef;
}

.contact-page .contact-next-heading h2 {
  max-width: 9ch;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.04em;
}

.contact-page .contact-next-heading > p:last-child {
  max-width: 32rem;
  font-size: 1.05rem;
}

.contact-page .contact-next-content > p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.contact-page .next-steps-list {
  display: grid;
  gap: 0.85rem;
}

.contact-page .next-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(47, 111, 94, 0.14);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .next-step-card:hover {
  box-shadow: 0 15px 30px rgba(31, 77, 65, 0.1);
  transform: translateX(5px);
}

.contact-page .next-step-number {
  grid-row: 1 / span 2;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-page .next-step-card strong {
  color: var(--dark-green);
  font-size: 1.05rem;
}

.contact-page .next-step-card > span:last-child {
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-page .cta-section {
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 90% 20%, rgba(232, 110, 38, 0.1), transparent 15rem),
    var(--warm);
}

.contact-page .cta-section h2 {
  max-width: 15ch;
  margin: 0.45rem 0 0.7rem;
  letter-spacing: -0.035em;
}

@media (min-width: 800px) {
  .contact-page .contact-showcase {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  }

  .contact-page .contact-next-section {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

@media (max-width: 799px) {
  .contact-page .contact-showcase {
    margin: 1rem;
  }

  .contact-page .contact-showcase::before {
    display: none;
  }

  .contact-page .contact-map-card {
    transform: none;
  }

  .contact-page .contact-map-card iframe {
    min-height: 310px;
  }

  .contact-page .contact-next-section {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

@media (max-width: 540px) {
  .contact-page .contact-showcase-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .contact-page .contact-prep-section {
    width: auto;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 2rem 1.15rem;
  }

  .contact-page .contact-prep-section .section-heading {
    text-align: left;
  }

  .contact-page .contact-prep-section .section-heading h2,
  .contact-page .contact-prep-section .section-heading > p:last-child {
    margin-left: 0;
    text-align: left;
  }

  .contact-page .prep-card {
    min-height: 0;
  }
}
