:root {
  --bg: #fff8f3;
  --surface: #ffffff;
  --surface-soft: #fff2e8;
  --ink: #113146;
  --muted: #355262;
  --brand: #e36c34;
  --brand-deep: #bf4f1f;
  --line: #ecd6c9;
  --shadow: 0 14px 32px rgba(18, 49, 70, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf6 0%, #fff2e8 100%);
  font-size: 17px;
  line-height: 1.72;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #f0ddd1;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.78rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-deep);
  box-shadow: 0 8px 18px rgba(191, 79, 31, 0.24);
}

.btn-sm {
  font-size: 0.92rem;
  padding: 0.58rem 0.95rem;
}

.btn-outline {
  background: #fff;
  border-color: #e2b9a3;
  color: #8f3f1c;
}

.btn-outline:hover {
  background: #fff3eb;
  box-shadow: none;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  align-items: stretch;
}

.hero-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2vw, 2rem);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #bf4f1f;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.23;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-top: 0.5rem;
  max-width: 16ch;
}

.lead {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-metrics article {
  background: #fff3ea;
  border: 1px solid #efccb7;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.hero-metrics strong {
  display: block;
  font-size: 0.9rem;
  color: #8f3f1c;
}

.hero-metrics span {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.82rem;
  color: #8b5a42;
}

.hero-panel {
  background: #c85524;
  color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #6f3019;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 1.45rem;
}

.hero-panel p,
.hero-panel dt {
  color: #ffe1d0;
}

.hero-panel .contact-form {
  margin-top: 1rem;
}

.hero-panel dl {
  margin: 1.1rem 0 0;
}

.hero-panel dl div {
  border-bottom: 1px solid #b7653f;
  padding: 0.8rem 0;
}

.hero-panel dl div:last-child {
  border-bottom: 0;
}

.hero-panel dt {
  font-size: 0.82rem;
}

.hero-panel dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.hero-panel a,
.link-arrow {
  color: #ffd0b8;
  text-decoration: none;
  font-weight: 700;
}

.link-arrow::after {
  content: " ->";
}

.feature-strip {
  padding: 0.8rem 0 2.2rem;
}

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

.feature-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.feature-grid h3,
.card h3 {
  font-size: 1.18rem;
}

.feature-grid p,
.card p,
.steps p,
blockquote cite,
.contact-wrap p,
.footer-grid p {
  color: var(--muted);
}

.feature-grid p,
.card p,
.steps p {
  margin: 0.45rem 0 0;
}

.section {
  padding: 3.9rem 0;
}

.section-title {
  margin-top: 0.52rem;
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  max-width: 23ch;
}

.services-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.05rem;
}

.pathway {
  background: var(--surface-soft);
  border-top: 1px solid #efcfbc;
  border-bottom: 1px solid #efcfbc;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}

.steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #8f3f1c;
  background: #ffd9c4;
}

.quotes {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
}

blockquote p {
  margin: 0;
  color: #203d4d;
  font-size: 1.03rem;
}

blockquote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
}

.contact-wrap {
  background: #c85524;
  border: 1px solid #a8441c;
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.contact-wrap .eyebrow,
.contact-wrap h2,
.contact-wrap p {
  color: #fff6ef;
}

.contact-wrap h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddc0af;
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(227, 108, 52, 0.22);
  outline-offset: 2px;
  border-color: #d76a38;
}

.btn-light {
  background: #fff3eb;
  color: #8f3f1c;
}

.btn-light:hover {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(30, 14, 8, 0.16);
}

.contact-form-compact input,
.contact-form-compact textarea {
  border-color: #db8d67;
  background: rgba(255, 255, 255, 0.96);
}

.form-status {
  margin: 0;
  min-height: 1.6em;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status[data-state="loading"] {
  color: #8b5a42;
}

.form-status[data-state="success"] {
  color: #2f6f43;
}

.form-status[data-state="error"] {
  color: #9f2f1f;
}

button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.site-footer {
  margin-top: 0.8rem;
  padding: 2.1rem 0 2.6rem;
  background: #7a3318;
  border-top: 1px solid #a6512d;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.footer-logo {
  width: 172px;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-grid p,
.footer-grid a {
  color: #ffe6d7;
}

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero-grid,
  .services-grid,
  .quotes,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.9rem 0;
  }

  .brand-logo {
    width: 160px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-grid,
  .services-grid,
  .quotes,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.1rem 0;
  }
}

.hero-illustration,
.services-illustration,
.contact-illustration {
  margin: 0;
}

.hero-illustration {
  margin-top: 1.15rem;
  border: 1px solid #efccb7;
  border-radius: 14px;
  overflow: hidden;
  background: #fff8f3;
}

.hero-illustration img,
.services-illustration img,
.contact-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.services-illustration {
  border: 1px solid #efccb7;
  border-radius: 14px;
  overflow: hidden;
  background: #fff8f3;
}

.contact-wrap {
  grid-template-columns: 1fr auto minmax(180px, 240px);
}

.contact-illustration {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e68d66;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1000px) {
  .services-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-illustration {
    max-width: 420px;
  }

  .contact-illustration {
    max-width: 300px;
  }
}

@media (max-width: 760px) {
  .hero-illustration,
  .services-illustration,
  .contact-illustration {
    border-radius: 12px;
  }

  .contact-illustration {
    max-width: 100%;
  }
}

.nav-links a[aria-current="page"] {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.subhero {
  padding-top: 3.2rem;
}

.subhero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.subhero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.subhero-illustration {
  border: 1px solid #efccb7;
  border-radius: 14px;
  overflow: hidden;
  background: #fff8f3;
  margin: 0;
}

.ndis-logo-badge {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 460px;
  padding: 0.75rem 0.95rem;
  border: 1px solid #efccb7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ndis-logo-badge img {
  width: 78px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.ndis-logo-badge span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

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

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
}

.contact-form-card h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-side-card {
  align-self: start;
}

.contact-side-card h3 + p {
  margin-top: 0.35rem;
}

.contact-side-card p + h3 {
  margin-top: 1rem;
}

.ndis-provider-badge {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ndis-provider-badge img {
  width: 260px;
  height: auto;
  display: block;
}

.ndis-provider-number {
  font-size: 0.95rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-social {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffe6d7;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-ndis-number {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: #ffd0b8;
}

.notice-card {
  margin-top: 1rem;
  background: #fff8f3;
  border: 1px solid #efccb7;
  border-radius: 12px;
  padding: 0.95rem;
}

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

.simple-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

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

.pricing-grid .card h3 {
  margin-top: 0.35rem;
  color: #8f3f1c;
}

.pricing-note {
  color: var(--muted);
  max-width: 70ch;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid #e6c8b7;
  border-radius: 12px;
  background: #fff;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.pricing-table th,
.pricing-table td {
  padding: 0.82rem 0.9rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #f2dbcf;
  text-align: left;
}

.pricing-table th {
  background: #fff2e9;
  color: #7d3518;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1000px) {
  .subhero-grid,
  .pricing-grid,
  .simple-list,
  .two-col,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
