/* ===========================================================
   KHY Physio — Refined healthcare site
   Navy + bronze + warm cream. Newsreader / Mulish.
   Built from Core design handoff (June 2026).
   =========================================================== */

:root {
  --navy-900: #0c1626;
  --navy-800: #13243f;
  --navy-700: #1b3257;
  --navy-600: #284270;

  --bronze: #b0793a;
  --bronze-strong: #966026;
  --bronze-soft: #cb9d61;
  --bronze-tint: #ecdcc4;

  --cream: #f1e8d9;
  --cream-soft: #f8f4ec;
  --paper: #ffffff;

  --ink: #23282f;
  --ink-soft: #555a63;
  --ink-faint: #828791;
  --line: #e6dccb;

  --accent: var(--bronze);
  --accent-strong: var(--bronze-strong);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(18, 36, 63, .06);
  --shadow-md: 0 18px 50px -24px rgba(18, 36, 63, .35);
  --shadow-lg: 0 40px 90px -40px rgba(12, 22, 38, .5);

  --ff-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-sans: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

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

.eyebrow {
  font-family: var(--ff-sans);
  font-style: normal;
  font-weight: 700;
  font-size: .82rem;
  color: var(--accent-strong);
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1;
}

.section { padding-block: clamp(84px, 11vw, 172px); }
.section-sm { padding-block: clamp(56px, 8vw, 104px); }

.lead {
  font-size: 1.14rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 16px;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .005em;
  padding: var(--pad-y) 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px -12px color-mix(in oklab, var(--accent) 75%, #000);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 20px 34px -14px color-mix(in oklab, var(--accent) 70%, #000); }
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: color-mix(in oklab, var(--navy-800) 26%, transparent);
}
.btn-ghost:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-on-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

.btn-lg { --pad-y: 19px; padding-inline: 38px; font-size: 1.05rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  font-size: .85rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 46px; gap: 18px; }
.topbar-tag { font-weight: 600; letter-spacing: .01em; color: rgba(255,255,255,.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.topbar-contact { display: flex; align-items: center; gap: 26px; flex: none; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: #fff; white-space: nowrap; }
.topbar-contact .ic {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
}
.topbar-contact .ic svg { width: 13px; height: 13px; color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav > .wrap { display: flex; align-items: center; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-logo { height: 52px; width: auto; display: block; }
.footer .brand-logo { height: 60px; }
@media (max-width: 560px) { .brand-logo { height: 44px; } }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: var(--bronze-soft);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name { font-family: var(--ff-serif); font-weight: 600; font-size: 1.5rem; color: var(--navy-800); letter-spacing: .02em; white-space: nowrap; }
.brand-name b { color: var(--accent); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-inline: auto; }
.nav-links > a, .nav-links .has-sub > a {
  font-weight: 700; font-size: .95rem; color: var(--navy-800);
  padding: 10px 13px; border-radius: 999px; position: relative;
  transition: color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-links > a:hover, .nav-links .has-sub > a:hover { color: var(--accent-strong); background: color-mix(in oklab, var(--accent) 12%, transparent); }
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a svg { width: 12px; height: 12px; opacity: .6; }
.nav-links .sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  max-height: 70vh; overflow: auto;
}
.nav-links .has-sub:hover .sub, .nav-links .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.nav-links .sub a {
  display: block; padding: 9px 14px; border-radius: 10px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
}
.nav-links .sub a:hover { background: var(--cream-soft); color: var(--accent-strong); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  place-items: center; cursor: pointer; color: var(--navy-800);
}
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 60;
  background: #fffdf9;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu .wrap { padding-block: 16px 24px; display: grid; gap: 2px; height: auto; }
.mobile-menu a {
  display: block; padding: 13px 14px; border-radius: 12px;
  font-weight: 700; color: var(--navy-800); font-size: 1rem;
}
.mobile-menu a:hover { background: var(--cream-soft); }
.mobile-menu .mm-group { font-family: var(--ff-serif); font-style: italic; color: var(--accent); padding: 14px 14px 4px; font-size: 1.05rem; }
.mobile-menu .mm-sub a { padding-left: 26px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.mobile-menu .btn { margin: 14px 14px 0; justify-content: center; }

/* ---------- Hero (centered, image-free) ---------- */
.hero {
  position: relative; overflow: clip; color: #fff; text-align: center;
  background:
    radial-gradient(120% 80% at 50% -20%, color-mix(in oklab, var(--accent) 30%, transparent), transparent 60%),
    radial-gradient(90% 70% at 12% 110%, rgba(40,66,112,.55), transparent 65%),
    linear-gradient(165deg, var(--navy-700) 0%, var(--navy-900) 60%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--accent) 60%, transparent), transparent);
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin-inline: auto; padding-block: clamp(84px, 14vh, 168px); }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-sans); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.92); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 10px 20px;
  backdrop-filter: blur(6px); margin-bottom: 30px;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bronze-soft); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  font-weight: 600; line-height: 1.04;
}
.hero h1 .accent { color: var(--bronze-soft); display: block; }
.hero-sub { margin: 26px auto 0; max-width: 60ch; font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: rgba(255,255,255,.82); }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }

/* solid bronze funding strip below hero */
.fund-strip { background: var(--accent); color: #fff; }
.fund-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 30px; padding-block: 20px;
}
.fund-strip .fs-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .98rem; color: #fff; letter-spacing: .01em;
}
.fund-strip .fs-item svg { width: 17px; height: 17px; color: rgba(255,255,255,.85); flex: none; }
.fund-strip .fs-sep { width: 1px; height: 16px; background: rgba(255,255,255,.32); }
@media (max-width: 680px) { .fund-strip .fs-sep { display: none; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(70% 90% at 90% 0%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 65%),
    var(--navy-800);
  color: #fff;
  padding-block: clamp(56px, 8vw, 104px);
  position: relative; overflow: clip;
}
.page-hero .crumbs {
  display: flex; flex-wrap: wrap; gap: 7px; align-items: center;
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.page-hero .crumbs a { color: rgba(255,255,255,.78); }
.page-hero .crumbs a:hover { color: var(--bronze-soft); }
.page-hero .crumbs .sep { opacity: .45; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 480; max-width: 24ch; }
.page-hero .page-sub { margin-top: 18px; color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 64ch; line-height: 1.7; }
.page-hero .hero-actions { margin-top: 30px; }

/* ---------- Article / content blocks ---------- */
.article { max-width: 820px; }
.article h2 { font-size: clamp(1.65rem, 2.8vw, 2.3rem); font-weight: 500; margin-top: 2.4em; }
.article h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 500; margin-top: 1.9em; }
.article h4 { font-size: 1.15rem; margin-top: 1.6em; }
.article h2:first-child, .article h3:first-child, .article p:first-child { margin-top: 0; }
.article p { margin-top: 1.1em; color: var(--ink-soft); line-height: 1.75; }
.article ul { margin: 1.1em 0 0; padding: 0 0 0 2px; list-style: none; display: grid; gap: 10px; }
.article ul li {
  position: relative; padding-left: 30px; color: var(--ink-soft); line-height: 1.6;
}
.article ul li::before {
  content: ""; position: absolute; left: 0; top: .52em; width: 17px; height: 17px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 16%, transparent);
}
.article ul li::after {
  content: ""; position: absolute; left: 4.5px; top: calc(.52em + 4.5px);
  width: 8px; height: 4.5px;
  border-left: 2px solid var(--accent-strong); border-bottom: 2px solid var(--accent-strong);
  transform: rotate(-45deg);
}
.article a { color: var(--accent-strong); font-weight: 700; }
.article a:hover { text-decoration: underline; }

