/* ============================================================
   A Plus Care — design system
   Palette: sage (calm, growth) + plum (warmth, dignity)
   Type: Fraunces (display) / Montserrat (body & UI)
   Signature: the rounded "plus" device, from the brand name
   ============================================================ */

:root {
  --paper:      #FBFCFB;
  --mist:       #EEF4EF;
  --mist-deep:  #E2EDE5;
  --sage:       #90A694;
  --sage-mid:   #6E8B76;
  --sage-deep:  #4F6B57;
  --sage-dark:  #35493D;
  --plum:       #A069B0;
  --plum-deep:  #7E4B8E;
  --plum-tint:  #F6EFF8;
  --plum-line:  #E4D2EA;
  --ink:        #26302B;
  --body:       #4C5A51;
  --muted:      #7E8C83;
  --line:       #DDE7DF;
  --white:      #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1160px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(72px, 10vw, 128px);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px -30px rgba(38, 48, 43, .28);
  --shadow-sm: 0 10px 28px -16px rgba(38, 48, 43, .22);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--plum-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sage-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.01em;
}

::selection { background: var(--plum); color: var(--white); }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: var(--white); }

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

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }
.section--mist { background: var(--mist); }
.section--tint { background: var(--plum-tint); }
.section--dark { background: var(--sage-dark); color: #C9D6CD; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

/* ---------- The plus device ---------- */

.plus {
  display: inline-block;
  width: .62em;
  height: .62em;
  position: relative;
  flex: none;
}
.plus::before, .plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  border-radius: 99px;
}
.plus::before { width: 100%; height: 30%; }
.plus::after  { width: 30%; height: 100%; }

/* ---------- Eyebrow / section headers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 22px;
}
.eyebrow .plus { color: var(--plum); }
.section--dark .eyebrow { color: var(--sage); }

.section-title {
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 16ch;
  margin-bottom: 20px;
}
.section-title em, .hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--plum-deep);
}
.section--dark .section-title em { color: #CE9FDC; }

.lead {
  font-size: clamp(17px, 2vw, 19.5px);
  line-height: 1.75;
  max-width: 58ch;
}

/* ---------- Header / nav ---------- */

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 10px 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--plum-deep); background: var(--plum-tint); }
.nav-links a[aria-current="page"] { color: var(--plum-deep); }
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: var(--plum);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--sage-deep);
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }
.nav-cta .plus { color: #BFD6C6; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  color: var(--ink);
  margin-left: auto;
}
.nav-toggle svg { display: block; }

@media (max-width: 1240px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 24px;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 15px; }
  .nav-cta { margin-top: 10px; justify-content: center; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 110px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-title {
  font-size: clamp(42px, 6.2vw, 74px);
  margin-bottom: 26px;
}

.hero-sub {
  font-size: clamp(16.5px, 1.8vw, 19px);
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 99px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .55; transform: none; cursor: wait; }
.btn--plum { background: var(--plum-deep); color: var(--white); box-shadow: 0 16px 34px -18px rgba(126, 75, 142, .65); }
.btn--plum:hover { background: var(--plum); color: var(--white); }
.btn--ghost { background: transparent; color: var(--sage-deep); box-shadow: inset 0 0 0 2px var(--sage); }
.btn--ghost:hover { background: var(--mist); color: var(--sage-dark); }
.btn--light { background: var(--white); color: var(--sage-dark); }
.btn--light:hover { background: var(--mist); }

/* Hero collage + ambient plus watermark */

.hero-visual { position: relative; }

.hero-plus-bg {
  position: absolute;
  width: clamp(260px, 30vw, 420px);
  height: clamp(260px, 30vw, 420px);
  top: -8%;
  right: -10%;
  color: var(--mist-deep);
  z-index: 0;
  animation: plus-drift 46s linear infinite;
}
.hero-plus-bg .plus { width: 100%; height: 100%; }
.hero-plus-bg .plus::before, .hero-plus-bg .plus::after { border-radius: 26px; }

@keyframes plus-drift {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.collage img, .collage picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.collage picture { display: block; }
.collage .tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.collage .wide { aspect-ratio: 3/2.1; }
.collage > :nth-child(2) { transform: translateY(26px); }

.collage-badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.collage-badge .plus { color: var(--plum); width: 22px; height: 22px; }
.collage-badge strong { display: block; font-size: 14.5px; color: var(--ink); line-height: 1.3; }
.collage-badge span { font-size: 12.5px; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .collage > :nth-child(2) { transform: none; }
  .collage-badge { left: 12px; bottom: 12px; }
}

/* ---------- Trust strip ---------- */

.trust {
  border-block: 1px solid var(--line);
  padding-block: 26px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-dark);
}
.trust-item .plus { color: var(--plum); width: 14px; height: 14px; }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--plum-line);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--sage-deep);
  margin-bottom: 22px;
}
.card:nth-child(3n+2) .card-icon { background: var(--plum-tint); color: var(--plum-deep); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 15px; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--plum-deep);
  text-decoration: none;
}
.card-link:hover { color: var(--sage-deep); }
.card-link::after { content: "→"; transition: transform .25s; }
.card-link:hover::after { transform: translateX(4px); }

