:root {
  --bg: #f4efe6;
  --bg-soft: #efe5d7;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf8;
  --text: #1d241d;
  --muted: #556358;
  --line: rgba(29, 36, 29, 0.12);
  --accent: #063232;
  --accent-strong: #041f1f;
  --accent-soft: #d0e8e0;
  --lime: #EEFF69;
  --sand: #e4ccb2;
  --shadow: 0 24px 60px rgba(41, 49, 39, 0.12);
  --shadow-lift: 0 32px 72px rgba(6, 50, 50, 0.18);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Parkinsans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 28%),
    radial-gradient(circle at bottom right, rgba(216, 233, 223, 0.8), transparent 26%),
    linear-gradient(180deg, #f8f4ee 0%, var(--bg) 58%, #ece2d2 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 0 0 var(--radius) var(--radius);
}

.skip-link:focus {
  top: 0;
}

p,
ul {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(248, 244, 238, 0.86);
  border-bottom: 1px solid rgba(29, 36, 29, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand span {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.primary-nav a {
  color: var(--muted);
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(47, 93, 80, 0.24);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero,
.section,
.site-footer {
  position: relative;
}

.hero {
  padding: 5.5rem 0 3rem;
}

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

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

.hero-copy {
  max-width: 720px;
}

.hero-copy-centered {
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Parkinsans", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.4rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.cta-band-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 6px 20px rgba(238, 255, 105, 0.3);
}

.button:hover {
  background: #d9ef50;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(238, 255, 105, 0.4);
}

.button-secondary {
  background: transparent;
  border: 1.5px solid rgba(6, 50, 50, 0.2);
  color: var(--text);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(6, 50, 50, 0.06);
  box-shadow: none;
}

.button-dark {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 20px rgba(6, 50, 50, 0.25);
}

.button-dark:hover {
  background: var(--accent-strong);
  box-shadow: 0 12px 32px rgba(6, 50, 50, 0.35);
}

.hero-points,
.price-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.hero-card,
.service-card,
.check-card,
.stat-card,
.price-card,
.detail-card,
.contact-form,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.price-card:hover,
.check-card:hover,
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.hero-photo-grid {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.18), rgba(255, 255, 255, 0.7)),
    linear-gradient(180deg, rgba(228, 204, 178, 0.65), rgba(255, 255, 255, 0.45));
}

.hero-photo-grid article {
  min-height: 160px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: calc(var(--radius) - 10px);
  background:
    linear-gradient(180deg, rgba(47, 93, 80, 0.12), rgba(31, 64, 55, 0.72)),
    linear-gradient(135deg, rgba(216, 233, 223, 0.3), rgba(228, 204, 178, 0.35));
  color: #fff;
}

.hero-photo-grid span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
}

.hero-service,
.hero-inner {
  color: #fff;
}

.hero-service::before,
.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 38, 33, 0.92), rgba(47, 93, 80, 0.68)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%);
}

.hero-service .container,
.hero-inner .container {
  position: relative;
}

.hero-garden::after,
.hero-cleaning::after,
.hero-ndis::after,
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.hero-garden::after {
  background: repeating-linear-gradient(135deg, rgba(216, 233, 223, 0.16) 0, rgba(216, 233, 223, 0.16) 12px, transparent 12px, transparent 28px);
}

.hero-cleaning::after {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 18%), radial-gradient(circle at 70% 35%, rgba(216, 233, 223, 0.2), transparent 16%);
}

