/* ==========================================================================
   Wheely Clean Mobility
   Design system derived from the logo: lime-to-teal gradient, soft rounded
   shape language, generous whitespace, warm neutral grounds.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand — sampled directly from the supplied logo artwork */
  --lime: #c1e742;
  --spring: #86cc94;
  --teal: #4bb9be;
  /* Darkened teal for text and interactive states: the logo teal alone does
     not reach 4.5:1 on white, so it is never used for small text. */
  --teal-deep: #12727a;
  --teal-deeper: #0c5960;

  /* Brand navy, supplied by the client. Used for dark sections, the footer
     and CTA bands. Declared ONCE — a second declaration further down this
     block will silently override it. */
  --navy: #04032d;
  --navy-soft: #0d0b4a;

  /* Tints for surfaces and interactive states */
  --lime-wash: #f4fae2;
  --teal-wash: #e9f5f4;
  --brand-sweep: linear-gradient(100deg, var(--lime) 0%, var(--spring) 48%, var(--teal) 100%);

  --navy-line: rgba(255, 255, 255, 0.14);

  /* Neutrals — warm rather than blue-grey, to keep the tone human */
  --ink: #17211f;
  --slate: #414f4c;
  --mist: #5d6b68;
  --line: #dde8e2;
  --shell: #eef5f1;
  --shell-deep: #e0ebe5;
  --paper: #ffffff;

  --wash-mint: #eef7f2;
  --wash-teal: #eef7f7;
  --wash-lime: #f6fbe9;

  /* Type */
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;

  /* Space */
  --gutter: clamp(20px, 5vw, 64px);
  --measure: 1240px;
  --section-y: clamp(64px, 9vw, 128px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Elevation — soft and low, never a hard drop shadow */
  --lift-1: 0 1px 2px rgba(23, 33, 31, 0.04), 0 6px 20px rgba(23, 33, 31, 0.05);
  --lift-2: 0 2px 4px rgba(23, 33, 31, 0.05), 0 14px 40px rgba(23, 33, 31, 0.09);

  --radius: 18px;
  --radius-lg: 28px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------------------------------------------------------------------------
   HIDDEN + SVG SAFETY NETS
   --------------------------------------------------------------------------- */

/* Author rules such as `.btn-row { display: flex }` outrank the browser's
   built-in `[hidden] { display: none }`. Several config-driven elements rely on
   the hidden attribute to stay out of the page until a URL is supplied, so it
   has to win outright. */
[hidden] {
  display: none !important;
}

/* Every inline SVG also carries width/height attributes in the markup, so icons
   stay correctly sized even if this stylesheet never loads. These rules are the
   second line of defence: an SVG with no intrinsic size defaults to 300x150,
   which is how a small icon becomes a large black rectangle. */
svg {
  max-width: 100%;
  vertical-align: middle;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  flex-shrink: 0;
  display: inline-block;
}

.icon--sm {
  width: 15px;
  height: 15px;
}

.icon--lg {
  width: 26px;
  height: 26px;
}

html,
body {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.6rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--teal-deep);
  text-underline-offset: 3px;
  /* Email addresses and URLs are unbreakable strings and will push a narrow
     layout sideways unless they are allowed to wrap. break-word splits only
     when it genuinely must, so an address is not chopped mid-domain. */
  overflow-wrap: break-word;
}
a:hover {
  color: var(--teal-deeper);
}

ul,
ol {
  padding-left: 1.15em;
}
li {
  margin-bottom: 0.4em;
}

strong {
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: min(100%, var(--measure));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  width: min(100%, 780px);
}

.section {
  padding-block: var(--section-y);
}
.section--shell {
  background: var(--shell);
}
.section--mint {
  background:
    radial-gradient(90% 70% at 8% 0%, var(--lime-wash) 0%, transparent 60%),
    var(--wash-mint);
}
.section--ink {
  background: var(--navy);
  color: #fff;
}
.section--teal {
  background: var(--wash-teal);
}
.section--tight {
  padding-block: clamp(48px, 6vw, 84px);
}

.section-head {
  max-width: 52ch;
  margin-bottom: clamp(36px, 4.5vw, 60px);
}
.section-head--centred {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  color: var(--slate);
  font-size: 1.075rem;
  margin-bottom: 0;
}
.section--ink .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-sweep);
}
.section--ink .eyebrow {
  color: var(--lime);
}
.section-head--centred .eyebrow {
  justify-content: center;
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--lift-1);
}
.btn--primary:hover {
  background: var(--teal-deeper);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--lift-2);
}

