@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --color-brand-blue: #1b5b7c;
  --color-brand-blue-deep: #124865;
  --color-ink: #171717;
  --color-paper: #f7f8f6;
  --color-white: #ffffff;
  --color-rose: #d9a7b5;
  --color-rose-soft: #f2e3e8;
  --color-leaf: #7f907a;
  --color-leaf-soft: #e8ede5;
  --color-door: #3d241f;
  --color-line: #d8dedb;
  --color-error: #a63d40;
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --shadow-overlap: 0 12px 40px rgb(23 23 23 / 0.12);
  --shadow-lift: 0 6px 20px rgb(23 23 23 / 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --shell: 1440px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section-space: clamp(5.5rem, 10vw, 9rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-brand-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--color-ink);
  background: var(--color-rose);
}

* {
  scrollbar-color: var(--color-brand-blue) var(--color-paper);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--color-paper);
}

*::-webkit-scrollbar-thumb {
  background: var(--color-brand-blue);
  border: 2px solid var(--color-paper);
}

:focus-visible {
  outline: 3px solid var(--color-brand-blue);
  outline-offset: 3px;
}

.shell {
  width: min(var(--shell), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-brand-blue-deep);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

#main-content:focus {
  outline: none;
}

h1,
h2,
h3 {
  margin-block: 0;
  font-family: var(--font-display);
  font-stretch: 82%;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6.7vw, 6rem);
  font-weight: 720;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 690;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

p,
ul,
ol {
  margin-block: 0;
}

.site-header.home-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--color-paper);
  border-bottom: 1px solid rgb(23 23 23 / 0.11);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 6.25rem;
  width: min(var(--shell), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  gap: clamp(2rem, 5vw, 5rem);
}

.brand {
  display: inline-flex;
  flex: 0 1 20rem;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: min(100%, 20rem);
  height: auto;
}

.home-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2.25rem);
  margin-left: auto;
}

.home-header .site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.home-header .site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--color-brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.home-header .site-nav a:hover::after,
.home-header .site-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-header .site-nav a[aria-current] {
  color: var(--color-brand-blue-deep);
}

