:root {
  --et-emerald-950: #071f18;
  --et-emerald-900: #0e2f24;
  --et-emerald-850: #12382a;
  --et-emerald-800: #174735;
  --et-emerald-700: #1f5c43;
  --et-emerald-600: #2f7655;
  --et-sage-50: #f0f5ef;
  --et-sage-100: #eef4eb;
  --et-sage-200: #dce8d7;
  --et-sage-400: #9fb99b;
  --et-ivory: #f8f1e6;
  --et-warm-white: #fffdf7;
  --et-deep: var(--et-emerald-900);
  --et-green: var(--et-emerald-800);
  --et-forest: var(--et-emerald-950);
  --et-sage: var(--et-sage-400);
  --et-mist: var(--et-sage-50);
  --et-cream: #fffaf0;
  --et-sand: #d8bd82;
  --et-clay: #b88761;
  --et-ink: #10231c;
  --et-muted: #53675d;
  --et-soft: #718278;
  --et-border: rgba(15, 46, 36, 0.12);
  --et-shadow-card: 0 8px 24px rgba(7, 31, 24, 0.08);
  --et-shadow-soft: 0 18px 50px rgba(7, 31, 24, 0.12);
  --et-shadow-lift: 0 28px 70px rgba(7, 31, 24, 0.18);
  --font-heading: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: Inter, "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--et-ink);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  background: var(--et-forest);
  margin: 0;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.sr-only {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.skip-link {
  background: var(--et-forest);
  color: white;
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--et-sand);
  outline-offset: 3px;
}

.shell {
  margin-inline: auto;
  max-width: 1120px;
  padding-inline: 20px;
  width: 100%;
}

.section {
  padding-block: 48px;
  position: relative;
}

.section-white {
  background: var(--et-warm-white);
}

.section-mist {
  background:
    radial-gradient(circle at 8% 0%, rgba(159, 185, 155, .18), transparent 18rem),
    var(--et-sage-50);
}

.section-green {
  background: var(--et-deep);
  color: white;
}

.site-header {
  backdrop-filter: blur(18px);
  background: transparent;
  border-bottom: 0;
  color: var(--et-cream);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}

.header-solid {
  backdrop-filter: none;
  background: var(--et-warm-white);
  box-shadow: 0 1px 0 rgba(15, 46, 36, .1);
  color: var(--et-ink);
  position: relative;
}

.header-shell {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand-logo-full {
  display: block;
  height: auto;
  max-width: min(42vw, 190px);
  width: clamp(145px, 15vw, 190px);
}

.brand-logo-mark {
  display: block;
  flex: 0 0 auto;
  height: 52px;
  width: 52px;
}

.brand picture {
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: .18rem;
  padding-bottom: .25rem;
}

.brand-mark {
  align-items: center;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  color: var(--et-green);
  display: inline-flex;
  font-family: var(--font-heading);
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: #4e3426;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header:not(.header-solid) .brand {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.desktop-nav {
  display: none;
  gap: .55rem;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--et-cream);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.header-solid .desktop-nav a {
  color: var(--et-ink);
}

.desktop-nav a:hover {
  color: var(--et-green);
}

.desktop-nav a.active {
  border-bottom: 2px solid var(--et-sand);
  color: var(--et-sand);
  padding-bottom: 2px;
}

.header-solid .desktop-nav a.active {
  border-bottom-color: var(--et-emerald-700);
  color: var(--et-emerald-700);
}

.button,
button.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  text-decoration: none;
}

.button-primary {
  background: var(--et-emerald-700);
  box-shadow: none;
  color: var(--et-cream);
}

.button-primary:hover {
  background: var(--et-forest);
}

.button-secondary {
  background: var(--et-warm-white);
  border: 1px solid var(--et-border);
  color: var(--et-emerald-900);
}

.button-outline {
  background: rgba(255, 250, 240, .04);
  border-color: rgba(255, 250, 240, .35);
  color: var(--et-cream);
}

.button-cream {
  background: var(--et-cream);
  color: var(--et-deep);
}

.header-book {
  display: none;
  flex-shrink: 0;
  min-width: 132px;
  white-space: nowrap;
}

.header-solid .header-shell {
  min-height: 72px;
}

.header-solid .brand-logo-full {
  width: clamp(145px, 16vw, 200px);
}

.menu-toggle,
.drawer-close {
  background: transparent;
  border: 1px solid var(--et-border);
  border-radius: 999px;
  color: var(--et-ink);
  min-height: 44px;
  min-width: 44px;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  margin-left: auto;
  padding: .7rem;
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
  display: block;
  height: 2px;
  width: 22px;
}

.mobile-drawer {
  background: rgba(10, 36, 28, .52);
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.mobile-drawer-panel {
  background: var(--et-cream);
  box-shadow: -20px 0 50px rgba(10, 36, 28, .2);
  color: var(--et-ink);
  margin-left: auto;
  min-height: 100%;
  padding: 1rem;
  width: min(90vw, 390px);
}

.drawer-head {
  align-items: center;
  display: flex;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mobile-drawer nav {
  display: grid;
  gap: .55rem;
}

.mobile-drawer nav a {
  border-bottom: 1px solid var(--et-border);
  color: var(--et-ink);
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: .85rem .25rem;
  text-decoration: none;
}

.mobile-drawer nav a.button-primary {
  color: var(--et-cream);
  justify-content: center;
}

.hero {
  background:
    linear-gradient(90deg, rgba(7, 31, 24, .92), rgba(7, 31, 24, .55) 44%, rgba(7, 31, 24, .18)),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 710px;
  padding-block: 120px 90px;
}

.therapy-room-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .76) 37%, rgba(7, 31, 24, .22) 72%, rgba(7, 31, 24, .08) 100%),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.public-home-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .96) 0%, rgba(7, 31, 24, .82) 38%, rgba(7, 31, 24, .38) 72%, rgba(7, 31, 24, .2) 100%),
    var(--hero-image, none);
  background-color: var(--et-forest);
  background-position: 50% 52%;
  background-repeat: no-repeat;
  background-size: auto, min(100vw, 1920px) auto;
}

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

