:root {
  --sage: #829380;
  --sage-dark: #6b7a69;
  --sage-light: #dce6db;
  --cream: #faf9f5;
  --cream-alt: #f3f2ec;
  --charcoal: #1f2937;
  --text: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, .floating-title { font-family: "Playfair Display", Georgia, serif; }
p { margin-top: 0; }
svg { display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--cream);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-nav.is-scrolled {
  background: rgba(250,249,245,.97);
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
  backdrop-filter: blur(8px);
}
.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-link { display: flex; align-items: center; transition: opacity .2s ease; }
.brand-link:hover { opacity: .8; }
.brand-logo { width: 255px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav > a:not(.nav-cta) { font-size: 14px; font-weight: 500; color: #374151; transition: color .2s ease; }
.desktop-nav > a:not(.nav-cta):hover { color: var(--sage); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 4px;
  color: white;
  background: var(--sage);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--sage-dark); }
.nav-cta:active { transform: scale(.97); }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #374151;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.icon-close { display: none; }
.menu-button.is-open .icon-menu { display: none; }
.menu-button.is-open .icon-close { display: block; }
.mobile-menu { display: none; }

.hero-section {
  position: relative;
  padding-top: 84px;
  overflow: hidden;
}
.hero-sage-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--sage);
  z-index: 0;
}
.hero-container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 96px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow-pill {
  display: inline-block;
  margin-bottom: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--sage-light);
  color: #4a5e48;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(50px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--charcoal);
}
.hero-copy h1 em { color: var(--sage); font-weight: 400; }
.hero-text { max-width: 450px; margin-bottom: 40px; color: #4b5563; font-size: 16px; line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.button {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
.button:hover { opacity: .92; }
.button:active { transform: scale(.97); }
.button-primary { color: white; background: var(--sage); }
.button-secondary { color: var(--charcoal); border: 1px solid #d1d5db; background: transparent; }
.button-secondary:hover { color: var(--sage); border-color: var(--sage); }
.button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.image-wrap { position: relative; width: 100%; }
.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.hero-image-wrap .feature-image { box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.floating-card {
  position: absolute;
  padding: 20px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.floating-card p { margin: 0; }
.ndis-card { left: -32px; bottom: -24px; max-width: 220px; background: var(--sage-dark); }
.floating-title { font-size: 24px; font-weight: 700; margin-bottom: 4px !important; }
.ndis-card p:last-child { font-size: 12px; line-height: 1.55; opacity: .9; }

.section { padding: 112px 0; }
.section-cream { background: var(--cream); }
.section-anchor { scroll-margin-top: 84px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.about-image-wrap .feature-image { box-shadow: 0 6px 18px rgba(0,0,0,.09); }
.mobile-care-card { right: -24px; bottom: -32px; max-width: 240px; background: var(--sage); }
.mobile-care-card h3 { margin: 0 0 4px; font-size: 16px; font-weight: 600; }
.mobile-care-card p { font-size: 12px; line-height: 1.55; opacity: .95; }
.prose { color: #4b5563; line-height: 1.7; }
.prose h2, .section-intro h2, .intake-copy h2 { margin: 0 0 24px; font-size: 30px; line-height: 1.25; font-weight: 400; color: #111827; }
.prose p { margin-bottom: 20px; }
.prose strong { color: #374151; }
.prose blockquote { margin: 24px 0 0; padding-left: 16px; border-left: 4px solid var(--sage); color: var(--sage-dark); font-size: 14px; font-style: italic; font-weight: 500; line-height: 1.65; }

.services-section { background: var(--cream-alt); border-top: 1px solid #e5e7eb; }
.section-intro { max-width: 680px; margin-bottom: 56px; }
.eyebrow { display: block; margin-bottom: 16px; color: var(--sage); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.section-intro h2 { margin-bottom: 16px; font-size: 36px; }
.section-intro p, .intake-copy > p { color: #4b5563; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 28px;
  border: 1px solid #f0f0ed;
  border-radius: 12px;
  background: white;
  box-shadow: 0 1px 5px rgba(0,0,0,.035);
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.08); transform: translateY(-1px); }
.service-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--sage-light); font-size: 20px; }
.service-card h3 { margin: 0 0 12px; color: var(--charcoal); font-size: 16px; font-weight: 600; line-height: 1.35; }
.service-card p { margin: 0; color: #6b7280; font-size: 14px; line-height: 1.65; }
.ndis-note {
  margin-top: 40px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #b8cdb6;
  border-radius: 12px;
  background: var(--sage-light);
}
.ndis-note > div { flex: 1; }
.ndis-heading { margin-bottom: 4px; color: #374151; font-size: 14px; font-weight: 600; }
.ndis-note div > p:last-child { margin: 0; color: #4b5563; font-size: 14px; line-height: 1.6; }
.note-button { flex-shrink: 0; min-height: 42px; padding: 10px 20px; }

.intake-grid { gap: 64px; }
.intake-copy h2 { margin-bottom: 24px; font-size: 36px; }
.intake-copy > p { margin-bottom: 24px; }
.contact-list { display: grid; gap: 16px; margin-top: 38px; }
.contact-row { display: flex; align-items: center; gap: 12px; color: #4b5563; font-size: 14px; transition: color .2s ease; }
a.contact-row:hover { color: var(--sage); }
.contact-icon { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; background: var(--sage-light); color: var(--sage); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.intake-card { padding: 40px; border: 1px solid #e5e7eb; border-radius: 16px; background: white; box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.form-icon { width: 56px; height: 56px; margin-bottom: 24px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--sage-light); font-size: 24px; }
.intake-card h3 { margin: 0 0 12px; font-size: 20px; font-weight: 600; color: #111827; }
.intake-card > p { color: #6b7280; font-size: 14px; line-height: 1.65; }
.form-button { width: 100%; min-height: 52px; margin-top: 26px; font-weight: 600; }
.privacy-note { margin: 18px 0 0 !important; color: #9ca3af !important; font-size: 12px !important; text-align: center; line-height: 1.55 !important; }
.divider { margin: 24px 0; display: flex; align-items: center; gap: 12px; }
.divider span { flex: 1; height: 1px; background: #f3f4f6; }
.divider small { color: #9ca3af; font-size: 12px; }
.email-button { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid #d1d5db; border-radius: 8px; color: #374151; font-size: 14px; font-weight: 500; transition: color .2s ease, border-color .2s ease; }
.email-button:hover { color: var(--sage); border-color: var(--sage); }
.email-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { padding: 48px 0; border-top: 1px solid #e5e7eb; background: var(--cream-alt); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-logo { width: 220px; margin-bottom: 16px; }
.footer-grid > div:first-child > p { max-width: 320px; margin: 0; color: #6b7280; font-size: 14px; line-height: 1.6; }
.footer-heading { margin: 0 0 16px; color: #9ca3af; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.site-footer li, .site-footer a { color: #6b7280; font-size: 14px; line-height: 1.5; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--sage); }
.footer-contact { gap: 12px !important; }
.footer-contact li, .footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 14px; height: 14px; flex: 0 0 14px; fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { padding-top: 24px; border-top: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { margin: 0; color: #9ca3af; font-size: 12px; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: white;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  cursor: pointer;
}
.back-to-top:hover { background: var(--sage-dark); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1023px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .hero-sage-panel { display: none; }
  .hero-container { padding-top: 72px; padding-bottom: 84px; }
  .hero-grid { gap: 48px; }
  .two-col { gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ndis-card { left: -16px; }
  .mobile-care-card { right: 0; }
}

@media (max-width: 767px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .nav-inner { min-height: 76px; }
  .brand-logo { width: 225px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .mobile-menu { display: block; max-height: 0; overflow: hidden; opacity: 0; border-top: 1px solid transparent; transition: max-height .3s ease, opacity .3s ease, border-color .3s ease; }
  .mobile-menu.is-open { max-height: 280px; opacity: 1; border-color: #f0f0ed; }
  .mobile-menu-inner { padding-top: 14px; padding-bottom: 24px; display: flex; flex-direction: column; gap: 12px; }
  .mobile-menu a:not(.nav-cta) { padding: 6px 0; color: #374151; font-size: 14px; font-weight: 500; }
  .mobile-menu .nav-cta { width: 100%; margin-top: 2px; }
  .hero-section { padding-top: 76px; }
  .hero-container { padding-top: 64px; padding-bottom: 76px; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy h1 { font-size: clamp(44px, 12vw, 54px); }
  .section { padding: 80px 0; }
  .about-grid { gap: 64px; }
  .about-copy { padding-top: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .ndis-note { align-items: flex-start; flex-direction: column; }
  .note-button { width: auto; }
  .intake-grid { gap: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-logo { width: 210px; }
}

@media (max-width: 479px) {
  .brand-logo { width: 190px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .hero-container { padding-top: 56px; }
  .hero-copy h1 { font-size: 44px; }
  .button-row { width: 100%; }
  .button-row .button { width: 100%; }
  .ndis-card { left: -4px; bottom: -26px; }
  .mobile-care-card { right: 0; bottom: -30px; }
  .section { padding: 72px 0; }
  .prose h2, .section-intro h2, .intake-copy h2 { font-size: 30px; }
  .intake-card { padding: 28px 22px; }
  .contact-row { align-items: flex-start; }
}