.btn--brand {
  background: var(--teal-deep);
  color: #fff;
}
.btn--brand:hover {
  background: var(--teal-deeper);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.94rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head--centred + .btn-row,
.btn-row--centred {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.5vw, 20px);
  min-height: 76px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand img {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  min-width: 0;
}

.nav__link {
  position: relative;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 8px 2px;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-sweep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--ink);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 16px 8px 14px;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
  flex: none;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) {
  top: 0;
}
.nav-toggle__bars span:nth-child(2) {
  top: 5px;
}
.nav-toggle__bars span:nth-child(3) {
  top: 10px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* NAV BREAKPOINT — must match the value in assets/js/main.js.
   If they disagree, one width band ends up with no navigation at
   all, or with the dropdown stuck open over the page. */
@media (max-width: 1150px) {
  .nav-toggle {
    display: inline-flex;
  }
  .header-actions .btn--header {
    display: none;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--lift-2);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav[hidden] {
    display: none;
  }
  .nav__link {
    padding: 15px 4px;
    font-size: 1.06rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after {
    display: none;
  }
  .nav__cta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }
  .nav__cta .btn {
    width: 100%;
  }
}

@media (min-width: 1151px) {
  .nav__cta {
    display: none;
  }
  .nav[hidden] {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   6. Hero — full-bleed photograph with the copy over the wall on the left
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(460px, 62vw, 660px);
  padding-block: clamp(40px, 6vw, 76px);
  overflow: hidden;
  background: var(--shell);
  isolation: isolate;
}

/* The photograph fills the section. object-position keeps the technician and
   the banner in frame as the viewport narrows, while the plain wall stays on
   the left where the headline sits. */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
}

/* Readability scrim. Text is never placed directly on a photograph without
   one: the crop changes with viewport width, so the pixels behind the words
   cannot be relied on. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(244, 247, 245, 0.97) 0%,
    rgba(244, 247, 245, 0.95) 30%,
    rgba(244, 247, 245, 0.72) 44%,
    rgba(244, 247, 245, 0.18) 56%,
    rgba(244, 247, 245, 0) 66%
  );
}

.hero__inner {
  position: relative;
  width: min(100%, var(--measure));
}

.hero__copy {
  max-width: min(560px, 52%);
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}
.hero h1 .hero__accent {
  background: linear-gradient(100deg, var(--teal-deep), var(--teal-deeper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 44ch;
  margin-bottom: 26px;
}

.hero__place {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 18px 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--lift-1);
}
.hero__place .icon {
  color: var(--teal-deep);
}

/* NDIS badge now sits within the copy column, so it never covers the branded
   banner in the photograph. */
.hero .ndis-badge {
  position: static;
  display: inline-flex;
  margin: 26px 0 0;
}

/* Below roughly 900px the crop no longer leaves usable empty wall, so the
   scrim becomes an overall wash and the copy spans the full width. */
@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-block: clamp(36px, 8vw, 56px);
  }
  .hero__copy {
    max-width: none;
  }
  .hero__photo img {
    object-position: 66% 38%;
  }
  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(244, 247, 245, 0.95) 0%,
      rgba(244, 247, 245, 0.93) 60%,
      rgba(244, 247, 245, 0.9) 100%
    );
  }
}

.hero-trust {
  padding-top: clamp(28px, 3.5vw, 44px);
}

/* Trust bar — sits directly below the hero. */
.trustbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  background: #fff;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.4;
  transition: background-color 0.25s var(--ease);
}
.trustbar__item:hover {
  background: var(--teal-wash);
}
.trustbar__item .icon {
  color: var(--teal-deep);
}

/* --------------------------------------------------------------------------
   7. Cards & grids
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.grid--4 {
  /* Explicit tracks, not auto-fit: with four items an intermediate count leaves
     the last card stranded on its own row beside empty space. */
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--lift-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-2);
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  color: var(--slate);
  font-size: 1rem;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--wash-lime), var(--wash-teal));
  color: var(--teal-deeper);
}
.card__icon svg {
  width: 26px;
  height: 26px;
}