.eyebrow {
  color: var(--et-emerald-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 0 0 .9rem;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.tree-story-band .eyebrow,
.section-green .eyebrow,
.cta-band .eyebrow {
  color: var(--et-sand);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 5.8vw, 5.65rem);
  line-height: .98;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: .98;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 .5rem;
}

p {
  line-height: 1.7;
}

.lead {
  color: inherit;
  font-size: clamp(1.04rem, 1.6vw, 1.34rem);
  line-height: 1.65;
  max-width: 720px;
}

.hero .lead {
  color: rgba(255, 250, 240, .86);
  max-width: 580px;
}

.hero-actions,
.cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.35rem;
}

.hero-card {
  background: rgba(255, 250, 240, .96);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 36px;
  color: var(--et-ink);
  overflow: hidden;
  box-shadow: var(--et-shadow-lift);
  position: relative;
}

.hero-card img,
.image-card img,
.team-card img,
.feature-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.therapy-room-hero .hero-card img {
  filter: saturate(.9) contrast(.98);
  object-position: 58% center;
}

.hero-card-content {
  padding: 1.35rem;
}

.floating-pill {
  background: rgba(255, 250, 240, .92);
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 999px;
  color: var(--et-green);
  font-size: .82rem;
  font-weight: 800;
  left: 1rem;
  padding: .5rem .75rem;
  position: absolute;
  top: 1rem;
}

.stat-row {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.stat {
  border-left: 1px solid rgba(255, 255, 255, .32);
  padding-left: .9rem;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
}

.centered {
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.team-profile-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-intro {
  margin-bottom: 2rem;
  max-width: none;
}

.team-intro h2 {
  max-width: none;
}

.team-intro-copy {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.35rem;
  max-width: none;
}

.team-intro-copy p {
  margin: 0;
}

.cards-3 {
  grid-template-columns: 1fr;
}

.service-card,
.team-card,
.resource-card,
.faq-card,
.contact-card {
  background: rgba(255, 250, 240, .76);
  border: 1px solid var(--et-border);
  border-radius: 18px;
  box-shadow: var(--et-shadow-card);
  padding: 1.35rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.therapy-faq-section h2 {
  color: white;
}

.therapy-faq-section .faq-card {
  color: var(--et-ink);
}

.therapy-faq-section .card-grid,
.card-grid.faq-list-grid,
.eap-workplace-faq-grid,
.ndis-faq-grid {
  grid-template-columns: 1fr;
}

.therapy-faq-section .faq-card,
.faq-list-grid .faq-card,
.ndis-faq-section .faq-card {
  width: 100%;
}

.eap-detail-section .service-card {
  color: var(--et-ink);
}

.ndis-faq-section h2 {
  color: white;
}

.ndis-faq-grid {
  grid-template-columns: 1fr;
}

.ndis-faq-section .faq-card {
  color: var(--et-ink);
}

.resource-detail-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.career-opening-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.career-opening-card {
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 24px;
  box-shadow: var(--et-shadow-card);
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.career-opening-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.career-opening-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.career-opening-meta span {
  background: rgba(17, 92, 70, .1);
  border: 1px solid rgba(17, 92, 70, .16);
  border-radius: 999px;
  color: var(--et-deep);
  font-size: .9rem;
  font-weight: 700;
  padding: .35rem .7rem;
}

.career-body {
  line-height: 1.7;
  margin-block: 1.25rem;
  white-space: pre-line;
}

.career-apply-note {
  border-left: 3px solid var(--et-forest);
  font-weight: 700;
  padding-left: 1rem;
}

.career-list {
  display: grid;
  gap: .6rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.resource-detail-card {
  background: rgba(255, 250, 240, .92);
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(7, 31, 24, .08);
  padding: 1.4rem;
  scroll-margin-top: 96px;
}

.resource-detail-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.resource-detail-card ul {
  color: var(--et-ink);
  display: grid;
  gap: .65rem;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.service-card {
  min-height: 190px;
  text-decoration: none;
}

.service-card h3 {
  font-size: 1.55rem;
}

.icon-badge {
  align-items: center;
  background: var(--et-sage-100);
  border: 1px solid var(--et-sage-200);
  border-radius: 999px;
  color: var(--et-green);
  display: inline-flex;
  font-family: var(--font-heading);
  height: 52px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 52px;
}

.service-icon {
  height: 58px;
  margin-bottom: 20px;
  width: 58px;
}

.service-overview {
  display: grid;
  gap: 1.75rem 2.2rem;
  grid-template-columns: 1fr;
  margin: 2rem auto 0;
  max-width: 1040px;
}

.service-overview .service-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--et-ink);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 0;
  text-decoration: none;
}

.service-overview .service-icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(21%) saturate(1032%) hue-rotate(105deg) brightness(88%) contrast(91%);
  height: 34px;
  margin: .15rem 0 0;
  width: 34px;
}

.service-overview .service-card h3 {
  font-size: 1.18rem;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 .7rem;
}

.service-overview .service-card p {
  color: var(--et-ink);
  font-size: 1rem;
  grid-column: 1 / -1;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

.eap-support-grid {
  display: grid;
  gap: 1.75rem 2.2rem;
  margin: 2.35rem auto 0;
  max-width: 1040px;
}

.eap-support-item {
  display: grid;
  gap: 1rem;
}

.eap-support-item img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(21%) saturate(1032%) hue-rotate(105deg) brightness(88%) contrast(91%);
  height: 34px;
  width: 34px;
}

.eap-support-item h3 {
  font-size: 1.18rem;
  line-height: 1.15;
  margin: 0 0 .7rem;
}

.eap-support-item p {
  color: var(--et-ink);
  font-size: 1rem;
  grid-column: 1 / -1;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

.therapy-card-grid {
  gap: 1.65rem;
}

.therapy-image-card {
  background: rgba(255, 250, 240, .9);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 31, 24, .08);
  min-height: 0;
  overflow: hidden;
  padding: 0 0 1.35rem;
}

.therapy-card-image {
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 0 1.25rem;
  object-fit: cover;
  width: 100%;
}

.therapy-image-card h3,
.therapy-image-card p {
  padding-inline: 1.25rem;
}

.therapy-image-card h3 {
  font-size: 1.55rem;
  letter-spacing: 0;
}

.therapy-image-card p {
  margin-bottom: 0;
}

.story-band {
  display: grid;
  gap: 2rem;
}

.tree-story-band {
  background:
    linear-gradient(90deg, rgba(7, 31, 24, .16) 0%, rgba(7, 31, 24, .34) 34%, rgba(7, 31, 24, .86) 70%, rgba(7, 31, 24, .98) 100%),
    url("/assets/generated/waterfront-geelong.jpg");
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 420px;
  padding-block: 92px;
}

.tree-story-content {
  display: grid;
  justify-items: end;
}

.tree-story-content > div {
  max-width: 620px;
}

.tree-story-band h2,
.tree-story-band p {
  color: white;
}

.tree-story-band h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.tree-story-band .lead,
.tree-story-band p {
  color: rgba(255, 250, 240, .88);
}

.image-card {
  border-radius: 0;
  box-shadow: var(--et-shadow-soft);
  overflow: hidden;
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
}

.section-feature-showcase {
  background: var(--et-forest);
}

.feature-panel {
  background: var(--et-warm-white);
  border: 1px solid var(--et-border);
  border-radius: 18px;
  box-shadow: var(--et-shadow-card);
  overflow: hidden;
  position: relative;
}

.home-feature-card {
  border-color: rgba(255, 250, 240, .18);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.home-feature-card img {
  aspect-ratio: 16 / 8.5;
  filter: brightness(.82) saturate(.92) contrast(.98);
  object-position: center;
}

.home-feature-card .feature-panel-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 270px;
  padding: 1.1rem;
}

.home-feature-card h2 {
  font-size: clamp(1.35rem, 1.55vw, 1.75rem);
  letter-spacing: 0;
  line-height: 1.08;
}

.home-feature-card p:not(.eyebrow) {
  font-size: .95rem;
  line-height: 1.48;
}

.home-feature-card .button {
  margin-top: auto;
  min-width: 0;
  padding-inline: .9rem;
  width: 100%;
}

.feature-panel-content {
  padding: 1.55rem;
}

.feature-panel-overlay {
  background: var(--et-emerald-900);
  color: white;
  min-height: 430px;
}

.feature-panel-overlay img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: .42;
  position: absolute;
  width: 100%;
}

.feature-panel-overlay::after {
  background: linear-gradient(90deg, rgba(7, 31, 24, .96), rgba(14, 47, 36, .75), rgba(14, 47, 36, .25));
  content: "";
  inset: 0;
  position: absolute;
}

.feature-panel-overlay .feature-panel-content {
  max-width: 620px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.feature-panel-overlay h2,
.feature-panel-overlay p {
  color: white;
}

.page-hero {
  background:
    radial-gradient(circle at 90% 15%, rgba(216, 189, 130, .14), transparent 18rem),
    var(--et-deep);
  color: white;
  min-height: 430px;
  padding-block: 132px 72px;
}

.page-hero.split {
  background:
    linear-gradient(90deg, rgba(7, 31, 24, .86), rgba(7, 31, 24, .42), rgba(7, 31, 24, .08)),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.eap-workplace-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .92) 0%, rgba(7, 31, 24, .7) 40%, rgba(7, 31, 24, .18) 74%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 58% center;
}

.ndis-supports-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .72) 42%, rgba(7, 31, 24, .2) 76%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 58% center;
}