.home-header .site-nav .nav-contact {
  min-height: 48px;
  padding-inline: 1.35rem;
  color: var(--color-white);
  background: var(--color-brand-blue);
  border-radius: var(--radius-sm);
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.home-header .site-nav .nav-contact:hover {
  background: var(--color-brand-blue-deep);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  color: var(--color-ink);
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1rem;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: inset 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav-toggle-icon span:first-child {
  top: 0.2rem;
}

.nav-toggle-icon span:last-child {
  bottom: 0.2rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
  top: 0.45rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
  bottom: 0.45rem;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(43rem, calc(100svh - 6.25rem), 52rem);
  margin-bottom: clamp(5rem, 8vw, 8rem);
  color: var(--color-white);
  background: var(--color-door);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  background: rgb(18 11 10 / 0.28);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(5.5rem, 10vw, 8rem) 11rem;
}

.hero-copy {
  width: min(37%, 32rem);
  min-width: 27rem;
}

.hero-copy h1 {
  max-width: 6ch;
  color: var(--color-white);
}

.hero-copy > p:not(.hero-person) {
  max-width: 31ch;
  margin-top: 1.75rem;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.hero-person {
  margin-top: 2.35rem;
  padding-top: 1rem;
  color: var(--color-rose);
  font-size: 1rem;
  font-weight: 650;
  border-top: 2px solid var(--color-brand-blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button-light {
  color: var(--color-ink);
  background: var(--color-white);
}

.button-light:hover {
  color: var(--color-ink);
  background: var(--color-rose-soft);
  box-shadow: var(--shadow-lift);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.button-primary:hover {
  color: var(--color-white);
  background: var(--color-brand-blue-deep);
  box-shadow: var(--shadow-lift);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  color: var(--color-brand-blue-deep);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgb(27 91 124 / 0.4);
  text-underline-offset: 0.28em;
}

.text-link svg,
.path-arrow {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover svg,
.path:hover .path-arrow {
  transform: translateX(2px);
}

.text-link-on-dark,
.text-link-on-blue {
  color: var(--color-white);
  text-decoration-color: rgb(255 255 255 / 0.5);
}

.hero :focus-visible,
.contact-band :focus-visible {
  outline-color: var(--color-white);
}

.pathfinder {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -4.5rem;
  left: 0;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 1.08fr;
  box-shadow: var(--shadow-overlap);
}

.path {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 9rem;
  padding: 1.35rem clamp(1.15rem, 2vw, 2rem);
  color: var(--color-ink);
  border-right: 1px solid rgb(23 23 23 / 0.14);
  text-decoration: none;
  transition: filter 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.path:last-child {
  border-right: 0;
}

.path:hover {
  color: var(--color-ink);
  filter: brightness(0.97);
  transform: translateY(-3px);
}

.path-self {
  background: var(--color-rose);
}

.path-together {
  background: #aebca9;
}

.path-organization {
  color: var(--color-brand-blue-deep);
  background: var(--color-white);
}

.path-icon {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.path-copy {
  display: grid;
  gap: 0.2rem;
}

.path-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-stretch: 85%;
  font-weight: 650;
  line-height: 1.1;
}

.path-copy small {
  color: rgb(23 23 23 / 0.72);
  font-size: 0.9rem;
  line-height: 1.25;
}

.home-page .section {
  padding-block: var(--section-space);
}

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

.section-heading-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: end;
}

.section-heading-grid h2 {
  grid-column: 1 / span 7;
  max-width: 13ch;
}

.section-heading-grid p {
  grid-column: 9 / -1;
  max-width: 38ch;
  color: rgb(23 23 23 / 0.74);
}

.service-stories {
  display: grid;
  gap: clamp(5.5rem, 10vw, 9rem);
  margin-top: clamp(4rem, 7vw, 6.5rem);
}

.service-story {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.service-image {
  position: relative;
  grid-column: 1 / span 7;
  min-height: 32rem;
  overflow: hidden;
}

.service-image::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: clamp(3rem, 7vw, 7rem);
  height: clamp(3rem, 7vw, 7rem);
  background: var(--color-paper);
  content: "";
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.service-copy {
  grid-column: 9 / -1;
}

.service-copy h3 {
  max-width: 12ch;
}

.service-copy p {
  max-width: 43ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.service-copy .text-link {
  margin-top: 1.5rem;
}

.service-story-together .service-image {
  grid-column: 6 / -1;
  grid-row: 1;
}

.service-story-together .service-image::after {
  right: auto;
  left: -1px;
}

.service-story-together .service-copy {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.youth-feature {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-top: clamp(5.5rem, 10vw, 9rem);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.youth-feature-heading {
  grid-column: 1 / span 5;
}

.youth-feature-heading h3 {
  max-width: 13ch;
}

.youth-feature-copy {
  grid-column: 7 / -1;
}

.youth-feature-copy p {
  max-width: 55ch;
  color: rgb(23 23 23 / 0.76);
}

.youth-feature-copy p + p {
  margin-top: 1rem;
}

.youth-feature-copy .button {
  margin-top: 2rem;
}

.youth-topic-line {
  max-width: 58ch;
  margin-bottom: 1.2rem;
  color: var(--color-brand-blue-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.wayfinding-section {
  background: var(--color-white);
}

.wayfinding-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.wayfinding-photo {
  grid-column: 1 / span 5;
  height: min(66vw, 48rem);
  overflow: hidden;
}

.wayfinding-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wayfinding-copy {
  grid-column: 7 / -1;
}

.wayfinding-copy h2 {
  max-width: 11ch;
}

.wayfinding-copy > p {
  max-width: 52ch;
  margin-top: 1.75rem;
  color: rgb(23 23 23 / 0.76);
}

.wayfinding-list {
  padding: 0;
  margin: 2.5rem 0 2rem;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.wayfinding-list li {
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) 1.2fr;
  gap: 1.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--color-line);
}

.wayfinding-list strong {
  font-family: var(--font-display);
  font-stretch: 85%;
  line-height: 1.2;
}

.wayfinding-list span {
  color: rgb(23 23 23 / 0.7);
  font-size: 0.96rem;
  line-height: 1.45;
}

.about-section {
  overflow: hidden;
  background: var(--color-paper);
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.about-media {
  position: relative;
  grid-column: 1 / span 7;
  min-height: clamp(35rem, 52vw, 48rem);
}

.about-room {
  position: absolute;
  inset: 0 8% 10% 0;
  width: 92%;
  height: 90%;
  object-fit: cover;
}

.about-portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(12rem, 24vw, 20rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 0.75rem solid var(--color-paper);
}

.about-copy {
  grid-column: 9 / -1;
}

.about-copy h2 {
  max-width: 10ch;
}

.about-copy p {
  max-width: 43ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.about-copy .text-link {
  margin-top: 1.5rem;
}

.workshops-section {
  background: var(--color-leaf-soft);
}

.workshops-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.workshops-copy {
  grid-column: 1 / span 6;
  padding-right: clamp(0rem, 3vw, 3rem);
}

.workshops-copy h2 {
  max-width: 11ch;
}

.workshops-copy > p {
  max-width: 48ch;
  margin-top: 1.75rem;
}

.workshops-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2.25rem 0 2rem;
  list-style: none;
  border-top: 1px solid rgb(23 23 23 / 0.2);
}

.workshops-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(23 23 23 / 0.2);
}

.workshops-image {
  grid-column: 8 / -1;
  min-height: 36rem;
  overflow: hidden;
}

.workshops-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.contact-band {
  padding-block: clamp(5rem, 8vw, 7.5rem);
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.contact-band-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: end;
}

.contact-band h2 {
  grid-column: 1 / span 7;
  max-width: 12ch;
}

.contact-band-copy {
  grid-column: 9 / -1;
}

.contact-band-copy p {
  max-width: 37ch;
  color: rgb(255 255 255 / 0.86);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.home-footer {
  color: var(--color-ink);
  background: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.footer-brand .brand {
  max-width: 18rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgb(23 23 23 / 0.64);
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-stretch: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-nav a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 44px;
  min-height: 44px;
  color: rgb(23 23 23 / 0.72);
  font-size: 0.95rem;
  text-decoration-color: rgb(23 23 23 / 0.25);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem 2rem;
  color: rgb(23 23 23 / 0.6);
  border-top: 1px solid var(--color-line);
  font-size: 0.88rem;
}

/* Counselling pages extend the homepage system without introducing a second visual language. */
.counselling-page main {
  overflow: clip;
}

.inner-hero {
  --inner-hero-ground: var(--color-white);
  background: var(--inner-hero-ground);
}

.overview-inner-hero {
  --inner-hero-ground: var(--color-white);
}

.service-inner-hero-reverse {
  --inner-hero-ground: var(--color-rose-soft);
}

.family-inner-hero {
  --inner-hero-ground: var(--color-leaf-soft);
}

.inner-hero-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: stretch;
  min-height: clamp(36rem, 55vw, 46rem);
}

.inner-hero-copy {
  display: flex;
  grid-column: 1 / span 5;
  justify-content: center;
  flex-direction: column;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.inner-hero-copy h1 {
  max-width: 10ch;
  margin-top: 2rem;
  font-size: clamp(3.4rem, 6vw, 5.5rem);
}

.inner-hero-copy > p {
  max-width: 42ch;
  margin-top: 2rem;
  color: rgb(23 23 23 / 0.76);
  font-size: clamp(1.12rem, 1.4vw, 1.35rem);
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
}

.inner-hero-media {
  position: relative;
  grid-column: 7 / -1;
  min-height: inherit;
  overflow: hidden;
}

.inner-hero-media::after {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: clamp(4rem, 9vw, 9rem);
  height: clamp(4rem, 9vw, 9rem);
  background: var(--inner-hero-ground);
  content: "";
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.inner-hero-media-room img {
  object-position: 46% center;
}

.service-inner-hero-reverse .inner-hero-copy {
  grid-column: 8 / -1;
  grid-row: 1;
}

.service-inner-hero-reverse .inner-hero-media {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.service-inner-hero-reverse .inner-hero-media::after {
  right: -1px;
  left: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  color: rgb(23 23 23 / 0.62);
  font-size: 0.94rem;
  line-height: 1.3;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-brand-blue-deep);
}

.counselling-section {
  padding-block: var(--section-space);
}

.inner-section-heading h2 {
  max-width: 12ch;
}

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

.choice-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.choice-panel {
  display: grid;
  grid-template-rows: minmax(22rem, 1fr) auto;
  min-width: 0;
}

.choice-panel + .choice-panel {
  border-left: 1px solid rgb(23 23 23 / 0.16);
}

.choice-panel-self {
  background: var(--color-rose-soft);
}

.choice-panel-together {
  background: var(--color-leaf-soft);
}

.choice-panel-media {
  overflow: hidden;
}

.choice-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.choice-panel-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.choice-panel-copy h3 {
  max-width: 12ch;
}

.choice-panel-copy p {
  max-width: 44ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.choice-panel-copy .text-link {
  margin-top: 1.5rem;
}

.choice-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.5rem;
}

.choice-help p {
  max-width: 57ch;
}

.youth-overview {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.youth-overview > div:first-child {
  grid-column: 1 / span 6;
}

.youth-overview > div:last-child {
  grid-column: 8 / -1;
}

.youth-overview h3 {
  max-width: 15ch;
}

.youth-overview > div:last-child > p {
  max-width: 46ch;
  color: rgb(23 23 23 / 0.76);
}

.youth-overview .text-link {
  margin-top: 1.5rem;
}

.orientation-section {
  background: var(--color-white);
}

.orientation-layout,
.reading-layout,
.situations-layout,
.approach-layout,
.group-counselling-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.orientation-heading,
.reading-heading {
  grid-column: 1 / span 5;
}

.orientation-heading h2,
.reading-heading h2 {
  max-width: 11ch;
}

.orientation-list {
  grid-column: 7 / -1;
  border-top: 1px solid var(--color-line);
}

.orientation-list article {
  display: grid;
  grid-template-columns: minmax(13rem, 0.9fr) 1.1fr;
  gap: 2rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--color-line);
}

.orientation-list h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.orientation-list p {
  color: rgb(23 23 23 / 0.72);
  font-size: 1rem;
}

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

.practitioner-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.practitioner-photo {
  grid-column: 2 / span 3;
  min-height: 31rem;
  overflow: hidden;
}

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

.practitioner-copy {
  grid-column: 6 / span 6;
}

.practitioner-copy h2 {
  max-width: 12ch;
}

.practitioner-copy p {
  max-width: 48ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.practitioner-copy .text-link {
  margin-top: 1.5rem;
}

.practitioner-layout-text-only .practitioner-copy {
  grid-column: 4 / span 6;
}

.reading-copy {
  grid-column: 7 / span 5;
}

.reading-copy p {
  max-width: 52ch;
  color: rgb(23 23 23 / 0.76);
}

.reading-copy p + p {
  margin-top: 1.5rem;
}

.reading-copy .lead-copy {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.45;
}

.situations-section {
  background: var(--color-white);
}

.situations-intro {
  grid-column: 1 / span 5;
}

.situations-intro h2 {
  max-width: 11ch;
}

.situations-intro p {
  max-width: 38ch;
  margin-top: 1.75rem;
  color: rgb(23 23 23 / 0.74);
}

.situation-list {
  grid-column: 7 / -1;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.situation-list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--color-line);
}

.situation-list li::before {
  width: 0.7rem;
  height: 2px;
  margin-top: 0.78em;
  background: var(--color-rose);
  content: "";
}

.situation-list-leaf li::before {
  background: var(--color-leaf);
}

.approach-section-rose {
  background: var(--color-rose-soft);
}

.approach-section-leaf {
  background: var(--color-leaf-soft);
}

.approach-layout h2 {
  grid-column: 1 / span 5;
  max-width: 11ch;
}

.approach-copy {
  grid-column: 7 / span 5;
}

.approach-copy p {
  max-width: 52ch;
}

.approach-copy p + p {
  margin-top: 1.5rem;
}

.youth-inner-hero {
  --inner-hero-ground: var(--color-paper);
}

.youth-inner-hero .inner-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.9vw, 5.7rem);
}

.youth-reading-copy {
  grid-column: 7 / span 5;
}

.youth-reading-copy p {
  max-width: 52ch;
  color: rgb(23 23 23 / 0.76);
}

.youth-reading-copy p + p {
  margin-top: 1.5rem;
}

.service-disclaimer {
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 3px solid var(--color-rose);
}

.youth-support-section {
  background: var(--color-white);
}

.youth-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.youth-support-grid article {
  padding: clamp(2.25rem, 5vw, 4.5rem);
}

.youth-support-grid article:first-child {
  background: var(--color-rose-soft);
}

.youth-support-grid article:last-child {
  background: var(--color-leaf-soft);
  border-left: 1px solid rgb(23 23 23 / 0.16);
}

.youth-support-grid h3 {
  max-width: 15ch;
}

.youth-support-grid p {
  max-width: 48ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.youth-method-section {
  background: var(--color-paper);
}

.practitioner-layout-room {
  position: relative;
  min-height: 42rem;
}

.practitioner-room-photo {
  grid-column: 1 / span 6;
  grid-row: 1;
  min-height: 37rem;
  overflow: hidden;
}

.practitioner-room-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.practitioner-layout-room .practitioner-photo-small {
  z-index: 2;
  grid-column: 5 / span 3;
  grid-row: 1;
  align-self: end;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: 0.65rem solid var(--color-paper);
}

.practitioner-layout-room .practitioner-copy {
  grid-column: 9 / -1;
  grid-row: 1;
}

.service-next {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--color-rose-soft);
}

.service-next-leaf {
  background: var(--color-leaf-soft);
}

.service-next-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.service-next h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.shared-paths-section {
  background: var(--color-paper);
}

.visually-contained-heading {
  max-width: 14ch;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.shared-paths-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.shared-paths-layout article {
  padding-block: 2rem;
  border-top: 2px solid var(--color-leaf);
  border-bottom: 1px solid var(--color-line);
}

.shared-paths-layout h3 {
  max-width: 10ch;
}

.shared-paths-layout p {
  max-width: 48ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.group-counselling {
  padding-block: clamp(5rem, 8vw, 7rem);
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.group-counselling h2 {
  grid-column: 1 / span 5;
  max-width: 11ch;
}

.group-counselling-layout > div {
  grid-column: 7 / -1;
}

.group-counselling p {
  max-width: 52ch;
  color: rgb(255 255 255 / 0.88);
}

.group-counselling p + p {
  margin-top: 1.5rem;
}

.group-counselling .text-link {
  margin-top: 1.5rem;
}

/* About and contact pages share the established light, asymmetric information system. */
.information-page main {
  overflow: clip;
}

.information-section {
  padding-block: var(--section-space);
}

.about-page-hero,
.contact-page-hero {
  --inner-hero-ground: var(--color-white);
}

.about-hero-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: stretch;
  min-height: clamp(39rem, 58vw, 49rem);
}

.about-hero-layout .inner-hero-copy {
  grid-column: 1 / span 5;
}

.about-hero-media {
  position: relative;
  grid-column: 7 / -1;
  min-height: inherit;
}

.about-hero-room {
  position: absolute;
  inset: 0 9% 9% 0;
  width: 91%;
  height: 91%;
  object-fit: cover;
}

.about-hero-portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(13rem, 23vw, 20rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 0.75rem solid var(--inner-hero-ground);
}

.work-approach-section,
.locations-section {
  background: var(--color-white);
}

.information-reading-layout,
.institute-layout,
.locations-layout,
.legal-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.information-reading-heading,
.locations-heading,
.legal-heading {
  grid-column: 1 / span 5;
}

.information-reading-heading h2,
.locations-heading h2,
.legal-heading h2 {
  max-width: 11ch;
}

.information-reading-copy,
.location-list,
.legal-content {
  grid-column: 7 / -1;
}

.information-reading-copy p {
  max-width: 54ch;
  color: rgb(23 23 23 / 0.76);
}

.information-reading-copy p + p {
  margin-top: 1.5rem;
}

.information-reading-copy .lead-copy {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.45;
}

.work-fields-section,
.legal-section {
  background: var(--color-paper);
}

.work-field-rail,
.contact-paths-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.work-field,
.contact-path {
  min-width: 0;
  padding: clamp(2.25rem, 5vw, 4.5rem);
}

.work-field + .work-field,
.contact-path + .contact-path {
  border-left: 1px solid rgb(23 23 23 / 0.16);
}

.work-field-counselling,
.contact-path-personal {
  background: var(--color-rose-soft);
}

.work-field-workshops {
  background: var(--color-leaf-soft);
}

.contact-path-organization {
  background: var(--color-white);
}

.work-field h3,
.contact-path h3 {
  max-width: 13ch;
}

.work-field p,
.contact-path p {
  max-width: 47ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.work-field .text-link,
.contact-path .text-link {
  margin-top: 1.5rem;
}

.institute-section {
  background: var(--color-leaf-soft);
}

.institute-layout {
  align-items: center;
}

.institute-photo {
  grid-column: 1 / span 5;
  height: min(66vw, 47rem);
  overflow: hidden;
}

.institute-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institute-copy {
  grid-column: 7 / -1;
}

.institute-copy h2 {
  max-width: 11ch;
}

.institute-copy p {
  max-width: 49ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.78);
}

.institute-copy .text-link {
  margin-top: 1.5rem;
}

.contact-page-hero .inner-hero-copy h1 {
  max-width: 8ch;
}

.contact-hero-media img {
  object-position: center center;
}

.contact-paths-section {
  background: var(--color-paper);
}

.locations-heading p,
.legal-heading p {
  max-width: 38ch;
  margin-top: 1.75rem;
  color: rgb(23 23 23 / 0.74);
}

.location-list {
  border-top: 1px solid var(--color-line);
}

.location-list article {
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--color-line);
}

.location-list h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.location-list address {
  margin-top: 0.65rem;
  color: rgb(23 23 23 / 0.74);
  font-style: normal;
}

.location-list .text-link {
  justify-self: start;
}

.legal-data {
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--color-line);
}

.legal-data dt {
  font-weight: 650;
}

.legal-data dd {
  min-width: 0;
  margin: 0;
  color: rgb(23 23 23 / 0.76);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.legal-content > .text-link {
  margin-top: 1.75rem;
}

/* Existing inner pages keep a clean, readable fallback until their redesign pass. */
body:not(.home-page):not(.counselling-page):not(.information-page) .site-header,
body:not(.home-page):not(.counselling-page):not(.information-page) main,
body:not(.home-page):not(.counselling-page):not(.information-page) .site-footer {
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--color-line);
}

body:not(.home-page):not(.counselling-page):not(.information-page) .logo {
  width: 9.5rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .site-nav a {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .site-nav a:hover,
body:not(.home-page):not(.counselling-page):not(.information-page) .site-nav a.active {
  color: var(--color-brand-blue);
}

body:not(.home-page):not(.counselling-page):not(.information-page) main {
  padding-block: 2rem 4rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .section {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--color-line);
}

body:not(.home-page):not(.counselling-page):not(.information-page) .section:last-child {
  border-bottom: 0;
}

body:not(.home-page):not(.counselling-page):not(.information-page) h1 {
  margin-bottom: 1.5rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) h2,
body:not(.home-page):not(.counselling-page):not(.information-page) h3 {
  margin-bottom: 1rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) p + p,
body:not(.home-page):not(.counselling-page):not(.information-page) p + ul,
body:not(.home-page):not(.counselling-page):not(.information-page) p + ol {
  margin-top: 1rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 27rem);
  gap: 2rem;
  align-items: start;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .grid,
body:not(.home-page):not(.counselling-page):not(.information-page) .image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

body:not(.home-page):not(.counselling-page):not(.information-page) .card {
  padding: 1.5rem;
  background: var(--color-white);
}

body:not(.home-page):not(.counselling-page):not(.information-page) .card img,
body:not(.home-page):not(.counselling-page):not(.information-page) .content-image,
body:not(.home-page):not(.counselling-page):not(.information-page) .image-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  object-fit: cover;
}

@media (max-width: 74rem) {
  .header-inner {
    gap: 1.5rem;
  }

  .brand {
    flex-basis: 16rem;
  }

  .home-header .site-nav {
    gap: 0.9rem;
  }

  .home-header .site-nav a {
    font-size: 0.9rem;
  }

  .home-header .site-nav .nav-contact {
    padding-inline: 1rem;
  }

  .path-copy small {
    display: none;
  }
}

@media (max-width: 64rem) {
  .js .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .js .home-header .site-nav {
    position: fixed;
    z-index: 90;
    inset: 6.25rem 0 auto;
    display: grid;
    justify-items: stretch;
    gap: 0;
    max-height: calc(100svh - 6.25rem);
    padding: 1rem var(--gutter) 2rem;
    overflow-y: auto;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-overlap);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  }

  .js .home-header .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .home-header .site-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.1rem;
  }

  .js .home-header .site-nav a::after {
    display: none;
  }

  .js .home-header .site-nav .nav-contact {
    justify-content: center;
    margin-top: 1rem;
    border-bottom: 0;
  }

  .hero {
    min-height: 46rem;
  }

  .hero-copy {
    width: 43%;
    min-width: 23rem;
  }

  .pathfinder {
    grid-template-columns: 1fr 1fr;
    bottom: -8.5rem;
  }

  .path {
    min-height: 8.5rem;
  }

  .path-organization {
    grid-column: 1 / -1;
    min-height: 6.5rem;
  }

  .home-page .services-section {
    padding-top: calc(var(--section-space) + 5rem);
  }

  .section-heading-grid h2,
  .section-heading-grid p,
  .service-image,
  .service-copy,
  .service-story-together .service-image,
  .service-story-together .service-copy,
  .about-media,
  .about-copy,
  .workshops-copy,
  .workshops-image,
  .contact-band h2,
  .contact-band-copy {
    grid-column: 1 / -1;
  }

  .section-heading-grid p {
    margin-top: 0.5rem;
  }

  .service-story-together .service-copy {
    grid-row: 2;
  }

  .service-image,
  .service-story-together .service-image {
    grid-row: 1;
    min-height: 28rem;
  }

  .service-copy,
  .service-story-together .service-copy {
    max-width: 42rem;
  }

  .wayfinding-photo {
    grid-column: 1 / span 5;
    grid-row: 1;
    height: 38rem;
  }

  .wayfinding-copy {
    grid-column: 6 / -1;
    grid-row: 1;
  }

  .about-media {
    min-height: 40rem;
  }

  .about-copy {
    max-width: 42rem;
  }

  .workshops-image {
    min-height: 30rem;
  }

  .contact-band-copy {
    max-width: 42rem;
    margin-top: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2;
  }

  .inner-hero-layout {
    min-height: 39rem;
  }

  .inner-hero-copy {
    grid-column: 1 / span 6;
  }

  .inner-hero-media {
    grid-column: 7 / -1;
  }

  .service-inner-hero-reverse .inner-hero-copy {
    grid-column: 7 / -1;
  }

  .service-inner-hero-reverse .inner-hero-media {
    grid-column: 1 / span 6;
  }

  .inner-hero-copy h1 {
    font-size: clamp(3.1rem, 6.5vw, 4.75rem);
  }

  .orientation-list article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .practitioner-layout-room .practitioner-room-photo {
    grid-column: 1 / span 6;
  }

  .practitioner-layout-room .practitioner-photo-small {
    grid-column: 5 / span 3;
  }

  .practitioner-layout-room .practitioner-copy {
    grid-column: 8 / -1;
  }

  .about-hero-layout {
    min-height: 42rem;
  }

  .about-hero-layout .inner-hero-copy {
    grid-column: 1 / span 6;
  }

  .about-hero-media {
    grid-column: 7 / -1;
  }

  .about-hero-portrait {
    width: min(50%, 16rem);
  }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1.5rem;
    --section-space: 5.5rem;
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand {
    flex-basis: auto;
    max-width: 13rem;
  }

  .js .home-header .site-nav {
    inset-block-start: 5rem;
    max-height: calc(100svh - 5rem);
  }

  .hero {
    display: flex;
    min-height: 0;
    margin-bottom: 0;
    flex-direction: column;
  }

  .hero-media {
    position: relative;
    order: 2;
    height: clamp(22rem, 78vw, 33rem);
  }

  .hero-media::after {
    display: none;
  }

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

  .hero-inner {
    display: block;
    order: 1;
    min-height: 0;
    width: 100%;
    padding: 4.5rem var(--gutter) 3.25rem;
    background: var(--color-door);
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 32rem;
    margin-inline: auto;
  }

  .hero-copy h1 {
    max-width: 8ch;
  }

  .hero-copy > p:not(.hero-person) {
    max-width: 36ch;
  }

  .hero-person {
    max-width: 18rem;
  }

  .pathfinder {
    position: relative;
    order: 3;
    bottom: auto;
    display: grid;
    width: 100%;
    box-shadow: none;
  }

  .path,
  .path-organization {
    grid-column: 1 / -1;
    min-height: 6.75rem;
    border-right: 0;
    border-bottom: 1px solid rgb(23 23 23 / 0.16);
  }

  .path-copy small {
    display: block;
  }

  .home-page .services-section {
    padding-top: var(--section-space);
  }

  .section-heading-grid,
  .service-story,
  .wayfinding-layout,
  .about-layout,
  .workshops-layout,
  .contact-band-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading-grid h2,
  .section-heading-grid p,
  .service-image,
  .service-copy,
  .service-story-together .service-image,
  .service-story-together .service-copy,
  .wayfinding-photo,
  .wayfinding-copy,
  .about-media,
  .about-copy,
  .workshops-copy,
  .workshops-image,
  .contact-band h2,
  .contact-band-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .service-stories {
    gap: 5.5rem;
    margin-top: 4rem;
  }

  .service-image,
  .service-story-together .service-image {
    min-height: 20rem;
  }

  .service-image::after {
    width: 3rem;
    height: 3rem;
  }

  .wayfinding-photo {
    height: 28rem;
  }

  .wayfinding-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .about-media {
    min-height: 31rem;
  }

  .about-room {
    inset: 0 0 16% 0;
    width: 100%;
    height: 84%;
  }

  .about-portrait {
    right: -0.25rem;
    width: min(50%, 14rem);
    border-width: 0.5rem;
  }

  .workshops-image {
    min-height: 23rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.35rem;
  }

  .inner-hero-layout,
  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    min-height: 0;
  }

  .inner-hero-copy,
  .service-inner-hero-reverse .inner-hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 42rem);
    margin-inline: auto;
    padding: 4.5rem var(--gutter) 3.5rem;
  }

  .inner-hero-copy h1 {
    margin-top: 1.5rem;
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .inner-hero-copy > p {
    margin-top: 1.5rem;
  }

  .inner-hero-media,
  .service-inner-hero-reverse .inner-hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 24rem;
  }

  .inner-hero-media::after,
  .service-inner-hero-reverse .inner-hero-media::after {
    right: auto;
    left: -1px;
    width: 4rem;
    height: 4rem;
  }

  .about-hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 31rem;
  }

  .about-hero-layout .inner-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .about-hero-room {
    inset: 0 0 14% 0;
    width: 100%;
    height: 86%;
  }

  .about-hero-portrait {
    right: var(--gutter);
    width: min(48%, 13rem);
    border-width: 0.5rem;
  }

  .choice-rail,
  .shared-paths-layout,
  .work-field-rail,
  .contact-paths-layout {
    grid-template-columns: 1fr;
  }

  .choice-panel + .choice-panel {
    border-top: 1px solid rgb(23 23 23 / 0.16);
    border-left: 0;
  }

  .work-field + .work-field,
  .contact-path + .contact-path {
    border-top: 1px solid rgb(23 23 23 / 0.16);
    border-left: 0;
  }

  .choice-help,
  .service-next-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .orientation-layout,
  .reading-layout,
  .situations-layout,
  .approach-layout,
  .group-counselling-layout,
  .practitioner-layout,
  .information-reading-layout,
  .institute-layout,
  .locations-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .orientation-heading,
  .orientation-list,
  .reading-heading,
  .reading-copy,
  .situations-intro,
  .situation-list,
  .approach-layout h2,
  .approach-copy,
  .group-counselling h2,
  .group-counselling-layout > div,
  .practitioner-photo,
  .practitioner-copy,
  .practitioner-layout-room .practitioner-room-photo,
  .practitioner-layout-room .practitioner-photo-small,
  .practitioner-layout-room .practitioner-copy,
  .information-reading-heading,
  .information-reading-copy,
  .institute-photo,
  .institute-copy,
  .locations-heading,
  .location-list,
  .legal-heading,
  .legal-content {
    grid-column: 1;
    grid-row: auto;
  }

  .institute-photo {
    height: 30rem;
  }

  .location-list article,
  .legal-data div {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .practitioner-photo {
    width: min(72%, 21rem);
    min-height: 28rem;
  }

  .practitioner-layout-room {
    grid-template-rows: 28rem auto;
    min-height: 0;
  }

  .practitioner-layout-room .practitioner-room-photo {
    grid-row: 1;
    min-height: 28rem;
  }

  .practitioner-layout-room .practitioner-photo-small {
    grid-row: 1;
    justify-self: end;
    align-self: end;
    width: min(48%, 13rem);
  }

  .practitioner-layout-room .practitioner-copy {
    grid-row: 2;
  }

  .service-next h2 {
    max-width: 12ch;
  }

  body:not(.home-page):not(.counselling-page):not(.information-page) .site-header,
  body:not(.home-page):not(.counselling-page):not(.information-page) .two-column,
  body:not(.home-page):not(.counselling-page):not(.information-page) .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  .youth-feature,
  .youth-overview,
  .youth-support-grid {
    grid-template-columns: 1fr;
  }

  .youth-feature-heading,
  .youth-feature-copy,
  .youth-overview > div:first-child,
  .youth-overview > div:last-child,
  .youth-reading-copy {
    grid-column: 1;
  }

  .youth-feature,
  .youth-overview {
    padding: 2rem;
  }

  .youth-support-grid article:last-child {
    border-top: 1px solid rgb(23 23 23 / 0.16);
    border-left: 0;
  }

  .youth-inner-hero .inner-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }
}

@media (max-width: 30rem) {
  .hero-actions,
  .inner-hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .inner-hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .path {
    gap: 0.8rem;
    padding-inline: 1.1rem;
  }

  .path-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1;
  }
}

/* Workshop pages use the same light system with a clearer, process-led rhythm. */
.workshop-page-hero {
  --inner-hero-ground: var(--color-leaf-soft);
}

.workshop-hero-layout {
  min-height: clamp(40rem, 58vw, 49rem);
}

.workshop-page-hero .inner-hero-copy h1 {
  max-width: 9ch;
}

.workshop-hero-media {
  margin: 0;
  background: var(--color-brand-blue-deep);
}

.workshop-hero-media img {
  object-position: center center;
}

.workshop-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.7rem;
  color: var(--color-white);
  background: rgb(18 72 101 / 0.88);
  font-size: 0.78rem;
  line-height: 1.25;
}

.workshop-intro-section {
  background: var(--color-white);
}

.workshop-intro-layout,
.entrepreneurship-feature-layout,
.program-purpose-layout,
.competency-layout,
.program-method-layout,
.educational-approach-layout,
.program-practitioner-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.workshop-intro-layout > h2,
.program-purpose-layout > h2,
.competency-heading,
.educational-approach-layout > h2 {
  grid-column: 1 / span 5;
}

.workshop-intro-layout > h2,
.program-purpose-layout > h2,
.educational-approach-layout > h2 {
  max-width: 11ch;
}

.workshop-intro-copy,
.program-purpose-copy,
.competency-groups,
.educational-approach-layout > div {
  grid-column: 7 / -1;
}

.workshop-intro-copy p,
.program-purpose-copy p,
.educational-approach-layout p {
  max-width: 54ch;
  color: rgb(23 23 23 / 0.76);
}

.workshop-intro-copy p + p,
.program-purpose-copy p + p,
.educational-approach-layout p + p {
  margin-top: 1.5rem;
}

.workshop-intro-copy .lead-copy,
.entrepreneurship-feature-copy .lead-copy,
.program-purpose-copy .lead-copy,
.educational-approach-layout .lead-copy {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.45;
}

.entrepreneurship-feature {
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.entrepreneurship-feature-heading {
  grid-column: 1 / span 6;
}

.entrepreneurship-feature-heading h2 {
  max-width: 13ch;
}

.entrepreneurship-feature-heading > p {
  max-width: 32ch;
  margin-top: 1.5rem;
  color: rgb(255 255 255 / 0.76);
}

.entrepreneurship-feature-copy {
  grid-column: 8 / -1;
}

.entrepreneurship-feature-copy > p {
  max-width: 48ch;
  color: rgb(255 255 255 / 0.82);
}

.entrepreneurship-feature-copy > p + p {
  margin-top: 1.25rem;
}

.entrepreneurship-feature-copy .lead-copy {
  color: var(--color-white);
}

.idea-path {
  counter-reset: stage;
  margin: 2.25rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.idea-path li {
  counter-increment: stage;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  padding-block: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.28);
}

.idea-path li::before {
  color: var(--color-rose-soft);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  content: counter(stage, decimal-leading-zero);
}

.entrepreneurship-feature .button-primary {
  color: var(--color-brand-blue-deep);
  background: var(--color-white);
}

.entrepreneurship-feature .button-primary:hover {
  color: var(--color-white);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--color-white);
}

.workshop-offerings-section {
  background: var(--color-paper);
}

.workshop-offerings {
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--color-line);
}

.workshop-offering {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--color-line);
}

.workshop-offering-title {
  grid-column: 1 / span 5;
}

.workshop-offering-title h3 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
}

.workshop-offering-title > p {
  max-width: 30ch;
  margin-top: 1rem;
  color: var(--color-brand-blue-deep);
  font-weight: 650;
}

.workshop-offering-copy {
  grid-column: 7 / -1;
}

.workshop-offering-copy > div + div {
  margin-top: 1.75rem;
}

.workshop-offering-copy h4 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-stretch: 88%;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.workshop-offering-copy p {
  max-width: 57ch;
  color: rgb(23 23 23 / 0.76);
}

.workshop-offering-copy .text-link {
  margin-top: 2rem;
}

.workshop-offering-memory .workshop-offering-title::after,
.workshop-offering-workplace .workshop-offering-title::after {
  display: block;
  width: clamp(4rem, 9vw, 8rem);
  height: 3px;
  margin-top: 2rem;
  background: var(--color-rose);
  content: "";
}

.workshop-offering-workplace .workshop-offering-title::after {
  background: var(--color-leaf);
}

.program-page-hero {
  --inner-hero-ground: var(--color-paper);
  overflow: hidden;
}

.program-hero-layout {
  min-height: clamp(42rem, 61vw, 52rem);
}

.program-page-hero .inner-hero-copy {
  z-index: 1;
  grid-column: 1 / span 7;
}

.program-page-hero .inner-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.15rem, 5.8vw, 5.35rem);
}

.program-hero-visual {
  position: relative;
  grid-column: 9 / -1;
  min-height: inherit;
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.program-hero-visual::before {
  position: absolute;
  inset: 15% auto 15% -22%;
  width: 44%;
  background: var(--color-rose-soft);
  content: "";
}

.program-hero-word {
  position: absolute;
  top: 14%;
  left: 13%;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-stretch: 82%;
  font-weight: 690;
  line-height: 1;
}

.program-hero-word-end {
  top: auto;
  right: 10%;
  bottom: 14%;
  left: auto;
}

.program-hero-line {
  position: absolute;
  top: 25%;
  right: 18%;
  bottom: 25%;
  left: 18%;
  border: 2px solid rgb(255 255 255 / 0.6);
  border-top: 0;
  border-left: 0;
}

.program-hero-line::before,
.program-hero-line::after {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--color-rose);
  border-radius: 50%;
  content: "";
}

.program-hero-line::before {
  top: -0.45rem;
  right: -0.45rem;
}

.program-hero-line::after {
  right: -0.45rem;
  bottom: -0.45rem;
}

.program-purpose-section,
.program-practitioner-section {
  background: var(--color-white);
}

.program-journey-section {
  color: var(--color-white);
  background: var(--color-brand-blue-deep);
}

.program-journey-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: end;
}