/* Benefit cards get a gradient hairline across the top on hover */
.card--benefit {
  position: relative;
  overflow: hidden;
}
.card--benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-sweep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card--benefit:hover::before {
  transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   8. Service & pricing cards
   -------------------------------------------------------------------------- */

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--lift-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-2);
}
.service-card--feature {
  border-color: var(--teal);
  border-width: 2px;
  background: linear-gradient(180deg, var(--wash-teal) 0%, #fff 46%);
}

.service-card__band {
  height: 5px;
  background: var(--brand-sweep);
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(24px, 2.6vw, 34px);
}
.service-card__tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--wash-mint);
  color: var(--teal-deeper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 6px;
}
.service-card__amount {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.service-card__unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mist);
}
.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--mist);
}
.service-card__meta li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}
.service-card__meta svg {
  flex: none;
  color: var(--teal-deep);
}
.service-card__body p {
  color: var(--slate);
  font-size: 1rem;
}
.service-card__includes {
  margin: 4px 0 24px;
  padding: 0;
  list-style: none;
  font-size: 0.97rem;
  color: var(--slate);
}
.service-card__includes li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 8px;
}
.service-card__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 15px;
  height: 8px;
  border-left: 2.5px solid var(--teal-deep);
  border-bottom: 2.5px solid var(--teal-deep);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.service-card__foot {
  margin-top: auto;
}
.service-card__foot .btn {
  width: 100%;
}

.pricing-note {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--wash-mint);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.pricing-note p {
  color: var(--slate);
  max-width: 68ch;
}
.pricing-note p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   9. Process / steps
   -------------------------------------------------------------------------- */

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  /* Explicit tracks rather than auto-fit: the five steps must land on one row
     at desktop width, otherwise the fifth is stranded alone beside a large
     empty area. */
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1180px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
  }
}
.steps li {
  position: relative;
  margin: 0;
  padding: 26px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-sweep);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}
.steps h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.steps p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

/* Timeline variant for the process page */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: phase;
}
.timeline li {
  position: relative;
  margin: 0;
  padding: 0 0 clamp(30px, 4vw, 46px) clamp(52px, 6vw, 76px);
  border-left: 2px solid var(--line);
}
.timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.timeline li::before {
  counter-increment: phase;
  content: counter(phase, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal-deep);
}
.timeline h3 {
  margin-bottom: 8px;
}
.timeline p {
  color: var(--slate);
  max-width: 62ch;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Process gallery (the photographic sequence)
   -------------------------------------------------------------------------- */

.sequence {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}
.sequence__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sequence__item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  background: #fff;
}
.sequence__caption {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}
.sequence__step {
  display: block;
  margin-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.sequence__caption p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--slate);
}

/* Before / after slider */
.compare {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  touch-action: pan-y;
}
@media (min-width: 700px) {
  .compare {
    aspect-ratio: 16 / 10;
    /* The photographs are matted to white, so an unbounded frame reads as a
       large empty panel. Capping the height keeps the chair the subject. */
    max-height: 540px;
  }
}
.compare__layer {
  position: absolute;
  inset: 0;
}
.compare__layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.compare__layer--after {
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.compare__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.compare__tag--after {
  left: auto;
  right: 16px;
  color: var(--teal-deeper);
}
.compare__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.compare__seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  z-index: 4;
  width: 3px;
  margin-left: -1.5px;
  background: var(--brand-sweep);
  pointer-events: none;
}
.compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--lift-2);
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.08em;
}
.compare__range:focus-visible ~ .compare__seam .compare__handle {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
}
.figure-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--mist);
}

/* --------------------------------------------------------------------------
   11. Split feature (image + copy)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap: clamp(28px, 4.5vw, 68px);
  align-items: center;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.split--reverse .split__media {
  order: 2;
}
@media (max-width: 780px) {
  .split--reverse .split__media {
    order: 0;
  }
}

.checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--slate);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--wash-mint);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.52em;
  width: 10px;
  height: 5px;
  border-left: 2.5px solid var(--teal-deep);
  border-bottom: 2.5px solid var(--teal-deep);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   12. NDIS panel
   -------------------------------------------------------------------------- */

.section--ink .ndis-panel {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  border-color: transparent;
}
.ndis-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(24px, 3.5vw, 52px);
  padding: clamp(28px, 4vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-1);
}
.ndis-panel {
  color: var(--ink);
}
.ndis-panel .eyebrow {
  color: var(--teal-deep);
}
.ndis-panel .funding-list span {
  color: var(--slate);
}
.ndis-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-sweep);
}
.ndis-panel h2 {
  margin-top: 0;
}