/* content layout w/ sidebar */
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(36px, 5vw, 72px); align-items: start; }
.sidebar { position: sticky; top: 108px; display: grid; gap: 22px; }
.side-card {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px;
}
.side-card.navy { background: var(--navy-800); border-color: var(--navy-700); color: #fff; }
.side-card.navy h3 { color: #fff; }
.side-card h3 { font-size: 1.3rem; font-weight: 500; }
.side-card p { color: var(--ink-soft); font-size: .95rem; margin-top: 10px; }
.side-card.navy p { color: rgba(255,255,255,.78); }
.side-card .btn { margin-top: 18px; width: 100%; justify-content: center; }
.side-links { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 4px; }
.side-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px; border-radius: 10px; font-weight: 700; font-size: .93rem; color: var(--navy-800);
}
.side-links a:hover { background: color-mix(in oklab, var(--accent) 10%, transparent); color: var(--accent-strong); }
.side-links svg { width: 14px; height: 14px; flex: none; opacity: .55; }
.side-phone { display: block; font-family: var(--ff-serif); font-size: 1.7rem; color: var(--bronze-soft); margin-top: 10px; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 64ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(2.1rem, 3.8vw, 3.3rem); font-weight: 700; }
.sec-head p { margin-top: 20px; }

/* ---------- Intro / About ---------- */
.intro { background: var(--paper); }
.intro .grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 88px); align-items: center;
}
.intro-art { position: relative; }
.intro-art .ph { width: 100%; aspect-ratio: 5/6; border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.intro-art .ph img { width: 100%; height: 100%; object-fit: cover; }
.intro-art .badge {
  position: absolute; right: -22px; top: 34px; background: var(--navy-800); color: #fff;
  border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-lg); max-width: 220px;
}
.intro-art .badge .n { font-family: var(--ff-serif); font-size: 2.4rem; color: var(--bronze-soft); line-height: 1; }
.intro-art .badge .l { font-size: .86rem; color: rgba(255,255,255,.8); margin-top: 6px; }
.intro-body p + p { margin-top: 18px; }
.intro-points { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 14px; }
.intro-points li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.intro-points .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 16%, transparent); color: var(--accent-strong);
  display: grid; place-items: center; margin-top: 2px;
}
.intro-points .tick svg { width: 14px; height: 14px; }