.program-journey-heading h2 {
  grid-column: 1 / span 6;
  max-width: 11ch;
}

.program-journey-heading p {
  grid-column: 8 / -1;
  max-width: 45ch;
  color: rgb(255 255 255 / 0.78);
}

.program-journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(4rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.program-journey li {
  position: relative;
  min-width: 0;
  padding: 2.5rem 1.4rem 0 0;
}

.program-journey li:not(:last-child) {
  border-right: 1px solid rgb(255 255 255 / 0.22);
}

.program-journey li + li {
  padding-left: 1.4rem;
}

.program-journey li::before {
  position: absolute;
  top: -0.42rem;
  left: 0;
  width: 0.82rem;
  height: 0.82rem;
  background: var(--color-rose);
  border-radius: 50%;
  content: "";
}

.program-journey li + li::before {
  left: 1.4rem;
}

.program-journey h3 {
  color: var(--color-white);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.program-journey p {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.76);
  font-size: 1rem;
}

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

.competency-heading p {
  max-width: 34ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.74);
}

.competency-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-line);
}

.competency-groups section {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--color-line);
}

.competency-groups section:nth-child(even) {
  padding-right: 0;
  padding-left: 2rem;
  border-left: 1px solid var(--color-line);
}

.competency-groups h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.competency-groups ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: rgb(23 23 23 / 0.76);
}