.funding-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.funding-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.funding-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.funding-list strong {
  display: block;
  margin-bottom: 4px;
}
.funding-list span {
  color: var(--slate);
  font-size: 0.98rem;
}

.callout {
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: var(--radius);
  background: var(--wash-mint);
  border-left: 4px solid var(--teal);
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout--plain {
  background: var(--shell);
  border-left-color: var(--line);
}

/* --------------------------------------------------------------------------
   13. FAQ (native details/summary — keyboard accessible without JS)
   -------------------------------------------------------------------------- */

.faq {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:hover {
  color: var(--teal-deep);
}
.faq__sign {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--wash-mint);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  margin: -1px 0 0 -5px;
  border-radius: 2px;
  background: var(--teal-deeper);
  transition: transform 0.3s var(--ease);
}
.faq__sign::after {
  transform: rotate(90deg);
}
.faq__item[open] .faq__sign::after {
  transform: rotate(0deg);
}
.faq__answer {
  padding: 0 4px 26px;
  max-width: 72ch;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Reviews
   -------------------------------------------------------------------------- */

.review-grid {
  display: grid;
  /* A 420px minimum yields two columns at desktop width, so four quotes form a
     balanced 2x2 rather than a row of three plus a stranded fourth. */
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}
.review {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--lift-1);
}
/* On the dark ground the cards lift rather than outline. */
.section--ink .review {
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
.section--ink .review__quote,
.section--ink .review__name {
  color: var(--ink);
}
.section--ink .review__role {
  color: var(--mist);
}
.section--ink .admin-note {
  /* Solid, not translucent: a semi-transparent panel makes contrast hard to
     verify and hard to reason about. */
  background: #14133f;
  border-color: var(--lime);
  color: #eaf6f1;
}
.section--ink .admin-note strong {
  color: #fff;
}
.section--ink .admin-note code {
  color: var(--lime);
}
.review__quote {
  margin: 0 0 22px;
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.review__who {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review__name {
  display: block;
  font-weight: 700;
}
.review__role {
  display: block;
  font-size: 0.9rem;
  color: var(--mist);
}

.admin-note {
  display: block;
  padding: 18px 22px;
  margin-top: 22px;
  border: 1px dashed var(--teal);
  border-radius: var(--radius);
  background: var(--wash-mint);
  font-size: 0.92rem;
  color: var(--teal-deeper);
}
.admin-note strong {
  display: block;
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */

.form {
  display: grid;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-weight: 600;
  font-size: 0.96rem;
}
.field .hint {
  font-size: 0.86rem;
  color: var(--mist);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235d6b68' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #c4d2c8;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(18, 114, 122, 0.16);
}
.field--required label::after {
  content: " *";
  color: var(--teal-deeper);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  background: var(--shell);
  border-radius: 12px;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 24px;
  height: 24px;
  margin: 2px 0 0;
  accent-color: var(--teal-deep);
}
.consent label {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--slate);
}

.form-status {
  padding: 18px 22px;
  border-radius: 12px;
  font-weight: 600;
}
.form-status[hidden] {
  display: none;
}
.form-status--ok {
  background: var(--wash-mint);
  color: var(--teal-deeper);
  border: 1px solid var(--teal);
}
.form-status--err {
  background: #fdf1ec;
  color: #8a3418;
  border: 1px solid #e6b8a5;
}

/* --------------------------------------------------------------------------
   16. Booking
   -------------------------------------------------------------------------- */

.booking-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  min-height: 200px;
}
.booking-embed iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
}

.booking-fallback {
  padding: clamp(28px, 4vw, 52px);
  text-align: center;
  background: var(--wash-mint);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.booking-fallback h3 {
  margin-bottom: 10px;
}
.booking-fallback p {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--slate);
}
.booking-fallback .btn-row {
  justify-content: center;
  margin-top: 24px;
}

.summary-box {
  padding: clamp(22px, 2.6vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--lift-1);
}
.summary-box dl {
  margin: 0;
  display: grid;
  gap: 14px;
}
.summary-box .summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.summary-box .summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.summary-box dt {
  color: var(--mist);
  font-size: 0.94rem;
}
.summary-box dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}
.summary-box .summary-total dd {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding-block: clamp(56px, 7vw, 100px);
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-sweep);
}
.cta-band h2 {
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band p {
  max-width: 52ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.cta-band .btn-row {
  justify-content: center;
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   18. Resources / articles
   -------------------------------------------------------------------------- */

.article-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--lift-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-2);
  color: inherit;
}
.article-card__topic {
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.article-card h3 {
  margin-bottom: 10px;
}
.article-card p {
  color: var(--slate);
  font-size: 0.99rem;
  margin-bottom: 18px;
}
.article-card__more {
  margin-top: auto;
  font-weight: 700;
  color: var(--teal-deep);
}

.prose {
  max-width: 68ch;
}
.prose h2 {
  margin-top: 1.8em;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.prose h3 {
  margin-top: 1.6em;
}
.prose > :first-child {
  margin-top: 0;
}
.prose ul,
.prose ol {
  color: var(--slate);
  margin-bottom: 1.2em;
}
.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--teal);
  color: var(--slate);
  font-size: 1.08rem;
}

.page-hero {
  padding-block: clamp(40px, 5vw, 76px) clamp(30px, 4vw, 56px);
  background: linear-gradient(180deg, var(--wash-mint), #fff);
}
.page-hero h1 {
  max-width: 24ch;
}
.page-hero .lede {
  max-width: 58ch;
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--mist);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  margin: 0;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--mist);
}