.hero-ndis::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.hero-home::after {
  background: radial-gradient(circle at right, rgba(47, 93, 80, 0.08), transparent 28%);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.section-heading-left {
  margin-bottom: 0;
}

.service-grid,
.stats-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.stat-card,
.detail-card {
  padding: 1.5rem;
}

.service-card p,
.stat-card span,
.detail-card p,
.detail-card a,
.footer-copy,
.footer-grid a,
.footer-grid p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 800;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

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

.check-card {
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-card::before {
  content: "";
  display: flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23063232'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-family: "Parkinsans", sans-serif;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.35rem;
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list details p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.cta-band {
  padding-bottom: 4rem;
}

.cta-band-inner {
  justify-content: space-between;
  padding: 1.7rem 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(228, 204, 178, 0.75), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.pricing-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.4rem;
  align-items: start;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.price-card {
  padding: 1.6rem;
  position: relative;
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.ndis-rate-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(47, 93, 80, 0.14);
}

.ndis-rate-note-text strong {
  display: block;
  color: var(--accent-strong);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.ndis-rate-note-text p {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
}

.ndis-rate-note a {
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }
}

.price-card-accent {
  background: linear-gradient(180deg, rgba(216, 233, 223, 0.9), rgba(255, 255, 255, 0.76));
}

.price-label {
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.price {
  margin: 1.2rem 0;
  font-family: "Parkinsans", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.price span {
  font-size: 1rem;
  font-family: "Parkinsans", sans-serif;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-form {
  padding: 1.8rem;
}

.form-heading {
  margin-bottom: 1.25rem;
}

.form-grid,
.radio-grid {
  display: grid;
  gap: 1rem;
}

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

.radio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label,
.contact-form legend {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.contact-form fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.radio-grid label,
.consent {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.radio-grid input,
.consent input {
  width: auto;
  margin: 0;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.detail-card h3 {
  margin-bottom: 0.5rem;
}

.detail-card a {
  font-weight: 800;
  color: var(--accent);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 36, 29, 0.12);
}

.footer-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.55rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 36, 29, 0.08);
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .service-grid,
  .service-grid-2,
  .stats-grid,
  .pricing-grid,
  .pricing-panel,
  .split-panel,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .check-grid,
  .form-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 4rem;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .cta-band-inner {
    align-items: flex-start;
  }
}

/* ── Entrance animations ─────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-copy .eyebrow {
    animation: fadeUp 0.5s ease both;
  }

  .hero-copy h1 {
    animation: fadeUp 0.55s 0.08s ease both;
  }

  .hero-copy .lead {
    animation: fadeUp 0.55s 0.16s ease both;
  }

  .hero-copy .hero-actions {
    animation: fadeUp 0.55s 0.24s ease both;
  }

  .hero-copy .hero-points {
    animation: fadeUp 0.55s 0.32s ease both;
  }

  .hero-right {
    animation: fadeUp 0.65s 0.2s ease both;
  }
}

/* FAQ open/close polish */
.faq-list details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list details summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

/* Nav CTA lime highlight */
.nav-cta {
  background: var(--lime) !important;
  color: var(--accent) !important;
  box-shadow: 0 6px 20px rgba(238, 255, 105, 0.35) !important;
}

.nav-cta:hover {
  background: #d9ef50 !important;
}

/* ── Photo placeholder slots ─────────────────────────────── */

.photo-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(216, 233, 223, 0.55), rgba(228, 204, 178, 0.35));
  border: 2px dashed rgba(47, 93, 80, 0.22);
  overflow: hidden;
  color: var(--muted);
  text-align: center;
}

.photo-slot svg {
  width: 38px;
  height: 38px;
  opacity: 0.4;
  flex-shrink: 0;
}

.photo-slot-label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  max-width: 28ch;
}

.photo-slot-sm  { min-height: 160px; }
.photo-slot-md  { min-height: 240px; }
.photo-slot-lg  { min-height: 340px; }
.photo-slot-xl  { min-height: 440px; }

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-row-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}

/* Hero service cards with photo slots */
.hero-photo-grid article {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: calc(var(--radius) - 8px);
  background: var(--surface-strong);
  color: var(--text);
  justify-content: flex-start;
}

.hero-photo-grid article .photo-slot {
  border-radius: calc(var(--radius) - 14px);
  flex: 1;
}

.hero-service-text {
  padding: 0.2rem 0.4rem 0.4rem;
}

.hero-service-text span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.hero-service-text strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .photo-row,
  .photo-row-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .photo-row-2 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .photo-row,
  .photo-row-feature {
    grid-template-columns: 1fr !important;
  }
}

/* ── Top bar ───────────────────────────────────────────── */

.top-bar {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0;
  letter-spacing: 0.01em;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.top-bar-item:hover { opacity: 1; }

.top-bar-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.top-bar-follow {
  opacity: 0.6;
  margin-right: 0.15rem;
}

.top-bar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  transition: background 0.2s;
}

.top-bar-social:hover { background: rgba(255, 255, 255, 0.26); }

.top-bar-social svg {
  width: 12px;
  height: 12px;
}

/* ── Header phone ──────────────────────────────────────── */

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.header-phone-icon svg {
  width: 19px;
  height: 19px;
}

.header-phone-text small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.header-phone-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Hero portrait (Lawnx-style right column) ──────────── */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-portrait {
  min-height: 400px;
  border-radius: 150px 150px var(--radius) var(--radius);
  flex: 1;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-mini-promo {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.hero-mini-promo strong {
  font-size: 0.95rem;
  color: var(--accent);
  line-height: 1.25;
}

.hero-mini-promo p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.hero-mini-promo a {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
}

/* ── Photo collage (Lawnx scattered style) ─────────────── */

.photo-collage {
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  gap: 1.5rem;
  align-items: center;
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collage-center {
  text-align: center;
  padding: 2rem 1rem;
}

.collage-center .button { margin-top: 1.25rem; }

.collage-col .photo-slot { border-radius: 18px; }

.collage-col:first-child .photo-slot:nth-child(1) { transform: rotate(-4deg); }
.collage-col:first-child .photo-slot:nth-child(2) {
  transform: rotate(3deg);
  min-height: 120px;
  margin-left: 1rem;
}
.collage-col:last-child .photo-slot:nth-child(1) {
  transform: rotate(3deg);
  min-height: 120px;
  margin-right: 1rem;
}
.collage-col:last-child .photo-slot:nth-child(2) { transform: rotate(-4deg); }

/* ── Stats banner (full-width photo background) ────────── */

.stat-banner {
  position: relative;
  overflow: hidden;
}

.stat-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stat-banner-bg .photo-slot {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, #0c3830, #1f5045);
}

.stat-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 16, 0.78);
  z-index: 1;
}

.stat-banner-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  color: white;
}

.stat-banner-content .eyebrow { color: var(--lime); }
.stat-banner-content h2 { color: white; }
.stat-banner-content .stats-grid { margin-top: 2rem; }

.stat-banner .stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-banner .stat-card strong,
.stat-banner .stat-card span { color: white; }

@media (max-width: 980px) {
  .top-bar-right { display: none; }
  .header-phone { display: none; }
  .photo-collage { grid-template-columns: 1fr; }
  .collage-col { display: none; }
}

@media (max-width: 720px) {
  .hero-right { display: none; }
}

/* ── Hero text contrast fixes (dark overlay heroes) ─────── */

.hero-service .eyebrow,
.hero-inner .eyebrow {
  color: var(--lime);
}

.hero-service .lead,
.hero-inner .lead {
  color: rgba(255, 255, 255, 0.85);
}

.hero-service .hero-points,
.hero-inner .hero-points {
  color: rgba(255, 255, 255, 0.78);
}

.hero-service .button-secondary,
.hero-inner .button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.9);
}

