@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* NDIS + Felix purple palette */
    --purple-950: #12071f;
    --purple-900: #1e0a2e;
    --purple-800: #2d1248;
    --purple-700: #6a2875;
    --purple-600: #7c3a9e;
    --purple-500: #9b51e0;
    --purple-400: #b47aff;
    --purple-300: #d4b4ff;
    --purple-100: #f3ebff;
    --purple-50: #faf7ff;

    --ndis-green: #007e46;
    --ndis-green-light: #00a651;
    --ndis-green-soft: #e6f5ee;

    --surface: #ffffff;
    --surface-muted: #f8f6fc;
    --surface-card: rgba(255, 255, 255, 0.72);

    --text: #1a1228;
    --text-secondary: #4a4560;
    --text-muted: #7a7590;
    --text-on-dark: rgba(255, 255, 255, 0.92);
    --text-on-dark-muted: rgba(255, 255, 255, 0.72);

    --border: rgba(106, 40, 117, 0.12);
    --border-strong: rgba(106, 40, 117, 0.22);

    --shadow-sm: 0 4px 20px rgba(30, 10, 46, 0.06);
    --shadow-md: 0 12px 40px rgba(30, 10, 46, 0.1);
    --shadow-lg: 0 24px 64px rgba(30, 10, 46, 0.14);
    --shadow-glow: 0 0 60px rgba(155, 81, 224, 0.25);

    --radius: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --max-width: 1180px;
    --max-wide: 1320px;
    --header-h: 80px;

    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;

    color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text);
    background: var(--surface);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--purple-700);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover { color: var(--purple-500); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

.container {
    width: min(100% - 2.5rem, var(--max-width));
    margin-inline: auto;
}

.container-wide {
    width: min(100% - 2.5rem, var(--max-wide));
    margin-inline: auto;
}

/* ── Typography utilities ── */
.gradient-text {
    background: linear-gradient(120deg, var(--purple-400), var(--purple-500), var(--purple-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-600);
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--ndis-green), var(--purple-500));
    border-radius: 999px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 0.75rem 0 0;
    color: var(--text);
}

.section-header p {
    margin: 1rem 0 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
    color: white;
    box-shadow: 0 8px 28px rgba(106, 40, 117, 0.35);
}

.btn-primary:hover {
    color: white;
    box-shadow: 0 12px 36px rgba(106, 40, 117, 0.45);
}

.btn-ndis {
    background: linear-gradient(135deg, var(--ndis-green), var(--ndis-green-light));
    color: white;
    box-shadow: 0 8px 28px rgba(0, 126, 70, 0.3);
}

.btn-ndis:hover { color: white; }

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-outline:hover {
    background: var(--purple-50);
    border-color: var(--purple-500);
    color: var(--purple-700);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--purple-600);
    padding-left: 0;
    padding-right: 0;
}

.btn-ghost:hover { color: var(--purple-500); }

.btn-arrow::after {
    content: "→";
    transition: transform 0.2s ease;
}

.btn:hover.btn-arrow::after { transform: translateX(4px); }

/* ── Badges ── */
.ndis-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ndis-badge--green {
    background: var(--ndis-green-soft);
    color: var(--ndis-green);
    border: 1px solid rgba(0, 126, 70, 0.2);
}

.ndis-badge--purple {
    background: rgba(155, 81, 224, 0.15);
    color: var(--purple-300);
    border: 1px solid rgba(155, 81, 224, 0.25);
}

.ndis-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(18, 7, 31, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.brand:hover { color: white; opacity: 0.95; }

.brand img {
    width: 160px;
    max-height: 48px;
    object-fit: contain;
    filter: brightness(1.05);
}

.brand-tagline {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    padding-left: 0.85rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-desktop a {
    color: var(--text-on-dark-muted);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-xs);
    padding: 0.55rem 0.85rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--purple-900);
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    color: var(--text-on-dark);
    font-family: var(--font-display);
    font-weight: 500;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
    color: white;
    background: var(--purple-950);
    padding-top: var(--header-h);
    min-height: min(92vh, 900px);
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(155, 81, 224, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(106, 40, 117, 0.4), transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 90%, rgba(0, 126, 70, 0.15), transparent 45%),
        linear-gradient(160deg, var(--purple-950) 0%, var(--purple-900) 40%, var(--purple-800) 100%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 1.25rem 0 1.25rem;
    letter-spacing: -0.03em;
}

.hero-copy h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #fff 30%, var(--purple-300) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-on-dark-muted);
    max-width: 34rem;
    margin: 0;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--purple-400), var(--ndis-green-light), var(--purple-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.hero-visual-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.hero-float-card {
    position: absolute;
    bottom: -1rem;
    left: -1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: var(--text);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-width: 220px;
    z-index: 3;
}

.hero-float-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--purple-700);
    line-height: 1;
}

.hero-float-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
}

.hero-stat span {
    font-size: 0.78rem;
    color: var(--text-on-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Services ── */
.services-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--surface-muted);
    position: relative;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-300), var(--ndis-green-light), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), var(--ndis-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
    color: inherit;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--purple-100), var(--ndis-green-soft));
}