/* ---------- Feature cards (image-free: intro pillars + excellence) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.feature-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--bronze-tint); }
.feature-card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--accent) 14%, transparent); color: var(--accent-strong); margin-bottom: 22px;
}
.feature-card .ic svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.36rem; font-weight: 600; }
.feature-card p { color: var(--ink-soft); margin-top: 12px; font-size: .98rem; line-height: 1.65; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Whom We Help (navy) ---------- */
.whom { background: var(--navy-800); color: #fff; position: relative; overflow: clip; }
.whom::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 12%, color-mix(in oklab, var(--accent) 26%, transparent), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(40,66,112,.5), transparent 70%);
  pointer-events: none;
}
.whom .wrap { position: relative; }
.whom .sec-head h2 { color: #fff; }
.whom .sec-head .eyebrow { color: var(--bronze-soft); }
.whom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.whom-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: 30px 30px 32px; transition: transform .3s, border-color .3s, background .3s;
}
.whom-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 55%, transparent); }
.whom-card .ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--accent) 22%, transparent); color: var(--bronze-soft); margin-bottom: 20px;
}
.whom-card .ic svg { width: 27px; height: 27px; }
.whom-card h3 { color: #fff; font-size: 1.4rem; font-weight: 500; }
.whom-card p { color: rgba(255,255,255,.74); margin-top: 10px; font-size: .98rem; }

/* ---------- Services ---------- */
.services { background: var(--cream-soft); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px 34px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--bronze-soft)); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--bronze-tint); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--accent) 13%, transparent); color: var(--accent-strong); margin-bottom: 22px;
}
.svc-card .ic svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.42rem; font-weight: 500; }
.svc-card p { color: var(--ink-soft); margin-top: 11px; font-size: .98rem; flex: 1; }
.svc-card .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .9rem; color: var(--accent-strong); }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .25s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- Why Us / stats ---------- */
.why { background: var(--paper); }
.why .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.why-features { display: grid; gap: 8px; margin-top: 34px; }
.why-feature { display: flex; gap: 18px; padding: 20px; border-radius: var(--r-md); transition: background .25s; }
.why-feature:hover { background: var(--cream-soft); }
.why-feature .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--navy-800); color: var(--bronze-soft); display: grid; place-items: center; }
.why-feature .ic svg { width: 24px; height: 24px; }
.why-feature h3 { font-size: 1.22rem; font-weight: 500; }
.why-feature p { color: var(--ink-soft); margin-top: 5px; font-size: .96rem; }
.why-art .ph { width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.why-art .ph img { width: 100%; height: 100%; object-fit: cover; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; padding-top: 52px; border-top: 1px solid var(--line); }
.stat { text-align: center; }
.stat .n { font-family: var(--ff-serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--accent); line-height: 1; }
.stat .l { font-weight: 700; color: var(--ink-soft); font-size: .92rem; margin-top: 10px; }

/* ---------- How it works ---------- */
.how { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.how-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px 38px; position: relative; }
.how-step .num {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 700; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; margin-bottom: 22px; box-shadow: 0 10px 20px -10px var(--accent);
}
.how-step h3 { font-size: 1.42rem; font-weight: 500; }
.how-step p { color: var(--ink-soft); margin-top: 11px; }

/* ---------- Funding (navy band, replaces testimonials for AHPRA compliance) ---------- */
.funding { background: var(--navy-800); color: #fff; position: relative; overflow: clip; }
.funding::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 0%, color-mix(in oklab, var(--accent) 24%, transparent), transparent 70%); }
.funding .wrap { position: relative; }
.funding .sec-head h2 { color: #fff; }
.funding .sec-head .eyebrow { color: var(--bronze-soft); }
.fund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.fund-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform .3s, border-color .3s;
}
.fund-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 55%, transparent); }
.fund-card h3 { color: #fff; font-size: 1.32rem; font-weight: 500; }
.fund-card p { color: rgba(255,255,255,.74); margin-top: 10px; font-size: .95rem; }
.fund-card .more { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .88rem; color: var(--bronze-soft); }
.fund-card .more svg { width: 15px; height: 15px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 36px; display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 20px 24px; font-weight: 700; color: var(--navy-800); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cream-soft); display: grid; place-items: center; transition: transform .25s; }
.faq-item summary .chev svg { width: 13px; height: 13px; color: var(--accent-strong); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Areas ---------- */
.area-groups { display: grid; gap: 40px; margin-top: 48px; }
.area-group h3 { font-size: 1.45rem; margin-bottom: 18px; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 17px; font-weight: 700; font-size: .9rem; color: var(--navy-800);
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.chip:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.chip svg { width: 13px; height: 13px; color: var(--accent); }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.post-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card .cat { font-family: var(--ff-serif); font-style: italic; color: var(--accent); font-size: 1.02rem; }
.post-card h3 { font-size: 1.3rem; font-weight: 500; margin-top: 10px; line-height: 1.25; }
.post-card p { color: var(--ink-soft); font-size: .94rem; margin-top: 12px; flex: 1; }
.post-card .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .9rem; color: var(--accent-strong); }
.post-card .more svg { width: 15px; height: 15px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.team-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card .avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
  color: var(--bronze-soft); display: grid; place-items: center;
  font-family: var(--ff-serif); font-size: 2rem;
}
.team-card h3 { font-size: 1.3rem; }
.team-card p { color: var(--ink-soft); font-size: .92rem; margin-top: 8px; }
.team-card .more { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .88rem; color: var(--accent-strong); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info .item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--navy-800); color: var(--bronze-soft); display: grid; place-items: center; }
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info h3 { font-size: 1.12rem; }
.contact-info p, .contact-info a.val { display: block; color: var(--ink-soft); margin-top: 4px; font-size: .98rem; }
.contact-info a.val:hover { color: var(--accent-strong); }