.assessments-reports-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .74) 44%, rgba(7, 31, 24, .22) 78%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 62% center;
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .72) 42%, rgba(7, 31, 24, .18) 76%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 58% center;
}

.our-team-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .74) 42%, rgba(7, 31, 24, .18) 76%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 58% center;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .92) 0%, rgba(7, 31, 24, .68) 42%, rgba(7, 31, 24, .18) 78%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 62% center;
}

.resources-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .74) 42%, rgba(7, 31, 24, .2) 76%, rgba(7, 31, 24, .05) 100%),
    var(--hero-image, none);
  background-position: 62% center;
}

.therapy-services-hero {
  background:
    linear-gradient(90deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .74) 43%, rgba(7, 31, 24, .2) 78%, rgba(7, 31, 24, .04) 100%),
    var(--hero-image, none);
  background-position: 59% center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.pill-list span,
.pill-list button,
.tag {
  background: var(--et-mist);
  border: 1px solid var(--et-border);
  border-radius: 999px;
  color: var(--et-green);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: .86rem;
  padding: .42rem .7rem;
}

.pill-list button:hover,
.pill-list button.pill-active {
  background: var(--et-emerald-700);
  border-color: transparent;
  color: #fff;
}

.two-column {
  display: grid;
  gap: 2rem;
}

.form-panel {
  background: var(--et-warm-white);
  border: 1px solid var(--et-border);
  border-radius: 28px;
  box-shadow: var(--et-shadow-soft);
  padding: 1.35rem;
}