.related {
  margin-top: clamp(44px, 5vw, 70px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding-block: clamp(48px, 6vw, 78px) 34px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 48px);
}
@media (min-width: 620px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .site-footer__grid {
    /* The contact column carries a long email address, so it gets the widest
       of the link tracks. */
    grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  }
}
.site-footer img.footer-logo {
  width: 210px;
  margin-bottom: 20px;
}
.site-footer h2 {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 10px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  overflow-wrap: break-word;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-blurb {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.6);
}
.footer-place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  color: #fff;
}
.footer-place svg {
  color: var(--lime);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-row a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social-row a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(38px, 5vw, 58px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__base ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__base li {
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. Mobile sticky CTA
   -------------------------------------------------------------------------- */

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--lift-2);
  transform: translateY(140%);
  transition: transform 0.35s var(--ease);
}
.mobile-cta.is-visible {
  transform: none;
}
.mobile-cta .btn {
  flex: 1;
  min-height: 48px;
  padding: 12px 16px;
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 84px;
  }
}

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
/* If JS never runs, content must still be visible. */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   22. Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .card:hover,
  .service-card:hover,
  .article-card:hover,
  .btn:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   23. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header,
  .mobile-cta,
  .cta-band,
  .site-footer {
    display: none;
  }
  body {
    padding-bottom: 0;
    font-size: 12pt;
  }
}

/* ==========================================================================
   BOOKING WIZARD
   Five steps rendered by /assets/js/booking.js. Uses the same tokens, radii and
   shadows as the rest of the site so it reads as part of the page rather than
   an embedded widget.
   ========================================================================== */

/* --- Progress ----------------------------------------------------------- */

.bk-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  list-style: none;
  margin: 0 0 clamp(24px, 3vw, 38px);
  padding: 0;
  counter-reset: bk;
}
.bk-steps__item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 600;
}
.bk-steps__item.is-current {
  background: linear-gradient(120deg, var(--lime-wash), var(--teal-wash));
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(18, 114, 122, 0.22);
}
.bk-steps__item.is-done {
  color: var(--teal-deep);
}
.bk-steps__dot {
  display: grid;
  place-items: center;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--shell-deep);
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
}
.bk-steps__item.is-current .bk-steps__dot {
  background: var(--brand-sweep);
  color: var(--ink);
}
.bk-steps__item.is-done .bk-steps__dot {
  background: var(--teal-deep);
  color: transparent;
  position: relative;
}
.bk-steps__item.is-done .bk-steps__dot::after {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  width: 5px;
  height: 9px;
  margin: -5px 0 0 -3px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.bk-steps__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .bk-steps__label {
    display: none;
  }
  .bk-steps__item {
    flex: 0 0 auto;
    padding: 6px;
  }
  .bk-steps__item.is-current .bk-steps__label {
    display: inline;
  }
}

/* --- Layout ------------------------------------------------------------- */