.form-card {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 42px);
}
.form-card h3 { font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-sans); font-size: .98rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--ink-faint); margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta { background: var(--paper); }
.cta-card {
  background:
    radial-gradient(120% 140% at 100% 0%, color-mix(in oklab, var(--accent) 40%, var(--navy-800)) 0%, var(--navy-800) 50%),
    var(--navy-800);
  border-radius: var(--r-xl); padding: clamp(48px, 6vw, 84px); color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
}
.cta-card h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 480; }
.cta-card p { color: rgba(255,255,255,.82); margin-top: 16px; font-size: 1.1rem; max-width: 46ch; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-actions .btn { justify-content: center; }
.cta-call { text-align: center; margin-top: 4px; color: rgba(255,255,255,.72); font-size: .92rem; }
.cta-call b { color: #fff; font-family: var(--ff-serif); font-size: 1.3rem; display: block; margin-top: 3px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-block: 72px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer .brand-name { color: #fff; }
.footer-about { margin-top: 18px; max-width: 34ch; font-size: .95rem; line-height: 1.7; }
.footer h4 { color: #fff; font-family: var(--ff-sans); font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: .96rem; transition: color .2s; }
.footer ul a:hover { color: var(--bronze-soft); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--bronze-soft); flex: none; margin-top: 4px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: rgba(255,255,255,.5); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; margin-left: auto; }
  .svc-grid, .post-grid, .how-grid, .fund-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 860px) {
  .topbar-tag { display: none; }
  .topbar .wrap { justify-content: center; }
  .intro .grid, .why .grid, .cta-card, .contact-grid { grid-template-columns: 1fr; }
  .why-art, .intro-art { order: -1; }
  .intro-art .badge { right: 8px; }
  .whom-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .svc-grid, .post-grid, .how-grid, .fund-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-contact { gap: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