.hero-service .button-secondary:hover,
.hero-inner .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ── Trust strip (Two Gloves-inspired credentials bar) ──── */

.trust-strip {
  background: var(--accent);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--lime);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .trust-strip-inner {
    gap: 1.25rem;
    justify-content: flex-start;
  }
}

/* ── How it works steps ─────────────────────────────────── */

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

.step-card {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--lime);
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--muted); margin: 0; }

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

/* ── Header phone link hover ──────────────────────────────── */

.header-phone {
  cursor: pointer;
}

.header-phone:hover .header-phone-text strong {
  color: var(--accent);
}

/* ── Suburb tag list ─────────────────────────────────────── */

.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.suburb-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(6, 50, 50, 0.07);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

/* ── NDIS trust badge ─────────────────────────────────────── */

.ndis-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: white;
  margin-bottom: 2rem;
}

.ndis-trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.ndis-trust-badge-icon svg {
  width: 26px;
  height: 26px;
  color: var(--lime);
}

.ndis-trust-badge-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.ndis-trust-badge-text p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.82;
}

.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 200px;
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
}

.credential-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e6f0ed;
  flex-shrink: 0;
}

.credential-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.credential-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.credential-item-text span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ── WCAG 1.4.11 fix: lime on light backgrounds ──────────────
   Lime (#EEFF69) against cream (#f4efe6) ≈ 1.3:1 — fails non-text contrast.
   Heroes use .hero (not .section) so are unaffected by these overrides.
   ──────────────────────────────────────────────────────────── */

/* Primary button in light-background sections → dark teal */
.section .button:not(.button-dark):not(.button-secondary),
.section-alt .button:not(.button-dark):not(.button-secondary) {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 50, 50, 0.22);
}
.section .button:not(.button-dark):not(.button-secondary):hover,
.section-alt .button:not(.button-dark):not(.button-secondary):hover {
  background: var(--accent-strong);
  box-shadow: 0 12px 32px rgba(6, 50, 50, 0.35);
}

/* Step number pill → flip to dark teal bg, lime text (~12:1 contrast) */
.step-num {
  background: var(--accent);
  color: var(--lime);
}

/* ── About page founder hero ─────────────────────────────── */

.founder-col {
  display: flex !important;
}

.founder-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  flex: 1;
}

.founder-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.founder-card strong {
  display: block;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.18rem;
}

.founder-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.founder-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.founder-chip svg {
  width: 13px;
  height: 13px;
  color: var(--lime);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .founder-photo-wrap { min-height: 320px; }
}

/* Check card tick circle → dark teal bg, lime checkmark (~12:1 contrast) */
.check-card::before {
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23EEFF69'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
