:root {
  --blue: #1f4f96;
  --blue-dark: #17366d;
  --navy: #303b86;
  --maroon: #8d252b;
  --red: #d92745;
  --grey: #bfc2c4;
  --pale-blue: #eef5fb;
  --soft: #f6f8fb;
  --white: #ffffff;
  --text: #222832;
  --muted: #5c6675;
  --border: #dce4ee;
  --shadow: 0 18px 46px rgba(23, 54, 109, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--blue-dark);
  color: var(--white);
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 13px clamp(18px, 5vw, 76px);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 18px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 176px;
  max-height: 96px;
  display: block;
  object-fit: contain;
}

.menu-button {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-dark);
  font-weight: 900;
}

nav a {
  text-decoration: none;
}

nav a:hover,
.dropdown:hover > a,
.dropdown:focus-within > a {
  color: var(--red);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--maroon);
}

.dropdown {
  position: relative;
  padding: 22px 0;
  margin: -22px 0;
}

.dropdown > a::after {
  content: " ▾";
  font-size: 0.8em;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  display: none;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 4px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--blue-dark);
  font-weight: 800;
}

.dropdown-menu a:hover {
  background: var(--pale-blue);
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 48px;
  align-items: center;
  padding: 62px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(23,54,109,0.98), rgba(31,79,150,0.92) 48%, rgba(238,245,251,0.95) 48%),
    var(--pale-blue);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255,255,255,0.92);
}

h1, h2, h3 {
  line-height: 1.12;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  letter-spacing: -0.045em;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}

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

.primary:hover {
  background: var(--maroon);
}

.secondary {
  color: var(--blue-dark);
  background: var(--white);
}

.hero-visual img,
.page-image img {
  width: 100%;
  display: block;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.assist-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.assist-bar button {
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--soft);
  padding: 8px 10px;
  font-weight: 900;
}

.assist-bar p {
  margin: 0 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 76px clamp(18px, 5vw, 76px);
}

.section.alt {
  background: var(--pale-blue);
}

.section-title {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 8px solid var(--grey);
  box-shadow: var(--shadow);
}

.icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 2rem;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.card a {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.panel {
  padding: clamp(28px, 5vw, 50px);
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.list-block {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.list-block div {
  padding: 18px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.list-block strong,
.list-block span {
  display: block;
}

.list-block strong {
  color: var(--blue-dark);
}

.list-block span {
  color: var(--muted);
  margin-top: 4px;
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 52px clamp(18px, 5vw, 76px);
  background: var(--blue-dark);
  color: var(--white);
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.3vw, 3.4rem);
}

.cta-strip p {
  color: rgba(255,255,255,0.86);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.media-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-thumb {
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(23,54,109,0.95), rgba(48,59,134,0.78));
  color: var(--white);
}

.media-thumb span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 900;
}

.media-card h3 {
  margin: 18px 0 8px;
  color: var(--blue-dark);
}

.media-card p {
  margin: 0;
  color: var(--muted);
}

.future-list {
  display: grid;
  gap: 14px;
}

.future-list div {
  padding: 22px;
  border-left: 8px solid var(--grey);
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
}

.future-list strong,
.future-list span {
  display: block;
}

.future-list span {
  opacity: 0.82;
  margin-top: 4px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-details p {
  margin: 0;
  padding: 18px;
  background: var(--pale-blue);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details strong {
  color: var(--blue-dark);
}

.contact-details span,
.contact-details a {
  color: var(--muted);
  margin-top: 4px;
  word-break: break-word;
}

.ndis-placement {
  margin-top: 26px;
  max-width: 520px;
}

.ndis-placement img {
  width: 100%;
  display: block;
}

.ndis-placement small {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

footer img {
  width: 92px;
  object-fit: contain;
}

footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

@media (max-width: 1080px) {
  nav {
    gap: 14px;
    font-size: 0.92rem;
  }

  .hero,
  .split,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    background: var(--blue-dark);
  }

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

@media (max-width: 800px) {
  .site-header {
    flex-wrap: wrap;
  }

  .brand img {
    width: 148px;
  }

  .menu-button {
    display: inline-flex;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-open nav {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: auto;
    margin-top: 8px;
    box-shadow: none;
  }

  .dropdown {
    padding: 0;
    margin: 0;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .assist-bar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .assist-bar p {
    margin-left: 0;
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