.program-method-section {
  background: var(--color-leaf-soft);
}

.program-method-lead {
  grid-column: 1 / span 5;
}

.program-method-lead h2 {
  max-width: 11ch;
}

.program-method-lead p {
  max-width: 37ch;
  margin-top: 1.75rem;
  color: rgb(23 23 23 / 0.76);
}

.program-method-details {
  grid-column: 7 / -1;
  border-top: 1px solid rgb(23 23 23 / 0.18);
}

.program-method-details article {
  padding-block: 1.75rem;
  border-bottom: 1px solid rgb(23 23 23 / 0.18);
}

.program-method-details h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.program-method-details p {
  max-width: 56ch;
  margin-top: 0.85rem;
  color: rgb(23 23 23 / 0.76);
}

.educational-approach-section {
  background: var(--color-rose-soft);
}

.program-practitioner-layout {
  align-items: center;
}

.program-practitioner-photo {
  grid-column: 2 / span 3;
  min-height: 31rem;
  overflow: hidden;
}

.program-practitioner-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.program-practitioner-copy {
  grid-column: 7 / span 5;
}

.program-practitioner-copy h2 {
  max-width: 12ch;
}

.program-practitioner-copy p {
  max-width: 49ch;
  margin-top: 1.5rem;
  color: rgb(23 23 23 / 0.76);
}