.bk-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}
@media (min-width: 900px) {
  .bk-body {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
  /* The summary follows the customer down the page, so the price and the
     chosen time stay in view while they scroll a long list of slots. */
  .bk-summary {
    position: sticky;
    top: 96px;
  }
  .bk-body--single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
  }
}

.bk-panel {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-1);
  overflow: hidden;
}
.bk-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand-sweep);
}

.bk-step__title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.bk-step__title:focus {
  outline: none;
}
.bk-step__intro {
  margin: 0 0 26px;
  color: var(--slate);
}

.bk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 34px);
}
.bk-actions .btn {
  flex: 1 1 auto;
}
@media (min-width: 560px) {
  .bk-actions .btn {
    flex: 0 0 auto;
  }
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Service choice ----------------------------------------------------- */

.bk-services {
  display: grid;
  gap: 12px;
}
.bk-service {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
@media (min-width: 560px) {
  .bk-service {
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: stretch;
  }
}
.bk-service__media {
  display: block;
  background: var(--teal-wash);
}
.bk-service__media img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: cover;
  display: block;
}
.bk-service__body {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px 22px;
}
.bk-service:hover {
  border-color: var(--teal);
  background: var(--lime-wash);
}
.bk-service.is-selected {
  border-color: var(--teal-deep);
  background: linear-gradient(130deg, var(--lime-wash), var(--teal-wash));
  box-shadow: var(--lift-1);
}
.bk-service.is-selected::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--teal-deep)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12.5 5.2 5.2L20 6.9'/%3E%3C/svg%3E")
    center / 14px no-repeat;
  box-shadow: 0 0 0 3px #fff;
}
.bk-service__name {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.bk-service__desc {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.5;
}
.bk-service__meta {
  margin-top: 4px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deeper);
}


/* --- Calendar ----------------------------------------------------------- */

.bk-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.bk-cal__title {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 700;
}
.bk-cal__nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.bk-cal__nav:hover:not([disabled]) {
  border-color: var(--teal-deep);
  background: var(--teal-wash);
}
.bk-cal__nav[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.bk-cal__grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.bk-cal__grid th {
  padding: 10px 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bk-cal__grid th abbr {
  text-decoration: none;
}
.bk-cal__cell {
  padding: 3px;
  text-align: center;
}
.bk-cal__day {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  background: var(--wash-teal);
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.bk-cal__day:hover:not([disabled]) {
  background: var(--wash-lime);
  border-color: var(--teal);
}
.bk-cal__day.is-selected {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
  box-shadow: 0 0 0 3px var(--wash-lime);
}
.bk-cal__day.is-closed,
.bk-cal__day[disabled] {
  background: transparent;
  color: #b3bdb7;
  cursor: not-allowed;
}

/* --- Times -------------------------------------------------------------- */

.bk-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(104px, 100%), 1fr));
  gap: 10px;
}
.bk-time {
  min-height: 54px;
  padding: 12px 8px;
  background: var(--wash-teal);
  border: 2px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
    color 0.18s var(--ease);
}
.bk-time:hover {
  background: var(--wash-lime);
  border-color: var(--teal);
}
.bk-time.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* --- Loading and empty states ------------------------------------------ */

.bk-loading,
.bk-empty {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: clamp(32px, 5vw, 56px) 20px;
  text-align: center;
  color: var(--slate);
}
.bk-empty {
  background: var(--shell);
  border-radius: var(--radius);
}
.bk-loading p,
.bk-empty p {
  margin: 0;
  max-width: 44ch;
}
.bk-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--shell-deep);
  border-top-color: var(--teal-deep);
  border-radius: 999px;
  animation: bk-spin 0.9s linear infinite;
}
@keyframes bk-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Summary ------------------------------------------------------------ */

.bk-summary {
  padding: clamp(22px, 2.6vw, 30px);
  background: var(--wash-teal);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-image: var(--brand-sweep) 1;
  border-radius: var(--radius);
}
@media (min-width: 900px) {
  .bk-summary {
    position: sticky;
    /* Clears the sticky site header. */
    top: 96px;
  }
}
.bk-summary__title {
  margin: 0 0 18px;
  font-size: 1.05rem;
}
.bk-summary dl,
.bk-receipt {
  margin: 0;
  display: grid;
  gap: 12px;
}
.bk-summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.bk-summary__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.bk-summary__row dt {
  color: var(--mist);
  font-size: 0.93rem;
}
.bk-summary__row dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}
.bk-summary__total dd {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--teal-deeper);
}
.bk-summary__note {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: var(--mist);
}