.service-card h2,
.service-card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.65rem;
    color: var(--text);
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.service-link {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-600);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-card:hover .service-link { color: var(--purple-500); }

/* ── About ── */
.about-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-collage {
    position: relative;
    min-height: 480px;
}

.about-collage img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.about-collage .img-main {
    width: 72%;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 1;
}

.about-collage .img-secondary {
    width: 55%;
    aspect-ratio: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 4px solid var(--surface);
}

.about-collage-accent {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--ndis-green));
    opacity: 0.2;
    filter: blur(2px);
    z-index: 0;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    margin: 0 0 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin: 0 0 1.1rem;
}

.about-quote {
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--ndis-green);
    background: var(--ndis-green-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 500;
    color: var(--text);
}

/* ── Values strip ── */
.values-strip {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--purple-900), var(--purple-800));
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--purple-300);
}

.value-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
}

/* ── Featured story ── */
.story-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--surface-muted);
}

.story-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.story-visual {
    position: relative;
    min-height: 360px;
    background:
        linear-gradient(135deg, rgba(106, 40, 117, 0.75), rgba(0, 126, 70, 0.45)),
        url('/images/image.jpeg') center/cover;
}

.story-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--surface);
    color: var(--purple-700);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    border-radius: 999px;
}

.story-body {
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-body h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 1rem;
}

.story-body p {
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
}

/* ── Home CTA ── */
.home-cta {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--surface);
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-700) 50%, var(--purple-600) 100%);
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-panel::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.2);
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.cta-panel h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin: 0 0 0.75rem;
    position: relative;
}

.cta-panel p {
    margin: 0;
    color: var(--text-on-dark-muted);
    max-width: 520px;
    position: relative;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

/* ── Inner pages ── */
.page-hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    background: linear-gradient(160deg, var(--purple-950), var(--purple-800));
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(155, 81, 224, 0.25), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 126, 70, 0.12), transparent 35%);
    pointer-events: none;
}

.page-hero .container-wide { position: relative; }

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 800;
    margin: 1rem 0 0.75rem;
}

.page-hero p {
    max-width: 640px;
    color: var(--text-on-dark-muted);
    font-size: 1.15rem;
    margin: 0;
}

.content-page {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(5rem, 10vw, 7rem);
    background: var(--surface-muted);
}

.content-page .prose {
    max-width: 720px;
    background: var(--surface);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.content-page .prose h2 {
    font-size: 1.35rem;
    color: var(--purple-700);
    margin: 2rem 0 0.75rem;
}

.content-page .prose h2:first-child { margin-top: 0; }

.content-page .prose p {
    margin: 0 0 1.25rem;
    color: var(--text-secondary);
}

.cta-band {
    margin-top: 2.5rem;
    padding: 2rem 2.25rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-band p { margin: 0 0 1.25rem; color: var(--text-on-dark-muted); }
.cta-band strong { color: white; }

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-card h2 { margin-top: 0; font-size: 1.5rem; }

.contact-form {
    display: grid;
    gap: 1.25rem;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-field label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.45rem;
    color: var(--text);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xs);
    background: var(--surface-muted);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(155, 81, 224, 0.15);
}

.form-field textarea { min-height: 150px; resize: vertical; }

.form-note { color: var(--text-muted); font-size: 0.875rem; }

/* ── FAQ ── */
.faq-list {
    max-width: 760px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    transition: background 0.2s ease;
}

.faq-trigger:hover { background: var(--purple-50); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-100);
    color: var(--purple-700);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    background: var(--purple-50);
}

/* ── SEO / contact extras ── */
.service-area-list,
.contact-details,
.footer-areas {
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-area-list {
    columns: 2;
    column-gap: 2rem;
}

.footer-areas {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-areas li {
    padding: 0.15rem 0;
}

.contact-details {
    list-style: none;
    padding-left: 0;
}

.contact-map {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-map h2 {
    margin-bottom: 0.5rem;
}

.map-embed {
    margin-top: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 9;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 640px) {
    .service-area-list {
        columns: 1;
    }
}

/* ── Footer ── */
.site-footer {
    background: var(--purple-950);
    color: white;
    padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), var(--ndis-green-light), var(--purple-400));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr;
    gap: 3rem;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.footer-brand p {
    color: var(--text-on-dark-muted);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-400);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: rgba(155, 81, 224, 0.25);
    border-color: var(--purple-400);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
}

/* ── Animations ── */
/* Without JS (SSR / crawlers): content stays visible */
html:not(.js) .reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html.js .reveal.reveal-left:not(.visible) { transform: translate(-28px, 28px); }
html.js .reveal.reveal-right:not(.visible) { transform: translate(28px, 28px); }
html.js .reveal.reveal-left.visible,
html.js .reveal.reveal-right.visible { transform: translate(0, 0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .story-card,
    .cta-panel,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
    .hero-float-card { left: auto; right: 0; bottom: -0.5rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .about-collage { min-height: 360px; }
    .cta-actions { flex-direction: row; flex-wrap: wrap; }
    .story-visual { min-height: 240px; }
}

@media (max-width: 768px) {
    .nav-desktop,
    .nav-actions .btn { display: none; }

    .nav-toggle { display: inline-flex; }
    .brand-tagline { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
