  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0f0f0f; --white: #fafaf8;
    --cream: #f5f2ec; --cream-dark: #ede9e1;
    --grey-light: #f2f0ec; --grey-mid: #e5e2db; --grey-text: #888;
    --purple: #8b7bb8; --purple-light: #e8e2f5; --purple-pale: #f4f1fc; --purple-dark: #6b5b9e;
    --serif: 'Cormorant Garamond', serif; --sans: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans); background: var(--cream); color: var(--black);
    font-size: 15px; line-height: 1.7; font-weight: 300;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  }
  strong { font-weight: 600; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(245, 242, 236, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-mid);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: 0.06em; color: var(--black); text-decoration: none; }
  .nav-links { display: flex; gap: 0; list-style: none; font-size: 12px; letter-spacing: 0.08em; color: var(--grey-text); align-items: center; }
  .nav-links > li { position: relative; }
  .nav-links > li > a { text-decoration: none; color: var(--grey-text); padding: 0 16px; height: 64px; display: flex; align-items: center; gap: 5px; transition: color 0.2s; white-space: nowrap; }
  .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--black); }
  .nav-links > li > a.active { font-weight: 600; color: var(--purple); }
  .nav-arrow { font-size: 9px; transition: transform 0.2s; }
  .nav-links > li:hover .nav-arrow { transform: rotate(180deg); }
  .nav-dropdown {
    position: absolute; top: 64px; left: 50%; transform: translateX(-50%) translateY(-6px);
    background: var(--cream); border: 1px solid var(--grey-mid); min-width: 180px;
    opacity: 0; pointer-events: none; transition: opacity 0.18s, transform 0.18s; z-index: 300;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  }
  .nav-links > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
  .nav-dropdown a { display: block; padding: 14px 20px; font-size: 12px; letter-spacing: 0.08em; color: var(--grey-text); text-decoration: none; border-bottom: 0.5px solid var(--grey-mid); transition: background 0.15s, color 0.15s; }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover { background: var(--purple-pale); color: var(--purple); }
  .nav-cta { background: var(--black); color: var(--white); font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; padding: 10px 22px; border: none; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
  .nav-cta:hover { background: var(--purple); }

  /* ── REVEAL ON SCROLL ── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.22s; }
  .reveal-delay-3 { transition-delay: 0.36s; }
  .reveal-delay-4 { transition-delay: 0.5s; }

  /* ── SECTION LABEL ── */
  .section-label { display: flex; align-items: center; gap: 14px; font-size: 10px; letter-spacing: 0.18em; color: var(--grey-text); text-transform: uppercase; margin-bottom: 24px; font-weight: 500; }
  .section-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--purple); }

  /* ── HERO ── */
  .hero {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh;
    border-bottom: 1px solid var(--grey-mid);
    background: var(--cream);
  }
  .hero-left {
    padding: 80px 56px 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid var(--grey-mid);
    position: relative;
  }
  .hero-left::before {
    content: 'EP';
    position: absolute; bottom: -20px; left: 40px;
    font-family: var(--serif); font-size: 280px; font-weight: 600;
    color: var(--grey-mid); opacity: 0.35; line-height: 1;
    pointer-events: none; user-select: none; letter-spacing: -0.05em;
  }
  .hero h1 { font-family: var(--serif); font-size: 70px; line-height: 1.05; font-weight: 600; color: var(--black); margin-bottom: 28px; position: relative; z-index: 1; }
  .hero h1 em { font-style: italic; font-weight: 300; color: var(--purple); }
  .hero-p { font-size: 16px; color: #555; max-width: 420px; font-weight: 300; line-height: 1.85; margin-bottom: 40px; position: relative; z-index: 1; }
  .btn-primary { background: var(--black); color: var(--white); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; padding: 14px 30px; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; text-decoration: none; display: inline-block; position: relative; z-index: 1; }
  .btn-primary:hover { background: var(--purple); transform: translateY(-1px); }
  .hero-right { position: relative; background: var(--cream-dark); display: flex; align-items: stretch; }
  .hero-img-ph {
    width: 100%; min-height: 540px; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
    background: linear-gradient(160deg, #ddd8d0 0%, #c9c4ba 100%);
    position: relative; overflow: hidden;
  }
  .hero-img-ph::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15,15,15,0.12) 100%);
  }
  .img-label { font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase; position: relative; z-index: 1; }
  .hero-tag {
    position: absolute; bottom: 32px; left: 32px;
    background: var(--white); padding: 14px 20px;
    font-size: 11px; letter-spacing: 0.08em; color: var(--black); font-weight: 500;
    border-left: 3px solid var(--purple);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 2;
  }

  /* ── STORY ── */
  .story-section {
    display: grid; grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--grey-mid);
    background: var(--white);
  }
  .story-left {
    padding: 80px 48px 80px 64px; border-right: 1px solid var(--grey-mid);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .big-year { font-family: var(--serif); font-size: 108px; font-weight: 300; color: var(--grey-mid); line-height: 1; margin-top: 20px; }
  .story-right { padding: 80px 64px; }
  .story-right h2 { font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1.1; margin-bottom: 28px; }
  .story-right h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
  .story-right p { color: #555; font-size: 15px; line-height: 1.9; margin-bottom: 20px; font-weight: 300; }
  .story-right p:last-child { margin-bottom: 0; }

  /* ── MISSION ── */
  .mission-block {
    background: var(--purple-dark); padding: 88px 64px;
    display: flex; align-items: flex-start; gap: 48px;
    position: relative; overflow: hidden;
  }
  .mission-block::before {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    top: -200px; right: -150px; pointer-events: none;
  }
  .mission-block::after {
    content: ''; position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    top: -100px; right: -50px; pointer-events: none;
  }
  .mission-line { width: 3px; background: var(--purple-light); flex-shrink: 0; align-self: stretch; opacity: 0.4; border-radius: 2px; }
  .mission-block blockquote { font-family: var(--serif); font-size: 44px; font-weight: 300; color: #fff; line-height: 1.25; font-style: italic; position: relative; z-index: 1; }
  .mission-block blockquote strong { font-weight: 600; font-style: normal; color: #d4c9f0; }
  .mission-sub { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.38); letter-spacing: 0.12em; text-transform: uppercase; position: relative; z-index: 1; }

  /* ── VALUES ── */
  .values-section { border-bottom: 1px solid var(--grey-mid); background: var(--cream); }
  .values-header { padding: 72px 64px 48px; border-bottom: 1px solid var(--grey-mid); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
  .values-header h2 { font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1.1; }
  .values-header h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
  .values-header p { font-size: 15px; color: #555; line-height: 1.85; font-weight: 300; }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .value-card {
    padding: 52px 44px; border-right: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative; background: var(--cream);
    cursor: default;
  }
  .value-card:nth-child(3n) { border-right: none; }
  .value-card:nth-child(4), .value-card:nth-child(5), .value-card:nth-child(6) { border-bottom: none; }
  .value-card:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    z-index: 1;
  }
  .value-card:hover .value-icon { background: var(--purple); border-color: var(--purple); }
  .value-card:hover .value-icon svg { stroke: #fff; }
  .value-icon { width: 40px; height: 40px; border: 1px solid var(--purple-light); background: var(--purple-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: background 0.3s, border-color 0.3s; border-radius: 2px; }
  .value-icon svg { width: 18px; height: 18px; transition: stroke 0.3s; }
  .value-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--black); margin-bottom: 12px; line-height: 1.2; }
  .value-body { font-size: 13px; color: #666; line-height: 1.8; font-weight: 300; }

  /* ── DIFFERENCE ── */
  .diff-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--grey-mid); background: var(--white); }
  .diff-left { padding: 80px 56px 80px 64px; border-right: 1px solid var(--grey-mid); }
  .diff-left h2 { font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1.1; margin-bottom: 28px; }
  .diff-left h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
  .diff-left p { font-size: 15px; color: #555; line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
  .diff-right { padding: 80px 64px; display: flex; flex-direction: column; }
  .diff-item {
    padding: 28px 0; border-bottom: 1px solid var(--grey-mid); display: flex; gap: 22px; align-items: flex-start;
    transition: background 0.2s; cursor: default;
  }
  .diff-item:first-child { padding-top: 0; }
  .diff-item:last-child { border-bottom: none; }
  .diff-num { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--purple-light); line-height: 1; flex-shrink: 0; width: 44px; transition: color 0.3s; }
  .diff-item:hover .diff-num { color: var(--purple); }
  .diff-text-title { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
  .diff-text-body { font-size: 13px; color: #666; line-height: 1.75; font-weight: 300; }

  /* ── STATS ── */
  .stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--grey-mid); background: var(--cream-dark); }
  .stat-cell {
    padding: 56px 36px; border-right: 1px solid var(--grey-mid); text-align: center;
    position: relative; overflow: hidden; cursor: default;
    transition: background 0.35s;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 0; background: var(--purple-pale);
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
  }
  .stat-cell:hover::after { height: 100%; }
  .stat-cell::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--purple); transform: scaleX(0);
    transition: transform 0.35s ease; transform-origin: left; z-index: 1;
  }
  .stat-cell:hover::before { transform: scaleX(1); }
  .stat-cell > * { position: relative; z-index: 1; }
  .stat-big {
    font-family: var(--serif); font-size: 60px; font-weight: 600;
    line-height: 1; color: var(--black); margin-bottom: 10px;
    transition: color 0.3s;
  }
  .stat-cell:hover .stat-big { color: var(--purple-dark); }
  .stat-big span { color: var(--purple); font-weight: 300; font-size: 38px; }
  .stat-label-top {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--black); margin-bottom: 10px;
    transition: color 0.3s;
  }
  .stat-cell:hover .stat-label-top { color: var(--purple-dark); }
  .stat-desc {
    font-size: 12px; color: var(--grey-text); line-height: 1.7; font-weight: 300;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s ease 0.1s, opacity 0.35s ease 0.1s;
  }
  .stat-cell:hover .stat-desc { max-height: 60px; opacity: 1; }
  .count-num { display: inline; }

  /* ── TEAM ── */
  .team-section { border-bottom: 1px solid var(--grey-mid); background: var(--cream); }
  .team-header { padding: 72px 64px 48px; border-bottom: 1px solid var(--grey-mid); display: flex; justify-content: space-between; align-items: flex-end; }
  .team-header h2 { font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1.1; }
  .team-header h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
  .btn-ghost { background: transparent; color: var(--black); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; padding: 14px 0; border: none; border-bottom: 1px solid var(--black); cursor: pointer; transition: color 0.2s, border-color 0.2s; text-decoration: none; display: inline-block; }
  .btn-ghost:hover { color: var(--purple); border-color: var(--purple); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .team-card {
    border-right: 1px solid var(--grey-mid); overflow: hidden;
    cursor: pointer; text-decoration: none; color: inherit;
    transition: background 0.3s;
    position: relative;
  }
  .team-card:last-child { border-right: none; }
  .team-img {
    width: 100%; height: 280px; overflow: hidden;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
    position: relative;
  }
  .team-img-1 { background: linear-gradient(160deg, #ddd9d3, #ccc7bf); }
  .team-img-2 { background: linear-gradient(160deg, #d6d2cc, #c5c0b8); }
  .team-img-3 { background: linear-gradient(160deg, #dad6d0, #c9c4bc); }
  .team-img-4 { background: linear-gradient(160deg, #d4d0ca, #c3beb6); }
  .team-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.15) 100%); transition: opacity 0.3s; }
  .team-card:hover .team-img::after { opacity: 0.5; }
  .team-img::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--purple); transform: scaleX(0); transition: transform 0.3s; z-index: 2; transform-origin: left; }
  .team-card:hover .team-img::before { transform: scaleX(1); }
  .team-body { padding: 24px 28px 32px; transition: background 0.3s; }
  .team-card:hover .team-body { background: var(--white); }
  .team-name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
  .team-role { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); font-weight: 500; margin-bottom: 12px; }
  .team-bio { font-size: 12px; color: #666; line-height: 1.7; font-weight: 300; }

  /* ── CTA ── */
  .cta-strip {
    background: var(--black); padding: 88px 64px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-strip::before {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    bottom: -200px; right: 0; pointer-events: none;
  }
  .cta-strip h2 { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--white); line-height: 1.1; position: relative; z-index: 1; }
  .cta-strip h2 em { font-style: italic; font-weight: 300; color: #c4b8e0; }
  .cta-strip p { font-size: 14px; color: #777; margin-bottom: 32px; line-height: 1.85; font-weight: 300; position: relative; z-index: 1; }
  .btn-light { background: var(--white); color: var(--black); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; padding: 14px 30px; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; text-decoration: none; display: inline-block; position: relative; z-index: 1; }
  .btn-light:hover { background: #c4b8e0; transform: translateY(-1px); }

  footer { padding: 32px 64px; display: flex; align-items: center; justify-content: space-between; background: var(--cream); border-top: 1px solid var(--grey-mid); }
  .footer-logo { font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: 0.06em; color: #888; }
  .footer-links { display: flex; gap: 28px; list-style: none; font-size: 11px; color: var(--grey-text); letter-spacing: 0.08em; }
  .footer-links a { text-decoration: none; color: inherit; transition: color 0.2s; }
  .footer-links a:hover { color: var(--purple); }
  .footer-copy { font-size: 11px; color: #bbb; }



























/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 80px 64px 72px;
  border-bottom: 1px solid var(--grey-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--grey-text);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.section-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--purple);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.04;
  color: var(--black);
}

.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--purple);
}

.page-hero-right p {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
}

.ndis-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--purple-light);
  background: var(--purple-pale);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--purple-dark);
  font-weight: 500;
}

.ndis-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}


/* ============================================================
   SERVICES OUTER
   ============================================================ */
.services-outer {
  padding: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, background 0.25s;
  background: var(--white);
  overflow: hidden;
}

.svc-card:hover { border-color: var(--purple); }
.svc-card:hover .svc-arrow { transform: translateX(5px); color: var(--purple); }
.svc-card:hover .svc-num { color: var(--purple-light); }

.svc-img {
  width: 100%;
  height: 200px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.svc-img-1 { background: #ddd9d3; }
.svc-img-2 { background: #d6d2cc; }
.svc-img-3 { background: #dad6d0; }
.svc-img-4 { background: #d4d0ca; }
.svc-img-5 { background: #e8e4f0; }
.svc-img-6 { background: #e0dce8; }
.svc-img-label { font-size: 10px; letter-spacing: 0.12em; color: #aaa; text-transform: uppercase; }

.svc-card:hover .svc-img { filter: brightness(0.94); }

.svc-body {
  padding: 40px 44px 44px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: #e8e5e0;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: color 0.25s;
}

.svc-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.svc-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 14px;
}

.svc-title em { font-style: italic; font-weight: 300; }

.svc-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
}

.svc-pill {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--grey-text);
  border: 0.5px solid var(--grey-mid);
  padding: 5px 12px;
  font-weight: 400;
}

.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--grey-mid);
}

.svc-cta { font-size: 11px; letter-spacing: 0.1em; font-weight: 600; color: var(--black); text-transform: uppercase; }
.svc-arrow { font-size: 18px; transition: transform 0.25s, color 0.25s; color: var(--grey-text); }

.svc-card-specialist { background: var(--purple-pale); border-color: var(--purple-light); }
.svc-card-specialist .svc-pill { border-color: var(--purple-light); color: var(--purple-dark); }
.svc-card-specialist:hover { border-color: var(--purple); background: var(--purple-light); }


/* ============================================================
   STATEMENT BREAK
   ============================================================ */
.statement-break {
  background: var(--purple-dark);
  padding: 72px 64px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.statement-line {
  width: 3px;
  background: var(--purple-light);
  flex-shrink: 0;
  align-self: stretch;
  opacity: 0.4;
  border-radius: 2px;
}

.statement-break blockquote {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  font-style: italic;
}

.statement-break blockquote strong {
  font-weight: 600;
  font-style: normal;
  color: #d4c9f0;
}

.statement-sub {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============================================================
   NDIS STRIP
   ============================================================ */
.ndis-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.ndis-left {
  padding: 64px;
  border-right: 1px solid var(--grey-mid);
  background: var(--purple-pale);
}

.ndis-left h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ndis-left h2 em { font-style: italic; font-weight: 300; color: var(--purple); }

.ndis-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  text-decoration: none;
  display: inline-block;
}

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

.ndis-right { padding: 64px; }

.ndis-right h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--black);
}

.funding-list { list-style: none; }

.funding-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--grey-mid);
  font-size: 13px;
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}

.funding-item:last-child { border-bottom: none; }

.funding-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 6px;
}

.funding-label {
  font-weight: 600;
  color: var(--black);
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
