/** Site Theme Tokens **/

:root {
    --core-site-font-body: "Lato", system-ui, sans-serif;
    --core-site-heading-font: "Lato", system-ui, sans-serif;
    --core-site-heading-size-h2: clamp(1.75rem, 3.2vw, 2.5rem);
    --core-site-heading-color: var(--color-charcoal);
    --core-site-heading-line-height: 1.15;
    --core-site-heading-weight: 900;
    --core-site-heading-margin: 0;
    --core-site-color-text: var(--color-text);
    --core-site-color-link: var(--color-coral-dark);
    --core-accent: var(--color-brand);
    --base-content-section-max-width: 75rem;
}
body { font-family: var(--core-site-font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--core-site-heading-font); }
h2 { font-size: var(--core-site-heading-size-h2); }
h1, h2, h3, h4, h5, h6 { color: var(--core-site-heading-color); }
h1, h2, h3, h4, h5, h6 { line-height: var(--core-site-heading-line-height); }
h1, h2, h3, h4, h5, h6 { font-weight: var(--core-site-heading-weight); }
h1, h2, h3, h4, h5, h6 { margin-block: var(--core-site-heading-margin); }
body { color: var(--core-site-color-text); }
a { color: var(--core-site-color-link); }


/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ===== Colour palette (NorthPsych) ===== */ :root  {
  /* Coral — the NorthPsych brand red, taken from the logo. */ --color-coral: #e85858;
  --color-coral-dark: #c73e3e;
  --color-coral-darker: #a93131;
  --color-coral-lightest: #fbf2f1;
  /* Stone — warm off-white neutral for alternating sections. */ --color-stone: #f7f6f5;
  --color-stone-dark: #ece8e7;
  /* Grey — the logo's secondary grey. */ --color-grey: #878787;
  --color-charcoal: #2d2b2b;
  --color-white: #ffffff;
  /* Semantic anchors */ --color-brand: var(--color-coral);
  --color-text: var(--color-charcoal);
  --color-bg: var(--color-white);
}
.bg-coral  {
  background-color: var(--color-coral);
}
.bg-coral-dark  {
  background-color: var(--color-coral-dark);
}
.bg-coral-darker  {
  background-color: var(--color-coral-darker);
}
.bg-coral-lightest  {
  background-color: var(--color-coral-lightest);
}
.bg-stone  {
  background-color: var(--color-stone);
}
.bg-stone-dark  {
  background-color: var(--color-stone-dark);
}
.bg-grey  {
  background-color: var(--color-grey);
}
.bg-charcoal  {
  background-color: var(--color-charcoal);
}
.bg-white  {
  background-color: var(--color-white);
}
/* ===== Keyframes (must live site-wide — section columns can't register names) ===== */ @keyframes bio-dialog-rise  {
  from  {
    opacity: 0;
    transform: translateY(16px);
  }
  to  {
    opacity: 1;
    transform: none;
  }
}
@keyframes enquiry-dialog-rise  {
  from  {
    opacity: 0;
    transform: translateY(16px);
  }
  to  {
    opacity: 1;
    transform: none;
  }
}
@keyframes funding-logo-marquee  {
  from  {
    transform: translateX(0);
  }
  to  {
    transform: translateX(-50%);
  }
}
@keyframes dialog-backdrop-fade  {
  from  {
    opacity: 0;
  }
  to  {
    opacity: 1;
  }
}
/* ===== Base typography / element defaults (values with no theme-token knob) ===== */ html  {
  scroll-behavior: smooth;
}
body  {
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* safety net against accidental horizontal scroll */
}
h1, h2, h3, h4  {
  text-wrap: balance;
  overflow-wrap: break-word;
}
p  {
  margin: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
img  {
  display: block;
  max-width: 100%;
  height: auto;
}
a:hover  {
  color: var(--color-coral-darker);
}
:focus-visible  {
  outline: 2px solid var(--color-coral);
  outline-offset: 2px;
}
.icon  {
  flex: none;
}
/* Anchor targets clear the sticky header */ .content-section[id]  {
  scroll-margin-top: 72px;
}
.eyebrow  {
  font-size: var(--text-size-2xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}
.rule  {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-coral);
}
/* ===== Buttons (used across many sections) ===== */ .btn  {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: var(--text-size-sm);
  line-height: 1.2;
  padding: 12px 22px;
  border-radius: 4px;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:hover  {
  transform: translateY(-2px);
}
.btn-lg  {
  font-size: var(--text-size-lg);
  padding: 16px 28px;
}
.btn-primary  {
  background: var(--color-coral-dark);
  color: var(--color-white);
}
.btn-primary:hover  {
  background: var(--color-coral-darker);
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(199, 62, 62, .28);
}
.btn-white  {
  background: var(--color-white);
  color: var(--color-coral-darker);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(80, 20, 20, .18);
}
.btn-white:hover  {
  background: var(--color-white);
  color: var(--color-coral-darker);
  box-shadow: 0 16px 32px rgba(80, 20, 20, .26);
}
.btn-outline-white  {
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline-white:hover  {
  background: rgba(255, 255, 255, .14);
  color: var(--color-white);
}
.btn-outline  {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
}
.btn-outline:hover  {
  background: var(--color-charcoal);
  color: var(--color-white);
}
/* ===== Dialog chrome shared by bio + enquiry modals ===== */ .dialog-close  {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--color-white);
  color: var(--color-charcoal);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-close:hover  {
  background: var(--color-coral-lightest);
}
body.dialog-open  {
  overflow: hidden;
}
/* ===== Scroll reveal (activated by the scroll-reveal JS snippet) ===== */ .js-reveal .reveal  {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), translate .8s cubic-bezier(.2, .7, .2, 1);
}
.js-reveal .reveal.is-visible  {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce)  {
  .js-reveal .reveal  {
    opacity: 1;
    translate: none;
    transition: none;
  }
  html  {
    scroll-behavior: auto;
  }
}


 /** Content Section Styles **/ 

.content-section-3111  {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, .96);
  /* Sticky frosted header — blur lives on a ::before layer so the fixed
   mobile-menu overlay is never trapped by backdrop-filter on an ancestor. */ &.content-section  {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--color-stone-dark);
  }
  &.content-section::before  {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    pointer-events: none;
  }
  .content-section-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .logo  {
    flex: none;
  }
  .logo img  {
    height: 44px;
    width: auto;
  }
  /* Menu placement: desktop nav sits left of centre, actions pushed right.
   Collapsed (JS-driven at the menu's breakpoint): burger moves to the far
   right and the actions sit just to its left — keyed off .is-collapsed, not
   a media query, so it tracks the menu's real breakpoint. */ .core-menu  {
    margin: 0 auto 0 clamp(16px, 3vw, 48px);
  }
  .core-menu.is-collapsed  {
    order: 3;
    margin: 0;
    flex: none;
  }
  .core-menu.is-collapsed ~ .header-actions  {
    order: 2;
    margin-left: auto;
  }
  /* Carry the source nav-link styling over onto the menu hooks */ .core-menu-link  {
    font-weight: 700;
    white-space: nowrap;
  }
  .core-menu:not(.is-collapsed) .core-menu-link  {
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .core-menu:not(.is-collapsed) .core-menu-link:hover  {
    border-color: var(--color-coral);
  }
  .header-actions  {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-phone  {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    color: var(--color-charcoal);
    font-weight: 700;
    text-decoration: none;
  }
  .header-phone .icon  {
    color: var(--color-coral);
  }
  .header-phone:hover  {
    color: var(--color-coral-dark);
  }
  .header-cta-short  {
    display: none;
  }
  @media (max-width: 767px)  {
    /* Below the menu breakpoint the row can get tight: trim the actions gap and
   swap the CTA to its short label so logo + phone + Enquire + burger all fit. */ .header-actions  {
      gap: 12px;
    }
    .header-cta-long  {
      display: none;
    }
    .header-cta-short  {
      display: inline;
    }
  }
  @media (max-width: 639px)  {
    .logo img  {
      height: 34px;
    }
    .header-actions  {
      gap: 8px;
    }
    .header-phone-number, .header-cta-long  {
      display: none;
    }
    .header-cta-short  {
      display: inline;
    }
    .header-cta  {
      padding: 12px 14px;
    }
  }
}
.content-section-3112  {
  padding-top: 40px;
  padding-bottom: 40px;
  &.content-section  {
    color: #d6d3d2;
  }
  .content-section-inner  {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-size-xs);
    line-height: 1.7;
  }
  .footer-contact  {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .footer-logo  {
    height: 64px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 12px;
  }
  .footer-contact a  {
    color: var(--color-white);
  }
  .footer-links  {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
  }
  .footer-links a  {
    color: #d6d3d2;
    display: inline-block;
    padding: 8px 0;
  }
  .footer-links a:hover  {
    color: var(--color-white);
  }
  .footer-copyright  {
    flex: 1 1 100%;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #b8b4b3;
    font-size: var(--text-size-2xs);
  }
}
.content-section-3113  {
  &.content-section  {
    background: linear-gradient(90deg, rgba(251, 242, 241, .87) 0%, rgba(251, 242, 241, .78) 36%, rgba(251, 242, 241, .4) 61%, rgba(251, 242, 241, 0) 82%), url('/site-assets/images/hero.jpg') center right / cover no-repeat;
    min-height: min(78vh, 720px);
    display: flex;
    align-items: center;
  }
  .content-section-inner  {
    width: 100%;
  }
  .content-section-inner > *  {
    max-width: 600px;
  }
  .eyebrow  {
    margin-bottom: 22px;
  }
  .hero-title  {
    font-size: clamp(1.625rem, 7.4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
  }
  .hero-title span  {
    display: block;
    white-space: nowrap;
  }
  .hero-lede  {
    margin-top: 22px;
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    max-width: 560px;
  }
  .hero-location, .hero-note  {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: var(--text-size-sm);
  }
  .hero-location .icon, .hero-note .icon  {
    color: var(--color-coral);
  }
  .hero-note  {
    font-size: var(--text-size-xs);
    margin-top: 22px;
  }
  .hero-actions  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 24px;
    margin-top: 28px;
  }
  .hero-call  {
    color: var(--color-charcoal);
    text-decoration: none;
  }
  .hero-call:hover  {
    color: var(--color-coral-dark);
  }
  @media (max-width: 1023px)  {
    /* Below tablet, the two headline lines can get tight — allow wrapping early
   so "Support for All Ages" never forces horizontal scroll. */ .hero-title span  {
      white-space: normal;
    }
  }
  @media (max-width: 767px)  {
    &.content-section  {
      background: linear-gradient(90deg, rgba(251, 242, 241, .9) 0%, rgba(251, 242, 241, .82) 100%), url('/site-assets/images/hero.jpg') center right / cover no-repeat;
    }
    /* Let the headline wrap freely on phones so it never forces horizontal scroll. */ .hero-title span  {
      white-space: normal;
    }
    /* Full-width, centred actions on small screens. */ .hero-actions  {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }
    .hero-actions .btn  {
      width: 100%;
      justify-content: center;
    }
    .hero-call  {
      text-align: center;
    }
  }
}
.content-section-3114  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
  }
  .who-we-help-intro  {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .who-we-help-intro p  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
  }
  .who-we-help-intro .btn  {
    margin-top: 8px;
  }
  .who-we-help-list  {
    background: var(--color-white);
    border-radius: 6px;
    padding: clamp(24px, 3vw, 40px);
  }
  .who-we-help-list .eyebrow  {
    margin-bottom: 18px;
  }
  .who-we-help-list ul  {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .who-we-help-list li  {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 13px 0;
    border-top: 1px solid var(--color-stone-dark);
    line-height: 1.45;
    transition: transform .25s ease, color .25s;
  }
  .who-we-help-list li:hover  {
    transform: translateX(6px);
    color: var(--color-coral-dark);
  }
  .who-we-help-list li .icon  {
    color: var(--color-coral);
    margin-top: 2px;
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  @media (max-width: 767px)  {
    /* Full-width CTA on phones. */ .who-we-help-intro  {
      align-items: stretch;
    }
    .who-we-help-intro .btn  {
      width: 100%;
      justify-content: center;
    }
    .who-we-help-intro > *:not(.btn)  {
      align-self: flex-start;
    }
  }
}
.content-section-3115  {
  .section-heading  {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: clamp(28px, 4vw, 48px);
  }
  .offer-grid  {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .offer-card  {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s, opacity .8s cubic-bezier(.2, .7, .2, 1), translate .8s cubic-bezier(.2, .7, .2, 1);
  }
  .offer-card:hover  {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(46, 30, 30, .12);
  }
  .offer-image  {
    width: 100%;
    aspect-ratio: 1736 / 772;
    object-fit: cover;
    background: var(--color-stone);
  }
  .offer-body  {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px 34px 36px;
    border-top: 4px solid var(--color-coral);
  }
  .offer-num  {
    font-size: var(--text-size-xs);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--color-coral-dark);
  }
  .offer-body h3  {
    font-size: var(--text-size-3xl);
    line-height: 1.25;
  }
  .offer-body p  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
  }
  @media (max-width: 767px)  {
    .offer-grid  {
      grid-template-columns: minmax(0, 1fr);
    }
    .offer-body  {
      padding: 24px 24px 28px;
    }
  }
}
.content-section-3116  {
  &.content-section  {
    background: linear-gradient(90deg, rgba(30, 20, 35, .28) 0%, rgba(30, 20, 35, .12) 50%, rgba(30, 20, 35, .22) 100%), url('/site-assets/images/emdr-background.png') center / cover no-repeat;
  }
  .content-section-inner  {
    display: flex;
    justify-content: flex-end;
  }
  .emdr-panel  {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 20px 50px rgba(40, 20, 50, .15);
  }
  .emdr-panel p:not(.eyebrow)  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
  }
  .text-link  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
  }
  @media (max-width: 767px)  {
    /* Full-bleed panel edge on phones; long link wraps rather than overflows. */ .text-link  {
      align-self: stretch;
      flex-wrap: wrap;
    }
  }
}
.content-section-3117  {
  .section-heading  {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 44px);
  }
  .section-heading p  {
    line-height: 1.7;
  }
  .team-grid  {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
  .team-card  {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    border: 0;
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    color: var(--color-charcoal);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s, opacity .8s cubic-bezier(.2, .7, .2, 1), translate .8s cubic-bezier(.2, .7, .2, 1);
  }
  .team-card:hover  {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(46, 30, 30, .12);
  }
  .team-card img  {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    background: var(--color-stone);
  }
  .team-card-body  {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 18px 20px;
  }
  .team-name  {
    font-size: var(--text-size-lg);
    font-weight: 900;
    line-height: 1.25;
  }
  .team-role  {
    font-size: var(--text-size-xs);
  }
  .team-link  {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-size-xs);
    font-weight: 700;
    color: var(--color-coral-dark);
  }
  .bio-dialog  {
    width: min(880px, calc(100% - 24px));
    max-height: calc(100% - 24px);
    padding: 0;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    color: var(--color-charcoal);
    overflow: auto;
  }
  .bio-dialog[open]  {
    animation: bio-dialog-rise .25s ease;
  }
  .bio-dialog::backdrop  {
    background: rgba(30, 26, 26, .55);
    animation: dialog-backdrop-fade .2s ease;
  }
  .bio-layout  {
    display: flex;
    flex-wrap: wrap;
  }
  .bio-aside  {
    flex: 1 1 240px;
    background: var(--color-coral-lightest);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .bio-aside img  {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 340px;
    object-fit: cover;
    object-position: center top;
    border-radius: 6px;
  }
  .bio-name  {
    font-size: var(--text-size-2xl);
    font-weight: 900;
    line-height: 1.2;
  }
  .bio-role  {
    font-size: var(--text-size-sm);
    margin-top: -10px;
  }
  .bio-main  {
    flex: 2 1 360px;
    min-width: 0;
    padding: clamp(24px, 3.5vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    line-height: 1.7;
  }
  .bio-main h4  {
    font-size: var(--text-size-2xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-top: 1px solid var(--color-stone-dark);
    padding-top: 16px;
    margin-top: 6px;
  }
  .bio-main ul  {
    margin: 0;
    padding-left: 18px;
  }
  .bio-main li  {
    font-size: var(--text-size-sm);
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .bio-main li::marker  {
    color: var(--color-coral);
  }
  @media (max-width: 1023px)  {
    .team-grid  {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  @media (max-width: 767px)  {
    .team-grid  {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /* Bio modal stacks its aside above the body on phones. */ .bio-layout  {
      flex-direction: column;
    }
    .bio-aside  {
      flex: none;
    }
    .bio-aside img  {
      max-height: 300px;
    }
  }
  @media (max-width: 639px)  {
    .team-grid  {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bio-aside  {
      padding: 20px;
    }
  }
}
.content-section-3118  {
  .section-heading  {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: clamp(28px, 4vw, 48px);
  }
  .steps-grid  {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .step  {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 2px solid var(--color-stone-dark);
    padding-top: 20px;
    transition: transform .3s ease, border-color .3s, opacity .8s cubic-bezier(.2, .7, .2, 1), translate .8s cubic-bezier(.2, .7, .2, 1);
  }
  .step:hover  {
    transform: translateY(-4px);
    border-color: var(--color-coral);
  }
  .step-num  {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-coral-lightest);
    color: var(--color-coral-dark);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step h3  {
    font-size: var(--text-size-lg);
    line-height: 1.3;
  }
  .step p  {
    font-size: var(--text-size-sm);
  }
  @media (max-width: 1023px)  {
    .steps-grid  {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  @media (max-width: 767px)  {
    .steps-grid  {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 639px)  {
    .steps-grid  {
      grid-template-columns: minmax(0, 1fr);
    }
  }
}
.content-section-3119  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .location-text  {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .location-text > p  {
    font-size: var(--text-size-lg);
    line-height: 1.7;
  }
  .location-text > p.location-suburbs  {
    font-size: var(--text-size-sm);
  }
  .location-details  {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--color-stone-dark);
    padding-top: 18px;
  }
  .location-details span, .location-details a  {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--color-charcoal);
    text-decoration: none;
  }
  .location-details a  {
    font-weight: 700;
  }
  .location-details .icon  {
    color: var(--color-coral);
  }
  .location-map  {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 6px;
    background: var(--color-stone-dark);
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      grid-template-columns: minmax(0, 1fr);
    }
  }
}
.content-section-3120  {
  &.content-section  {
    border-bottom: 1px solid var(--color-stone-dark);
  }
  .funding-title  {
    font-size: var(--text-size-xl);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .funding-marquee  {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
  }
  .funding-marquee::before, .funding-marquee::after  {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 22%;
    z-index: 1;
    pointer-events: none;
  }
  .funding-marquee::before  {
    left: 0;
    background: linear-gradient(90deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .funding-marquee::after  {
    right: 0;
    background: linear-gradient(270deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .funding-track  {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    align-items: center;
    height: 96px;
    animation: funding-logo-marquee 45s linear infinite;
  }
  .funding-marquee:hover .funding-track  {
    animation-play-state: paused;
  }
  .funding-set  {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    flex: none;
  }
  /* Fixed-width slots: one set is always 1100px, wider than the 880px window, so a logo never appears twice at once. */ .funding-slot  {
    flex: 0 0 220px;
    width: 220px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .funding-logo  {
    flex: none;
    width: auto;
    max-width: 180px;
    height: 48px;
    object-fit: contain;
  }
  .funding-logo-medicare  {
    height: 58px;
  }
  .funding-logo-tac  {
    height: 40px;
  }
  .funding-logo-dva  {
    height: 96px;
    max-width: 200px;
  }
  .funding-note  {
    font-size: var(--text-size-xs);
    margin-top: 20px;
  }
  @media (prefers-reduced-motion: reduce)  {
    .funding-track  {
      animation: none;
    }
  }
}
.content-section-3121  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  .get-started-text  {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--color-white);
  }
  .get-started-text .eyebrow, .get-started-text h2  {
    color: var(--color-white);
  }
  .get-started-text h2  {
    font-size: clamp(1.875rem, 3.6vw, 2.75rem);
    line-height: 1.08;
  }
  .get-started-text p:not(.eyebrow)  {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    max-width: 520px;
  }
  .get-started-actions  {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
  }
  .get-started-actions .btn-lg  {
    font-size: var(--text-size-reg);
    padding: 14px 24px;
  }
  .expect-card  {
    background: var(--color-white);
    border-radius: 8px;
    padding: clamp(20px, 2.4vw, 28px);
    box-shadow: 0 24px 60px rgba(80, 20, 20, .22);
  }
  .expect-card .eyebrow  {
    padding-bottom: 6px;
  }
  .expect-item  {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid var(--color-stone-dark);
  }
  .expect-item .icon  {
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 50%;
    background: var(--color-coral-lightest);
    color: var(--color-coral-dark);
  }
  .expect-item div  {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .expect-item strong  {
    font-weight: 900;
  }
  .expect-item span  {
    font-size: var(--text-size-sm);
    line-height: 1.55;
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  @media (max-width: 767px)  {
    /* Full-width, centred CTA buttons on phones. */ .get-started-actions  {
      flex-direction: column;
      align-items: stretch;
    }
    .get-started-actions .btn  {
      width: 100%;
      justify-content: center;
    }
    .get-started-text h2  {
      overflow-wrap: break-word;
    }
  }
}
.content-section-3122  {
  .content-section-inner  {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
    align-items: center;
    justify-content: space-between;
  }
  .crisis-text  {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 760px;
  }
  .crisis-text h3  {
    font-size: var(--text-size-lg);
  }
  .crisis-text p  {
    font-size: var(--text-size-sm);
  }
  @media (max-width: 767px)  {
    /* Stack the crisis notice and make the button full-width on phones. */ .content-section-inner  {
      flex-direction: column;
      align-items: stretch;
    }
    .crisis-text  {
      max-width: none;
    }
    .btn-outline  {
      width: 100%;
      justify-content: center;
    }
  }
}