.program-practitioner-copy .text-link {
  margin-top: 1.75rem;
}

@media (max-width: 64rem) {
  .workshop-hero-layout,
  .program-hero-layout {
    min-height: 41rem;
  }

  .program-page-hero .inner-hero-copy {
    grid-column: 1 / span 7;
  }

  .program-page-hero .inner-hero-copy h1 {
    font-size: clamp(3rem, 6.4vw, 4.6rem);
  }

  .program-hero-visual {
    grid-column: 9 / -1;
  }

  .program-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2.75rem;
  }

  .program-journey li:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 48rem) {
  .workshop-hero-layout,
  .program-hero-layout {
    min-height: 0;
  }

  .workshop-hero-media {
    min-height: 24rem;
  }

  .workshop-intro-layout,
  .entrepreneurship-feature-layout,
  .program-purpose-layout,
  .competency-layout,
  .program-method-layout,
  .educational-approach-layout,
  .program-practitioner-layout,
  .program-journey-heading,
  .workshop-offering {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .workshop-intro-layout > h2,
  .workshop-intro-copy,
  .entrepreneurship-feature-heading,
  .entrepreneurship-feature-copy,
  .workshop-offering-title,
  .workshop-offering-copy,
  .program-purpose-layout > h2,
  .program-purpose-copy,
  .program-journey-heading h2,
  .program-journey-heading p,
  .competency-heading,
  .competency-groups,
  .program-method-lead,
  .program-method-details,
  .educational-approach-layout > h2,
  .educational-approach-layout > div,
  .program-practitioner-photo,
  .program-practitioner-copy {
    grid-column: 1;
  }

  .workshop-offering {
    padding-block: 3.5rem;
  }

  .program-page-hero .inner-hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 42rem);
    margin-inline: auto;
    padding: 4.5rem var(--gutter) 3.5rem;
  }

  .program-page-hero .inner-hero-copy h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .program-hero-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 23rem;
  }

  .program-hero-visual::before {
    inset: -1px 16% auto 16%;
    width: auto;
    height: 3.5rem;
  }

  .program-journey {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
  }

  .program-journey li,
  .program-journey li + li {
    padding: 1.75rem 0 1.75rem 1.75rem;
    border-right: 0;
    border-left: 1px solid rgb(255 255 255 / 0.28);
  }

  .program-journey li:not(:last-child),
  .program-journey li:nth-child(3) {
    border-right: 0;
  }

  .program-journey li::before,
  .program-journey li + li::before {
    top: 2.25rem;
    left: -0.42rem;
  }

  .competency-groups {
    grid-template-columns: 1fr;
  }

  .competency-groups section,
  .competency-groups section:nth-child(even) {
    padding: 1.75rem 0;
    border-left: 0;
  }

  .program-practitioner-photo {
    width: min(72%, 21rem);
    min-height: 28rem;
  }
}

@media (max-width: 30rem) {
  .workshop-page-hero .inner-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .program-page-hero .inner-hero-copy h1 {
    font-size: clamp(2.45rem, 11.6vw, 3.45rem);
  }

  .workshop-hero-media {
    min-height: 19rem;
  }

  .program-hero-visual {
    min-height: 20rem;
  }
}

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