.assessment-enquiry-wrap {
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.assessment-enquiry-intro {
  max-width: 720px;
  text-align: center;
}

.assessment-enquiry-intro .service-card {
  margin-top: 1.25rem;
  text-align: left;
}

.assessment-enquiry-form {
  width: 100%;
}

.assessment-enquiry-form textarea {
  margin-bottom: .75rem;
}

.assessment-enquiry-form .button {
  margin-top: .35rem;
}

.assessment-type-card {
  color: inherit;
  display: grid;
  text-decoration: none;
}

.assessment-type-card:focus-visible {
  outline: 3px solid var(--et-sand);
  outline-offset: 4px;
}

.assessment-format-pill {
  align-items: center;
  display: inline-flex;
  gap: .35rem;
}

.assessment-format-pill::before {
  background: var(--et-emerald-700);
  border-radius: 999px;
  content: "";
  height: .45rem;
  width: .45rem;
}

.assessment-detail-list {
  display: grid;
  gap: 1rem;
}

.featured-fca-grid {
  align-items: stretch;
  display: grid;
  gap: 1.25rem;
}

.featured-fca-card {
  background: var(--et-emerald-900);
  color: white;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.featured-fca-card h2,
.featured-fca-card p {
  color: white;
}

.featured-fca-card .pill-list span {
  background: rgba(255, 250, 240, .1);
  border-color: rgba(255, 250, 240, .22);
  color: white;
}

.featured-fca-card .button {
  margin-top: 1.25rem;
}

.referral-pill-list {
  justify-content: center;
}

.assessment-detail-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: 48px minmax(0, 1fr);
  scroll-margin-top: 92px;
}

.assessment-detail-card ul {
  display: grid;
  gap: .5rem;
  margin: .9rem 0 0;
  padding-left: 1.2rem;
}

.service-list {
  display: grid;
  gap: .55rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.team-section-heading {
  margin-block: 2.5rem 1.25rem;
}

.team-section-heading h2 {
  color: var(--et-ink);
}

.ndis-provider-badge {
  align-items: center;
  background: #f6faf2;
  border: 1px solid rgba(15, 46, 36, .14);
  border-radius: 8px;
  display: grid;
  gap: .85rem;
  grid-template-columns: 54px minmax(0, 1fr);
  margin: 0 0 1.35rem;
  padding: 1rem;
}

.ndis-provider-badge img {
  height: 48px;
  width: 48px;
}

.ndis-provider-badge strong,
.ndis-provider-badge span {
  display: block;
}

.ndis-provider-badge strong {
  color: var(--et-emerald-900);
  font-size: 1rem;
}

.ndis-provider-badge span {
  color: var(--et-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.hero-trust-badge {
  align-items: center;
  background: rgba(255, 250, 240, .94);
  border: 1px solid rgba(255, 250, 240, .34);
  border-radius: 8px;
  color: var(--et-ink);
  display: grid;
  gap: .85rem;
  grid-template-columns: 50px minmax(0, 1fr);
  margin-top: 1.25rem;
  max-width: 520px;
  padding: .95rem 1rem;
}

.hero-trust-badge img {
  height: 44px;
  width: 44px;
}

.hero-trust-badge strong,
.hero-trust-badge span {
  display: block;
}

.hero-trust-badge strong {
  color: var(--et-emerald-900);
}

.hero-trust-badge span {
  color: var(--et-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.required-marker {
  color: #a33b2f;
  display: inline;
  font-weight: 900;
}

.team-card-link {
  color: var(--et-emerald-700);
  display: inline-flex;
  font-weight: 900;
  margin-top: auto;
  padding-top: 1rem;
  text-decoration: none;
}

.team-card-link::after {
  content: " ->";
}

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

label {
  display: grid;
  font-weight: 700;
  gap: .35rem;
}

input,
select,
textarea {
  background: #fffdf8;
  border: 1px solid var(--et-border);
  border-radius: 10px;
  color: var(--et-ink);
  font: inherit;
  min-height: 46px;
  padding: .75rem .85rem;
  width: 100%;
}

textarea {
  min-height: 150px;
}

.checkbox-row {
  align-items: center;
  display: grid;
  gap: .7rem;
  grid-template-columns: 18px minmax(0, 1fr);
}

.checkbox-row input {
  height: 16px;
  margin: 0;
  min-height: auto;
  width: 16px;
}

.map-card {
  background:
    linear-gradient(135deg, rgba(255, 248, 234, .7), rgba(237, 244, 236, .9)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(22, 75, 59, .08) 24px 26px);
  border: 1px solid var(--et-border);
  border-radius: 28px;
  min-height: 320px;
  padding: 2rem;
}

.contact-map-panel {
  align-items: stretch;
  display: grid;
  gap: 1.6rem;
}

.contact-details-list {
  display: grid;
  gap: 1.45rem;
}

.contact-details-list p {
  align-items: flex-start;
  display: grid;
  gap: .95rem;
  grid-template-columns: 24px 1fr;
  margin: 0;
}

.contact-details-list img,
.contact-icon-text {
  height: 22px;
  margin-top: .15rem;
  width: 22px;
}

.contact-details-list img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(747%) hue-rotate(102deg) brightness(92%) contrast(92%);
}

.contact-icon-text {
  align-items: center;
  border: 2px solid var(--et-ink);
  border-radius: 999px;
  color: transparent;
  display: inline-flex;
  justify-content: center;
  position: relative;
}

.contact-icon-text::after {
  background: var(--et-ink);
  content: "";
  height: 7px;
  position: absolute;
  right: 3px;
  top: 3px;
  width: 2px;
}

.contact-details-list .button {
  border-radius: 4px;
  justify-self: start;
  margin-top: 1.15rem;
  min-width: 142px;
}

.contact-map {
  background:
    radial-gradient(circle at 44% 3%, rgba(122, 207, 154, .46) 0 5rem, transparent 5.15rem),
    linear-gradient(90deg, transparent 0 39%, rgba(185, 204, 215, .72) 39% 41.2%, transparent 41.2% 100%),
    linear-gradient(0deg, transparent 0 18%, rgba(185, 204, 215, .68) 18% 20.2%, transparent 20.2% 100%),
    linear-gradient(0deg, transparent 0 35%, rgba(205, 218, 226, .82) 35% 37%, transparent 37% 100%),
    linear-gradient(0deg, transparent 0 50%, rgba(205, 218, 226, .82) 50% 52%, transparent 52% 100%),
    linear-gradient(0deg, transparent 0 68%, rgba(205, 218, 226, .82) 68% 70%, transparent 70% 100%),
    linear-gradient(0deg, transparent 0 80%, rgba(185, 204, 215, .7) 80% 82.6%, transparent 82.6% 100%),
    linear-gradient(90deg, transparent 0 14%, rgba(205, 218, 226, .68) 14% 15.4%, transparent 15.4% 100%),
    linear-gradient(90deg, transparent 0 26%, rgba(205, 218, 226, .66) 26% 27.4%, transparent 27.4% 100%),
    linear-gradient(90deg, transparent 0 62%, rgba(205, 218, 226, .66) 62% 63.4%, transparent 63.4% 100%),
    linear-gradient(90deg, transparent 0 78%, rgba(205, 218, 226, .66) 78% 79.4%, transparent 79.4% 100%),
    #f5f2ec;
  border-radius: 4px;
  display: block;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.contact-map::before {
  background: rgba(166, 190, 206, .7);
  content: "";
  height: 28px;
  left: -10%;
  position: absolute;
  right: -10%;
  top: 95%;
  transform: rotate(8deg);
}

.contact-map::after {
  background: linear-gradient(180deg, rgba(255, 253, 247, .52), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.map-pin {
  background: #d94134;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 6px 16px rgba(7, 31, 24, .2);
  height: 30px;
  left: 35%;
  position: absolute;
  top: 47%;
  transform: rotate(-45deg);
  width: 30px;
  z-index: 4;
}

.map-pin::after {
  background: var(--et-cream);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 10px;
}

.map-road,
.map-landmark,
.map-park {
  color: #667985;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .82);
  z-index: 3;
}

.map-park {
  color: #d18436;
  left: 34%;
  top: 11%;
}

.map-landmark {
  color: #6f706c;
  font-size: .82rem;
  font-weight: 600;
}

.landmark-company {
  left: 50%;
  top: 4%;
}

.landmark-pantry {
  left: 49%;
  top: 47%;
}

.road-pakington {
  left: 39.3%;
  top: 24%;
  transform: rotate(90deg);
  transform-origin: left center;
}

.road-gordon {
  left: 47%;
  top: 21%;
  transform: rotate(8deg);
}

.road-spring {
  left: 46%;
  top: 35%;
  transform: rotate(8deg);
}

.road-gertrude {
  left: 31%;
  top: 48%;
  transform: rotate(8deg);
}

.road-lupton {
  left: 32%;
  top: 68%;
  transform: rotate(8deg);
}

.road-villamanta {
  left: 47%;
  top: 72%;
  transform: rotate(8deg);
}

.road-potter {
  left: 10%;
  top: 80%;
  transform: rotate(8deg);
}

.road-bowler {
  left: 17%;
  top: 28%;
  transform: rotate(-90deg);
}

.road-bignome {
  left: 23%;
  top: 54%;
  transform: rotate(-90deg);
}

.contact-form-wrap {
  max-width: 840px;
}

.contact-request-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 185, 155, .18), transparent 18rem),
    var(--et-sage-50);
}

.contact-form-intro {
  margin-bottom: 1.4rem;
  max-width: 620px;
}

.contact-form-intro h2 {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.contact-request-form,
.form-success {
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(7, 31, 24, .09);
  padding: 1.35rem;
}

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

.contact-request-form label {
  color: var(--et-ink);
  display: grid;
  font-weight: 800;
  gap: .45rem;
}

.contact-request-form input,
.contact-request-form select,
.contact-request-form textarea {
  background: var(--et-warm-white);
  border: 1px solid rgba(15, 46, 36, .16);
  border-radius: 12px;
  color: var(--et-ink);
  font: inherit;
  min-height: 48px;
  padding: .8rem .9rem;
}

.contact-request-form textarea {
  resize: vertical;
}

.contact-request-form [data-valmsg-for],
.contact-request-form .field-validation-error {
  color: #9f2b1f;
  font-size: .9rem;
  font-weight: 800;
  margin-top: -.55rem;
}

.contact-request-form .button {
  border-radius: 6px;
  justify-self: start;
}

.form-success h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.form-success p {
  margin-bottom: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 85% 20%, rgba(159, 185, 155, .12), transparent 16rem),
    var(--et-forest);
  color: white;
  padding-bottom: 0;
  padding-top: 0;
}

.site-footer .brand {
  align-items: center;
  background: rgba(255, 250, 240, .94);
  border-radius: 10px;
  display: inline-flex;
  padding: .45rem .7rem;
}

.site-footer .brand-logo-mark {
  background: rgba(255, 250, 240, .92);
  border-radius: 999px;
}

.site-footer .brand strong,
.site-footer .brand small {
  color: white;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 42px;
  padding-top: 48px;
}

.footer-grid p {
  color: rgba(255, 255, 255, .78);
}

.footer-grid a {
  color: white;
}

.social-links {
  display: flex;
  gap: .7rem;
  margin: 1rem 0;
}

.social-links a {
  align-items: center;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(255, 250, 240, .28);
  border-radius: 999px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  width: 42px;
}

.social-links a:hover {
  background: white;
  transform: translateY(-1px);
}

.social-links img {
  height: 25px;
  width: 25px;
}

.footer-grid h2 {
  font-size: 1.3rem;
}

.footer-acknowledgement {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .98), rgba(249, 242, 229, .98));
  border-top: 1px solid rgba(15, 46, 36, .1);
  color: var(--et-ink);
  display: grid;
  gap: 1rem;
  justify-content: center;
  min-height: 92px;
  padding: 22px 0 0;
  text-align: center;
}

.footer-inclusion {
  background: #fffdf7;
  border-top: 1px solid rgba(15, 46, 36, .1);
  color: var(--et-ink);
  padding: 22px 20px;
  text-align: center;
}

.footer-inclusion p {
  color: rgba(11, 24, 20, .82);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 920px;
}

.footer-acknowledgement p {
  color: rgba(11, 24, 20, .86);
  font-family: var(--et-serif);
  font-size: clamp(.75rem, 1.2vw, 1rem);
  line-height: 1.35;
  margin: 0 auto;
  max-width: 760px;
  padding-inline: 20px;
}

.acknowledgement-art {
  max-height: 140px;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.footer-strip {
  background: linear-gradient(90deg, rgba(8, 43, 31, .98), rgba(18, 56, 42, .98));
  border-top: 1px solid rgba(255, 250, 240, .18);
  color: rgba(255, 250, 240, .9);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.15rem, 4vw, 4.25rem);
  justify-content: center;
  padding: 26px 20px;
}

.footer-strip span {
  align-items: center;
  display: inline-flex;
  font-size: .98rem;
  font-weight: 800;
  gap: .75rem;
  white-space: nowrap;
}

.footer-strip img {
  filter: brightness(0) invert(1);
  height: 31px;
  opacity: .78;
  width: 31px;
}

.mobile-cta-bar {
  background: var(--et-cream);
  border-top: 1px solid var(--et-border);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 0;
  position: fixed;
  right: 0;
  z-index: 120;
}

.mobile-cta-bar a {
  align-items: center;
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 58px;
  text-decoration: none;
}

.mobile-cta-bar a:first-child {
  background: var(--et-green);
  color: white;
}

.consent-banner {
  background: var(--et-warm-white);
  border: 1px solid var(--et-border);
  border-radius: 16px;
  bottom: 76px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
  display: grid;
  gap: 1rem;
  left: 20px;
  max-width: 460px;
  padding: 1rem;
  position: fixed;
  right: 20px;
  z-index: 150;
}

.consent-banner .button-outline {
  border-color: rgba(15, 46, 36, .36);
  color: var(--et-emerald-900);
}

.cta-band {
  background:
    radial-gradient(circle at 92% 20%, rgba(216, 189, 130, .2), transparent 16rem),
    linear-gradient(145deg, var(--et-emerald-950), var(--et-emerald-800));
  border-radius: 34px;
  color: white;
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
}

.cta-band h2,
.cta-band p {
  color: white;
}

.home-contact-section {
  padding-block: 72px;
}

.home-contact-teaser {
  align-items: start;
}

.home-contact-teaser h2 {
  color: var(--et-ink);
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1.45rem;
}

.home-contact-teaser p {
  color: var(--et-ink);
  font-size: 1rem;
  line-height: 1.65;
}

.home-contact-teaser .contact-list {
  display: grid;
  gap: .9rem;
}

.home-contact-teaser .contact-list p {
  align-items: center;
  display: grid;
  gap: .85rem;
  grid-template-columns: 20px 1fr;
  margin: 0;
}

.home-contact-teaser .contact-list img {
  height: 18px;
  width: 18px;
}

.home-contact-teaser a {
  color: var(--et-ink);
}

.home-contact-teaser > div:last-child {
  align-self: center;
  justify-self: start;
  max-width: 430px;
}

.home-contact-teaser .cta-actions {
  margin-top: 1.8rem;
}

.home-contact-teaser .button-primary {
  color: white;
  min-width: 198px;
}

.resource-teaser {
  align-items: center;
  display: grid;
  gap: 2rem;
}

.resource-teaser > div:last-child {
  justify-self: start;
}

.consent-banner[hidden],
.mobile-drawer[hidden] {
  display: none;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 719.98px) {
  html,
  body {
    max-width: 100%;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .shell {
    padding-inline: 20px;
  }

  .site-header {
    background: rgba(255, 253, 247, .94);
    border-bottom: 0;
    color: var(--et-ink);
    position: fixed;
  }

  .site-header:not(.header-solid) .brand strong {
    color: var(--et-ink);
  }

  .site-header:not(.header-solid) .brand small {
    color: #4e3426;
  }

  .header-shell {
    gap: .7rem;
    min-height: 74px;
  }

  .brand-logo-mark {
    height: 44px;
    width: 44px;
  }

  .brand-logo-full {
    max-width: min(56vw, 175px);
    width: clamp(135px, 40vw, 175px);
  }

  .brand {
    gap: .55rem;
    min-width: 0;
  }

  .brand-mark {
    flex: 0 0 auto;
    height: 36px;
    width: 36px;
  }

  .brand strong {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .brand small {
    font-size: .58rem;
    letter-spacing: .18em;
  }

  .menu-toggle {
    flex: 0 0 auto;
    height: 44px;
    margin-left: auto;
    width: 44px;
  }

  .mobile-drawer {
    background: var(--et-emerald-950);
    display: flex;
    height: 100vh;
    height: 100dvh;
    inset: 0;
    overflow-y: auto;
    padding: max(18px, env(safe-area-inset-top)) 20px calc(24px + env(safe-area-inset-bottom));
    position: fixed;
    z-index: 1000;
  }

  .mobile-drawer-panel {
    background:
      radial-gradient(circle at 85% 8%, rgba(216, 189, 130, .15), transparent 12rem),
      var(--et-cream);
    border: 1px solid rgba(255, 250, 240, .22);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
    display: flex;
    flex-direction: column;
    margin: 0;
    max-height: calc(100vh - 42px);
    max-height: calc(100dvh - 42px);
    min-height: calc(100dvh - 40px);
    overflow: hidden;
    padding: 1.15rem;
    width: 100%;
  }

  .drawer-head {
    font-size: 2rem;
  }

  .drawer-close {
    background: var(--et-emerald-900);
    border-color: var(--et-emerald-900);
    color: white;
    padding-inline: 1rem;
  }

  .mobile-drawer nav {
    background: var(--et-cream);
    border-radius: 0 0 20px 20px;
    flex: 1;
    gap: .2rem;
    overflow-y: auto;
    padding-bottom: 1rem;
  }

  .mobile-drawer nav a {
    border-bottom: 1px solid rgba(15, 46, 36, .1);
    border-radius: 14px;
    color: var(--et-ink);
    display: flex;
    font-size: 1.05rem;
    font-weight: 700;
    min-height: 52px;
    padding: .9rem .65rem;
  }

  .mobile-drawer nav a.button {
    align-items: center;
    justify-content: center;
    margin-top: .8rem;
    min-height: 54px;
  }

  .hero {
    background:
      radial-gradient(circle at 90% 0%, rgba(216, 189, 130, .12), transparent 14rem),
      linear-gradient(180deg, rgba(7, 31, 24, .98) 0%, rgba(14, 47, 36, .93) 58%, rgba(14, 47, 36, .86) 100%),
      var(--hero-image, none);
    background-position: center top;
    min-height: 720px;
    padding-block: 132px 56px;
  }

  .therapy-room-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .93) 0%, rgba(7, 31, 24, .88) 48%, rgba(7, 31, 24, .82) 100%),
      var(--hero-image, none);
    background-position: 58% top;
  }

  .public-home-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .9) 50%, rgba(7, 31, 24, .82) 100%),
      var(--hero-image, none);
    background-position: 50% top;
    background-repeat: no-repeat;
    background-size: auto, cover;
  }

  .hero-grid,
  .story-band,
  .feature-grid,
  .two-column,
  .resource-teaser,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .lead,
  p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button,
  .form-panel .button,
  .contact-card .button {
    width: 100%;
  }

  .hero-card {
    border-radius: 28px;
  }

  .home-contact-section {
    padding-block: 54px;
  }

  .home-contact-teaser {
    gap: 1.6rem;
  }

  .home-contact-teaser .contact-list p {
    align-items: flex-start;
  }

  .home-contact-teaser .button-primary {
    color: white;
    width: 100%;
  }

  .therapy-room-hero .hero-card {
    display: none;
  }

  .hero-card img,
  .image-card img,
  .feature-panel img {
    aspect-ratio: 16 / 11;
    object-position: center;
  }

  .tree-story-band {
    background:
      linear-gradient(180deg, rgba(7, 31, 24, .52) 0%, rgba(7, 31, 24, .86) 58%, rgba(7, 31, 24, .96) 100%),
      url("/assets/generated/waterfront-geelong.jpg");
    background-position: 42% center;
    min-height: 520px;
    padding-block: 84px;
  }

  .tree-story-content {
    justify-items: start;
  }

  .team-card img {
    aspect-ratio: 4 / 5;
    object-position: center top;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .cards-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .team-scroll {
    display: grid;
    grid-auto-columns: minmax(282px, 86vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-inline: -20px;
    overflow-x: auto;
    padding: .25rem 20px 1rem;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .team-scroll::-webkit-scrollbar {
    display: none;
  }

  .team-scroll .team-card {
    scroll-snap-align: start;
  }

  .service-card,
  .team-card,
  .resource-card,
  .faq-card,
  .contact-card,
  .form-panel,
  .feature-panel,
  .cta-band {
    border-radius: 24px;
  }

  .feature-panel-overlay {
    min-height: 380px;
  }

  .feature-panel-overlay::after {
    background: linear-gradient(180deg, rgba(7, 31, 24, .96), rgba(14, 47, 36, .72));
  }

  .feature-panel-overlay .feature-panel-content {
    padding: 1.5rem;
  }

  .page-hero {
    min-height: 520px;
    padding-block: 140px 64px;
  }

  .page-hero.split {
    background:
      linear-gradient(180deg, rgba(7, 31, 24, .98), rgba(14, 47, 36, .84)),
      var(--hero-image, none);
    background-position: center top;
  }

  .contact-hero {
    background:
      linear-gradient(180deg, rgba(7, 31, 24, .92) 0%, rgba(7, 31, 24, .8) 58%, rgba(7, 31, 24, .72) 100%),
      var(--hero-image, none);
    background-position: 58% center;
  }

  .resources-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .95) 0%, rgba(7, 31, 24, .88) 55%, rgba(7, 31, 24, .78) 100%),
      var(--hero-image, none);
    background-position: 58% center;
  }

  .eap-workplace-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .94) 0%, rgba(7, 31, 24, .88) 55%, rgba(7, 31, 24, .78) 100%),
      var(--hero-image, none);
    background-position: 56% top;
  }

  .ndis-supports-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .95) 0%, rgba(7, 31, 24, .88) 55%, rgba(7, 31, 24, .78) 100%),
      var(--hero-image, none);
    background-position: 54% top;
  }

  .assessments-reports-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .95) 0%, rgba(7, 31, 24, .88) 58%, rgba(7, 31, 24, .78) 100%),
      var(--hero-image, none);
    background-position: 60% top;
  }

  .our-team-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .95) 0%, rgba(7, 31, 24, .88) 56%, rgba(7, 31, 24, .78) 100%),
      var(--hero-image, none);
    background-position: 56% top;
  }

  .therapy-services-hero {
    background:
      linear-gradient(180deg, rgba(6, 18, 15, .95) 0%, rgba(7, 31, 24, .88) 56%, rgba(7, 31, 24, .78) 100%),
      var(--hero-image, none);
    background-position: 56% top;
  }

  label {
    font-size: .98rem;
  }

  input,
  select,
  textarea {
    border-radius: 14px;
    font-size: 1rem;
    min-height: 52px;
    padding: .9rem 1rem;
  }

  textarea {
    min-height: 168px;
  }

  .checkbox-row {
    align-items: center;
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .checkbox-row input {
    height: 16px;
    margin: 0;
    width: 16px;
  }

  .map-card {
    display: block;
    margin-top: 1rem;
    min-height: 240px;
  }

  .footer-grid,
  .footer-strip {
    text-align: left;
  }

  .footer-acknowledgement {
    gap: 1rem;
    min-height: 0;
    padding: 28px 0 0;
  }

  .acknowledgement-art {
    max-height: 110px;
    max-width: none;
  }

  .mobile-cta-bar {
    box-shadow: 0 -12px 30px rgba(7, 31, 24, .13);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (min-width: 720px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .section {
    padding-block: 72px;
  }

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

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

  .eap-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-fca-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  }

  .feature-grid,
  .two-column,
  .story-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-request-form,
  .form-success {
    padding: 2rem;
  }

  .resource-detail-card {
    padding: 2rem;
  }

  .contact-map-panel {
    align-items: center;
    grid-template-columns: minmax(240px, .55fr) minmax(360px, 1fr);
  }

  .team-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) and (max-width: 1079.98px) {
  .mobile-drawer {
    background: rgba(7, 31, 24, .58);
    display: flex;
    inset: 0;
    overflow-y: auto;
    padding: 20px;
    position: fixed;
    z-index: 1000;
  }

  .mobile-drawer-panel {
    border-radius: 24px 0 0 24px;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .28);
    display: flex;
    flex-direction: column;
    margin-left: auto;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    max-width: 420px;
    min-height: calc(100vh - 40px);
    min-height: calc(100dvh - 40px);
    overflow: hidden;
    padding: 1.25rem;
    width: min(90vw, 420px);
  }

  .drawer-head {
    flex: 0 0 auto;
  }

  .mobile-drawer nav {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 1rem;
  }

  .mobile-drawer nav a {
    border-bottom-color: rgba(15, 46, 36, .12);
    font-weight: 700;
    min-height: 54px;
    padding: .95rem .35rem;
  }

  .mobile-drawer nav a.button-primary {
    margin-block: .75rem .35rem;
    min-height: 56px;
  }
}

