/* ============================================================
   Ngara Care - Stylesheet
   Aboriginal-inspired, warm, earthy design system
   ============================================================ */

:root {
  /* Earthy palette */
  --ochre: #c97b3b;
  --ochre-dark: #a8612a;
  --deep-red: #9a3320;
  --burnt-orange: #d9601a;
  --sand: #e8d7b5;
  --sand-light: #f3e8cf;
  --charcoal: #2d2a26;
  --charcoal-soft: #4a443d;
  --cream: #fbf6ec;
  --cream-warm: #f6ecd9;
  --natural-green: #5c7a3f;
  --natural-green-dark: #455e2d;

  /* Functional */
  --text: #2d2a26;
  --text-muted: #6b655c;
  --bg: #fbf6ec;
  --surface: #ffffff;
  --border: #e6dcc7;

  /* Type scale */
  --font-heading: 'Merriweather', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
  --shadow: 0 8px 28px rgba(45, 42, 38, 0.08);
  --shadow-lg: 0 18px 48px rgba(45, 42, 38, 0.12);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--deep-red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ochre-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--charcoal);
  color: var(--cream-warm);
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--cream-warm); }
.topbar a:hover { color: var(--ochre); }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span svg {
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--ochre);
}

/* ===== Header / nav ===== */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.35rem;
}
.brand:hover { color: var(--charcoal); }
.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.brand {
  max-height: 72px;
}
.site-header .brand-logo,
.brand-logo {
  display: block;
  height: 64px !important;
  width: auto !important;
  max-width: 280px;
  max-height: 64px;
  object-fit: contain;
}
.footer-logo-card {
  display: inline-block;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}
.footer-logo-card img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--cream-warm);
  color: var(--deep-red);
}

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "\25BE";
  margin-left: 6px;
  font-size: 10px;
  opacity: .7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px;
  min-width: 320px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  list-style: none;
  margin: 8px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.dropdown a:hover { background: var(--cream-warm); }

.nav-cta {
  background: var(--deep-red);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
}
.nav-cta:hover { background: var(--ochre-dark) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--deep-red); color: #fff; }
.btn-primary:hover { background: var(--ochre-dark); color: #fff; }
.btn-secondary { background: var(--ochre); color: #fff; }
.btn-secondary:hover { background: var(--burnt-orange); color: #fff; }
.btn-outline {
  background: transparent;
  border-color: var(--cream-warm);
  color: var(--cream-warm);
}
.btn-outline:hover { background: var(--cream-warm); color: var(--charcoal); }
.btn-ghost {
  background: transparent;
  color: var(--deep-red);
  border-color: var(--deep-red);
}
.btn-ghost:hover { background: var(--deep-red); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(140deg, #6b2a1a 0%, #9a3320 35%, #c97b3b 75%, #d9601a 100%);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero::before {
  /* Subtle dot-art texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.07) 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.05) 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.06) 2px, transparent 3px),
    radial-gradient(circle at 35% 70%, rgba(255,255,255,.04) 2px, transparent 3px);
  background-size: 120px 120px, 160px 160px, 200px 200px, 90px 90px;
  pointer-events: none;
}
.hero::after {
  /* Concentric circle landscape motif */
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background-image: radial-gradient(circle, transparent 40%, rgba(255,255,255,.06) 41%, rgba(255,255,255,.06) 42%, transparent 43%, transparent 55%, rgba(255,255,255,.05) 56%, rgba(255,255,255,.05) 57%, transparent 58%, transparent 70%, rgba(255,255,255,.04) 71%, rgba(255,255,255,.04) 72%, transparent 73%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; max-width: 880px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; max-width: 18ch; }
.hero p.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 60ch; color: rgba(255,255,255,.92); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #6b2a1a 0%, #9a3320 50%, #c97b3b 100%);
  color: #fff;
  padding: 70px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,.06) 2px, transparent 3px),
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.05) 2px, transparent 3px);
  background-size: 140px 140px, 180px 180px;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { max-width: 60ch; color: rgba(255,255,255,.92); font-size: 1.1rem; margin-bottom: 0; }
.breadcrumbs {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; opacity: .6; }

/* ===== Sections ===== */
section { padding: 80px 0; }
section.alt { background: var(--cream-warm); }
section.dark {
  background: var(--charcoal);
  color: var(--cream-warm);
}
section.dark h2 { color: #fff; }

.section-eyebrow {
  display: inline-block;
  color: var(--deep-red);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 0; }

/* ===== About / two-col ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.1fr; }
.two-col.reverse .col-text { order: 2; }
.col-text p { color: var(--charcoal-soft); }
.col-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
}

/* Decorative SVG art card — used in place of stock photo in some sections */
.art-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c97b3b 0%, #9a3320 100%);
  box-shadow: var(--shadow-lg);
}
.art-panel svg { width: 100%; height: 100%; display: block; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ochre);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--deep-red);
  margin-bottom: 20px;
  position: relative;
}
.service-icon::after {
  content: "";
  position: absolute; inset: -6px;
  border: 1px dashed var(--ochre);
  border-radius: 50%;
  opacity: .35;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); flex-grow: 1; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--deep-red);
  margin-top: 8px;
}
.service-card .learn-more::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.service-card .learn-more:hover::after { transform: translateX(4px); }