@media (max-width: 900px) { .card-grid, .card-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid, .card-grid--2 { grid-template-columns: 1fr; } }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.split--flip > .split-media { order: 2; }
.split-media img, .split-media picture img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.2; object-fit: cover; width: 100%; }
.split-media picture { display: block; }
.split-body h2 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 18px; }
.split-body p + p { margin-top: 14px; }

.tick-list { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.tick-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; font-weight: 500; color: var(--ink); }
.tick-list .plus { color: var(--plum); width: 15px; height: 15px; margin-top: 5px; }

@media (max-width: 860px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip > .split-media { order: 0; }
}

/* ---------- Values (About) ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-block: 1px solid var(--line);
}
.value {
  padding: 34px 28px;
  border-bottom: 1px solid var(--line);
}
.value:nth-child(3n+1) { border-left: 0; }
.value h3 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.value h3 .plus { color: var(--plum); width: 13px; height: 13px; }
.value p { font-size: 14.5px; }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
@media (min-width: 801px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .value { border-left: 1px solid var(--line); }
  .value:nth-child(3n+1) { border-left: 0; }
  .value:nth-last-child(-n+3) { border-bottom: 0; }
}

/* ---------- Stats band ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 480;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: 13.5px; letter-spacing: .04em; color: #A9BCAF; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Steps ---------- */

.steps { margin-top: 52px; display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  color: var(--plum);
  line-height: 1;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { max-width: 62ch; font-size: 15.5px; }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Jobs ---------- */

.job {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  margin-top: 26px;
}
.job h3 { font-size: 26px; margin-bottom: 6px; }
.job > p { font-size: 15.5px; margin: 8px 0 14px; max-width: 62ch; }
.job-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-deep);
  background: var(--plum-tint);
  border-radius: 99px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.job h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 22px 0 10px;
}
.job ul { padding-left: 20px; display: grid; gap: 7px; font-size: 15px; }

/* ---------- Application checklist ---------- */

.apply-pack {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: 40px;
}
.apply-check {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.apply-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.apply-check .plus { color: var(--plum); width: 14px; height: 14px; margin-top: 4px; }
.apply-note { margin-top: 16px; font-size: 14.5px; }
@media (max-width: 860px) { .apply-pack { grid-template-columns: 1fr; } }

/* ---------- 3D partner cards ---------- */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  perspective: 1400px;
}
.card--3d {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 18px 40px -24px rgba(38, 48, 43, .4),
    0 40px 70px -48px rgba(126, 75, 142, .28);
  transform: translateZ(0) rotateX(2deg);
  transform-style: preserve-3d;
}
.card--3d::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 10px;
  background: var(--mist-deep);
  border-radius: inherit;
  z-index: -1;
  transform: translateZ(-24px);
  opacity: .55;
}
.card--3d:hover {
  transform: translateY(-8px) rotateX(0deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 28px 50px -22px rgba(38, 48, 43, .38),
    0 48px 80px -40px rgba(126, 75, 142, .32);
}
@media (max-width: 900px) { .partner-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .card--3d, .card--3d:hover { transform: none; }
}

.quote-list { display: grid; gap: 16px; margin-top: 36px; max-width: 760px; }
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
}
.quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.quote cite span { color: var(--sage-mid); }

.rate-box {
  margin-top: 36px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.rate-box h3 { font-size: 22px; margin-bottom: 10px; }
.rate-box p { font-size: 15.5px; max-width: 68ch; }

.photo-credit {
  font-size: 12.5px;
  color: #8FA396;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; display: grid; gap: 8px; margin-top: 34px; }
.contact-list a, .contact-list .cl-static {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  transition: background .25s;
}
.contact-list a:hover { background: var(--mist); color: var(--sage-dark); }
.contact-list .cl-ic {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--sage-deep);
}
.contact-list small { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px);
}
.form-card h2 { font-size: 28px; margin-bottom: 8px; }
.form-card > p { font-size: 14.5px; margin-bottom: 26px; }