@media (min-width: 1080px) {
  .desktop-nav,
  .header-book {
    display: flex;
  }

  .menu-toggle,
  .mobile-cta-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .78fr);
  }

  .header-shell {
    gap: .75rem;
  }

  h1 {
    font-size: clamp(4.25rem, 6vw, 5.85rem);
  }

  .hero {
    min-height: 710px;
    padding-block: 120px 90px;
  }

  .section {
    padding-block: 96px;
  }

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

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

  .service-overview .service-card {
    grid-template-columns: 42px 1fr;
  }

  .eap-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .eap-support-item {
    grid-template-columns: 42px 1fr;
  }

  .feature-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-map-panel {
    grid-template-columns: 320px minmax(0, 1fr);
  }

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

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

  .service-card:hover,
  .team-card:hover,
  .resource-card:hover {
    border-color: rgba(15, 46, 36, .2);
    box-shadow: var(--et-shadow-lift);
    transform: translateY(-4px);
  }

  .service-overview .service-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
  }

  .cta-band,
  .resource-teaser {
    column-gap: 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 360px);
  }

  .resource-teaser .cta-actions,
  .home-contact-teaser .cta-actions {
    justify-content: flex-start;
    width: auto;
  }

  .resource-teaser .button-primary,
  .home-contact-teaser .button-primary {
    min-width: 198px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.booking-request-hero {
  background-position: center;
}

.booking-flow-layout {
  align-items: start;
  display: grid;
  gap: 1.25rem;
}

.booking-safety-panel {
  background: #f6faf2;
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 8px;
  padding: clamp(1.15rem, 3vw, 1.75rem);
}

.booking-safety-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.booking-safety-panel ul {
  display: grid;
  gap: .65rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.booking-form-panel {
  min-width: 0;
}

.booking-stepper {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.booking-stepper span {
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 8px;
  color: rgba(15, 46, 36, .62);
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 800;
  overflow: hidden;
  padding: .65rem .75rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-stepper span.active {
  background: var(--et-emerald-900);
  border-color: var(--et-emerald-900);
  color: #fff;
}

.booking-stepper span.complete {
  background: #f1f8ed;
  border-color: rgba(15, 46, 36, .18);
  color: var(--et-emerald-900);
}

.booking-flow-message {
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 1rem;
  padding: .85rem 1rem;
}

.booking-request-form fieldset {
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1rem;
}

.booking-request-form legend {
  color: var(--et-ink);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  padding-inline: .35rem;
}

.booking-request-form [data-valmsg-for],
.booking-request-form .field-validation-error {
  color: #9f2b1f;
  font-size: .9rem;
  font-weight: 800;
  margin-top: -.55rem;
}

.booking-step-panel {
  min-width: 0;
}

.booking-verification-card {
  background: #f6faf2;
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 8px;
  display: grid;
  gap: .85rem;
  padding: 1rem;
}

.booking-verification-card p {
  margin: 0;
}

.booking-test-sms-code {
  align-items: center;
  background: #fff8df;
  border: 1px solid rgba(217, 155, 23, .28);
  border-radius: 8px;
  color: var(--et-ink);
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: space-between;
  padding: .85rem 1rem;
}

.booking-test-sms-code span {
  font-weight: 900;
}

.booking-test-sms-code strong {
  background: #fff;
  border: 1px solid rgba(15, 46, 36, .12);
  border-radius: 6px;
  color: var(--et-emerald-900);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.25rem;
  letter-spacing: .08em;
  padding: .35rem .6rem;
}

.booking-test-sms-code small {
  flex-basis: 100%;
  font-weight: 700;
}

.booking-test-sms-code-prominent {
  align-items: flex-start;
  background: #fff6d6;
  border-color: rgba(15, 46, 36, .2);
  box-shadow: 0 12px 28px rgba(15, 46, 36, .08);
  display: grid;
  gap: .55rem;
  justify-items: start;
}

.booking-test-sms-code-prominent strong {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: .12em;
}

.booking-checkbox-grid {
  display: grid;
  gap: .7rem;
}

.booking-self-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.booking-payment-card {
  background: #10233f;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 31, 24, .16);
  color: #fff;
  display: grid;
  gap: .9rem;
  padding: 1rem;
}

.booking-payment-card label {
  color: #fff;
}

.booking-payment-card input {
  background: rgba(255, 255, 255, .96);
}

.booking-payment-card-top,
.booking-payment-grid {
  align-items: center;
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-payment-card-top span {
  color: #b8d4ff;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.booking-payment-card-top strong {
  justify-self: end;
}

.booking-payment-error {
  background: #fff5f3;
  border-color: rgba(159, 43, 31, .22);
  color: #6f1f16;
}

.booking-summary-list {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.25rem 0;
}

.booking-summary-list div {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(15, 46, 36, .1);
  border-radius: 8px;
  padding: .85rem;
}

.booking-summary-list dt {
  color: rgba(15, 46, 36, .62);
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: .25rem;
  text-transform: uppercase;
}

.booking-summary-list dd {
  color: var(--et-ink);
  font-weight: 800;
  margin: 0;
}

.public-button-outline {
  border-color: rgba(15, 46, 36, .24);
  color: var(--et-emerald-900);
}

@media (min-width: 960px) {
  .booking-flow-layout {
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .booking-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-payment-card-top,
  .booking-payment-grid,
  .booking-summary-list {
    grid-template-columns: 1fr;
  }

  .booking-payment-card-top strong {
    justify-self: start;
  }
}