/* --- Confirmation ------------------------------------------------------- */

.bk-done {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.bk-done__tick {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--brand-sweep);
  color: var(--navy);
}
.bk-receipt {
  margin: 28px 0;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--shell);
  border-radius: var(--radius);
  text-align: left;
}
.bk-done__note {
  color: var(--mist);
  font-size: 0.93rem;
  margin-bottom: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .bk-spinner {
    animation-duration: 2.4s;
  }
}

/* Preview banner shown while the live calendar is not yet connected. */
.bk-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  margin: 0 0 clamp(18px, 2vw, 26px);
  padding: 14px 18px;
  background: linear-gradient(120deg, var(--lime-wash), var(--teal-wash));
  border: 1px solid var(--teal);
  border-radius: 12px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--navy);
}
.bk-preview strong {
  padding: 1px 9px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
}


/* ==========================================================================
   NDIS BADGE
   Sits in the top right of the hero image. The logo file itself is unmodified.
   ========================================================================== */

.hero__media {
  position: relative;
}
.ndis-badge {
  position: absolute;
  /* Bottom left sits over the plain wall in the hero photograph, so the badge
     does not cover the branded banner behind the technician. */
  bottom: clamp(10px, 1.6vw, 18px);
  left: clamp(10px, 1.6vw, 18px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--lift-1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ndis-badge img {
  width: 62px;
  height: auto;
  flex: none;
}
.ndis-badge span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  max-width: 12ch;
}
@media (max-width: 480px) {
  .ndis-badge {
    padding: 8px 12px 8px 9px;
    gap: 8px;
  }
  .ndis-badge img { width: 50px; }
  .ndis-badge span { font-size: 0.82rem; }
}

/* Figures inside article prose. */
.prose-figure {
  margin: clamp(28px, 3.5vw, 44px) 0;
}
.prose-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--shell);
}
.prose-figure figcaption {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 3px solid;
  border-image: var(--brand-sweep) 1;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--mist);
}

/* Wide figure: breaks out of the narrow reading column so a detailed
   infographic can be shown as large as the page allows. */
.prose-figure--wide {
  width: min(1040px, calc(100vw - 2 * var(--gutter)));
  margin-left: 50%;
  transform: translateX(-50%);
}
.prose-figure--wide img {
  background: #fff;
}
.prose-figure figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  justify-content: space-between;
}
.prose-figure figcaption > span {
  flex: 1 1 320px;
  min-width: 0;
}
.prose-figure figcaption .btn {
  flex: none;
}

/* ==========================================================================
   PHOTO COMPONENTS
   ========================================================================== */

/* Two stacked photographs in a split media column. */
.split__media--pair {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  grid-template-columns: 1fr 1fr;
}
.split__media--pair img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Work gallery — portrait shots in a responsive grid. */
.photo-grid {
  display: grid;
  /* Nine photographs: explicit tracks give a clean 3x3 rather than an
     auto-fit row that strands the last three. */
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: clamp(28px, 3.5vw, 44px);
}
@media (min-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.photo-grid figure {
  margin: 0;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--shell);
  transition: transform 0.35s var(--ease);
}
.photo-grid figure:hover img {
  transform: scale(1.02);
}

/* Star rating shown alongside a client comment. */
.stars {
  display: flex;
  gap: 3px;
  margin: 0 0 14px;
  color: #f0a500;
  line-height: 1;
}
.stars svg {
  width: 19px;
  height: 19px;
  flex: none;
}

/* NDIS logo used inside a content section rather than as a hero badge. */
.ndis-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  padding: 12px 18px 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--lift-1);
  max-width: max-content;
}
.ndis-inline img {
  width: 66px;
  height: auto;
  flex: none;
}
.ndis-inline span {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
.section--ink .ndis-inline {
  background: rgba(255, 255, 255, 0.96);
}

/* Equipment cards on the services page carry a photograph. */
.card--equipment {
  padding: 0;
  overflow: hidden;
}
.card--equipment img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--shell);
}
.card--equipment .card__body {
  padding: clamp(20px, 2.2vw, 28px);
}