.field { margin-bottom: 18px; }
fieldset.field {
  border: 0;
  padding: 0;
  min-inline-size: 0;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(160, 105, 176, .14);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field legend {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 10px;
}
.field .req,
.field .opt,
.field legend .opt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-left: 6px;
}
.field .req { color: var(--plum-deep); }
.field .opt, .field legend .opt { color: var(--muted); font-weight: 600; letter-spacing: .02em; text-transform: none; white-space: nowrap; }

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice {
  position: relative;
  cursor: pointer;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.choice span {
  display: block;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.choice:hover span { border-color: var(--plum-line); background: var(--plum-tint); }
.choice input:checked + span {
  background: var(--plum-tint);
  border-color: var(--plum);
  color: var(--plum-deep);
}
.choice input:focus-visible + span {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
}

.referral-steps {
  list-style: none;
  display: grid;
  gap: 22px;
  margin: 28px 0 32px;
}
.referral-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.referral-steps h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.referral-steps p { font-size: 15px; color: var(--body); }
.referral-steps .step-num {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--plum-tint);
  color: var(--plum-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

#referral { scroll-margin-top: 96px; }
.form-ok {
  display: none;
  background: var(--mist);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-ok.show { display: block; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band .section-title { margin-inline: auto; }
.cta-band .lead { margin: 0 auto 38px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--sage-dark);
  color: #B7C6BB;
  padding: clamp(56px, 7vw, 88px) 0 0;
  position: relative;
  overflow: hidden;
}
.footer-plus-bg {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  bottom: -110px;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
}
.footer-plus-bg .plus { width: 100%; height: 100%; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 44px;
  padding-bottom: 52px;
  position: relative;
}
.site-footer img.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.site-footer p { font-size: 14.5px; max-width: 40ch; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: #D5DFD8; text-decoration: none; font-size: 14.5px; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-contact { list-style: none; display: grid; gap: 12px; font-size: 14.5px; }
.footer-contact a { color: var(--white); font-weight: 600; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact span { color: #8FA396; }

.footer-ndis { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.footer-ndis img { width: 54px; height: 54px; border-radius: 10px; background: #fff; padding: 4px; }
.footer-ndis span { font-size: 13px; color: #9DB3A4; max-width: 24ch; }

.footer-follow { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.footer-follow span { font-size: 13px; color: #9DB3A4; margin-right: 4px; }
.footer-follow a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .09);
  color: #D5DFD8;
  transition: background .25s, color .25s, transform .25s;
}
.footer-follow a:hover { background: var(--plum); color: var(--white); transform: translateY(-2px); }
.footer-follow a.follow-learn {
  width: auto;
  height: auto;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  background: transparent;
  color: #D5DFD8;
  text-decoration: none;
}
.footer-follow a.follow-learn:hover { background: var(--plum); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px;
  font-size: 13px;
  color: #8FA396;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  position: relative;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: var(--mist);
  padding-block: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .plus-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -70px;
  top: -90px;
  color: var(--mist-deep);
  z-index: 0;
  pointer-events: none;
}
.page-hero .plus-bg .plus { width: 100%; height: 100%; }
.page-hero h1 { font-size: clamp(34px, 5.4vw, 62px); max-width: min(18ch, 100%); }
.page-hero h1 br { display: block; content: ""; }
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--plum-deep); }
.page-hero .lead { margin-top: 18px; }
.page-hero--plum { background: var(--plum-tint); }
.page-hero--plum .plus-bg { color: var(--plum-line); }
@media (max-width: 640px) {
  .page-hero .plus-bg {
    width: 200px;
    height: 200px;
    right: -80px;
    top: -100px;
    opacity: .55;
  }
}

/* ---------- Reveal on scroll ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: .08s; }
  .reveal[data-delay="2"] { transition-delay: .16s; }
  .reveal[data-delay="3"] { transition-delay: .24s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-plus-bg { animation: none; }
}

/* ---------- Language switch ---------- */

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding: 0 4px;
  font-variant-numeric: tabular-nums;
}
.nav-lang a {
  padding: 8px 8px !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  color: var(--muted) !important;
  text-decoration: none;
}
.nav-lang a:hover { color: var(--plum-deep) !important; background: transparent !important; }
.nav-lang a[aria-current="true"] {
  color: var(--sage-deep) !important;
}
.nav-lang a[aria-current="true"]::after { display: none !important; }
.nav-lang span { color: var(--line); font-size: 12px; }

.nav-pair {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.15;
  padding: 6px 11px !important;
}
.nav-pair small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--muted);
}
.nav-links a.nav-pair[aria-current="page"]::after { display: none; }
.nav-links a.nav-pair[aria-current="page"] small { color: var(--plum); }
@media (max-width: 1240px) {
  .nav-pair { padding: 12px 14px !important; }
}

#work-with-us, #apply, #cleaner, #partner { scroll-margin-top: 96px; }

/* ---------- FAQ / legal prose ---------- */

.faq-list { display: grid; gap: 12px; margin-top: 36px; max-width: 760px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}
.faq-list details[open] { border-color: var(--plum-line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  padding: 18px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--plum);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  padding: 0 0 20px;
  font-size: 15.5px;
  max-width: 62ch;
}
.faq-list details p + p { margin-top: 10px; padding-top: 0; }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 42px 0 14px; }
.prose h3 { font-family: var(--font-body); font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-deep); margin: 28px 0 10px; }
.prose p + p { margin-top: 14px; }
.prose ul { margin: 14px 0 0 22px; display: grid; gap: 8px; }
.prose a { font-weight: 600; }

.map-frame {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

.lang-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