/* ===== Why choose / features grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
}
.feature-item .feature-bullet {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.feature-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-item p { color: var(--text-muted); margin: 0; font-size: .98rem; }

/* ===== NDIS callout ===== */
.ndis-callout {
  background: linear-gradient(135deg, var(--natural-green) 0%, var(--natural-green-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ndis-callout::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.ndis-callout::after {
  content: "";
  position: absolute;
  right: 30px; bottom: -120px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.ndis-callout h2 { color: #fff; }
.ndis-callout p { color: rgba(255,255,255,.92); }
.ndis-actions { position: relative; z-index: 1; }

/* ===== Contact section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--deep-red);
  display: flex; align-items: center; justify-content: center;
}
.contact-list .label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.contact-list .value { color: var(--charcoal); font-weight: 600; }

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--deep-red);
  box-shadow: 0 0 0 3px rgba(154, 51, 32, .15);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--text-muted); }

/* Lists with custom bullet */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tick-list li {
  position: relative;
  padding: 8px 0 8px 36px;
  color: var(--charcoal-soft);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ochre);
  background-image: radial-gradient(circle, var(--cream) 25%, transparent 26%);
}
.tick-list li::after {
  content: "✓";
  position: absolute;
  left: 5px; top: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat {
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.stat .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--deep-red);
  font-weight: 700;
}
.stat .lbl { color: var(--text-muted); font-size: .95rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: var(--cream-warm);
  padding: 64px 0 24px;
  position: relative;
}
.site-footer::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--deep-red) 0%, var(--ochre) 35%, var(--burnt-orange) 70%, var(--natural-green) 100%);
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.site-footer a { color: var(--cream-warm); }
.site-footer a:hover { color: var(--ochre); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { padding: 5px 0; font-size: 15px; }
.footer-about p { color: rgba(251, 246, 236, .75); font-size: 15px; }
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.acknowledgement {
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--ochre);
  padding: 16px 18px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(251, 246, 236, .85);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(251, 246, 236, .7);
}

/* ===== Service detail layout ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-detail h2 { margin-top: 28px; }
.service-detail h2:first-child { margin-top: 0; }
.sidebar {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.sidebar h4 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.sidebar-services { list-style: none; padding: 0; margin: 0 0 20px; }
.sidebar-services li { border-bottom: 1px solid var(--border); }
.sidebar-services li:last-child { border-bottom: 0; }
.sidebar-services a {
  display: block;
  padding: 12px 4px;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 15px;
}
.sidebar-services a:hover { color: var(--deep-red); }
.sidebar-services a.active { color: var(--deep-red); font-weight: 700; }

/* ===== Decorative divider ===== */
.divider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
}
.divider-dots span {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: .35;
}
.divider-dots span:nth-child(2) { background: var(--deep-red); opacity: .55; }
.divider-dots span:nth-child(3) { background: var(--burnt-orange); opacity: .8; }
.divider-dots span:nth-child(4) { background: var(--deep-red); opacity: .55; }
.divider-dots span:nth-child(5) { background: var(--ochre); opacity: .35; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .col-text { order: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ndis-callout { grid-template-columns: 1fr; padding: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .brand-logo { height: 56px; max-width: 240px; }
}

@media (max-width: 760px) {
  section { padding: 60px 0; }
  .hero { padding: 64px 0 80px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .has-dropdown > a::after { float: right; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    background: var(--cream-warm);
    margin: 4px 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 6px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info { font-size: 13px; gap: 12px; }
  .ndis-callout { padding: 28px; }
  .brand-logo { height: 44px; max-width: 180px; }
  .nav-inner { padding: 10px 20px; }
  .footer-logo-card img { height: 48px; max-width: 200px; }
}

@media (max-width: 480px) {
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .brand-logo { height: 38px; max-width: 150px; }
  .footer-logo-card { padding: 8px 14px; }
  .footer-logo-card img { height: 42px; max-width: 170px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .nav-toggle { display: none; }
  body { color: #000; background: #fff; }
}
