/* ==========================================================================
   uplift.css — refinement layer. Loaded last, after base/sections/pages.
   Sharpens type, depth, motion and rhythm without changing page structure.
   ========================================================================== */

:root {
  /* Depth ---------------------------------------------------------------- */
  --sh-1: 0 1px 2px rgba(0, 43, 46, .05), 0 2px 8px rgba(0, 43, 46, .04);
  --sh-2: 0 2px 4px rgba(0, 43, 46, .05), 0 12px 28px -8px rgba(0, 43, 46, .12);
  --sh-3: 0 4px 10px rgba(0, 43, 46, .06), 0 26px 50px -14px rgba(0, 43, 46, .20);
  --ring: inset 0 0 0 1px rgba(0, 59, 63, .08);

  /* Radii ---------------------------------------------------------------- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Rhythm --------------------------------------------------------------- */
  --sp-section: clamp(72px, 7.5vw, 124px);

  /* Contrast: ink-500 was below AA on cream at small sizes */
  --ink-500: #5c6363;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* --------------------------------------------------------------------------
   Type — fluid scale, editorial weights, optical detail
   -------------------------------------------------------------------------- */

body {
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; }
h3, h4 { font-weight: 600; letter-spacing: -0.012em; }

p { text-wrap: pretty; }

.hero__title  { font-size: clamp(38px, 4.6vw, 72px); font-weight: 500; line-height: 1.06; letter-spacing: -0.03em; }
.hero__lede   { font-size: clamp(16px, 1.25vw, 20px); font-weight: 400; line-height: 1.6; color: #e3eeee; }

.pagehead__title { font-size: clamp(32px, 3.4vw, 54px); font-weight: 500; line-height: 1.08; letter-spacing: -0.028em; margin: 16px 0 20px; }
.pagehead__lede  { font-size: clamp(16px, 1.15vw, 19px); line-height: 1.65; color: #dce9e9; }
.pagehead__crumb { letter-spacing: .04em; text-transform: uppercase; font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, .62); }

.sechead__title,
.promise__title,
.faq__title,
.overview__title,
.enquiry__title,
.featured__title,
.how__title,
.prose h2 { font-size: clamp(28px, 2.7vw, 44px); font-weight: 500; line-height: 1.1; letter-spacing: -0.025em; }

.about__statement,
.mosaic__head p { font-size: clamp(24px, 2.1vw, 34px); font-weight: 400; line-height: 1.34; letter-spacing: -0.018em; }

.scard__title,
.post__title,
.why__panel-title,
.promise__card h3,
.checkcard h3,
.rescard h3,
.job h3,
.plan h3,
.tl h4,
.sitemap strong { letter-spacing: -0.015em; }

/* Numerals: align in tables, rate cards and stat rows */
.stat__value, .facts dd, .plan .amt, .specs dd, .cmp td, .cmp th,
.pagination a { font-variant-numeric: tabular-nums; }

/* Eyebrow: plain small caps, no lead-in rule */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
}

/* --------------------------------------------------------------------------
   Rhythm — one vertical scale for every band
   -------------------------------------------------------------------------- */

.about, .services, .how, .why, .stories, .testimonials, .team,
.promise, .faq, .overview, .contactcards, .enquiry, .mapblock,
.postgrid, .related, .article, .mosaic__head {
  padding-block: var(--sp-section);
}
.cta { padding-block: clamp(48px, 5vw, 76px); }
.sechead { margin-bottom: clamp(32px, 3.4vw, 56px); }

/* --------------------------------------------------------------------------
   Nav — sticky, quieter, with a real active indicator
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  background: rgba(0, 51, 55, .92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  z-index: 50;
}
.nav__inner { padding-block: 16px; }
.nav__wordmark { font-weight: 500; letter-spacing: -0.015em; }
.nav__links { gap: 28px; }

.nav__links > a,
.nav__item > a {
  position: relative;
  padding-block: 6px;
  font-size: 14.5px;
  letter-spacing: .002em;
  opacity: .82;
  transition: opacity .18s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
  text-decoration: none;
}
.nav__links > a::after,
.nav__item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s var(--ease);
}
.nav__links > a:hover::after,
.nav__item > a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__drop {
  margin-top: 10px;
  padding: 12px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  border: 1px solid rgba(0, 59, 63, .06);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__drop a { border-radius: var(--r-sm); padding: 11px 14px; }
.nav__drop a::after { display: none; }

/* The caret toggle is a mobile-only control */
.nav__caret { display: none; }

@media (max-width: 1100px) {
  /* Closed by default on mobile; the caret button opens one group at a time */
  .nav__item > .nav__drop,
  .nav__item > .nav__drop--mega { display: none; }
  .nav__item--open > .nav__drop,
  .nav__item--open > .nav__drop--mega { display: block; }
  .nav__item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
  }
  .nav__item > a { grid-column: 1; }
  .nav__item > svg,
  .nav__item > .nav__caret { grid-column: 2; }
  .nav__item > .nav__drop,
  .nav__item > .nav__drop--mega { grid-column: 1 / -1; }
  .nav__caret {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    transition: transform .22s var(--ease);
  }
  .nav__item--open > .nav__caret { transform: rotate(180deg); }
  .nav__item > svg { display: none; }
  .nav__links > a { padding-block: 12px; }
  .nav__links a::after { display: none; }
  .nav__links a[aria-current="page"] {
    color: var(--ice-200);
    box-shadow: inset 3px 0 0 var(--pink-600);
    padding-left: 12px;
    margin-left: -12px;
  }
}

/* --------------------------------------------------------------------------
   Buttons — slightly larger, with press feedback
   -------------------------------------------------------------------------- */

.pill {
  padding: 12px 22px;
  font-size: 14.5px;
  letter-spacing: .005em;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease),
              box-shadow .18s var(--ease);
}
.pill--primary { box-shadow: 0 1px 2px rgba(191, 30, 123, .22), 0 8px 18px -8px rgba(191, 30, 123, .45); font-size: 15px; padding: 13px 24px; }
.pill--lg { padding: 16px 30px; font-size: 16.5px; }
.pill--primary:hover { background: #a8186c; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(191, 30, 123, .24), 0 14px 26px -10px rgba(191, 30, 123, .5); }
.pill--white:hover { background: var(--ice-200); transform: translateY(-1px); }
.pill--glass { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .28); }
.pill--glass:hover { background: rgba(255, 255, 255, .18); }
.pill--outline:hover, .pill--soft:hover, .pill--filter:hover { transform: translateY(-1px); }
.pill:active { transform: translateY(0) scale(.99); }

.form button, .rail .pill, .plan .pill { border-radius: var(--radius-pill); }
.form button {
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(191, 30, 123, .22), 0 8px 18px -8px rgba(191, 30, 123, .45);
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.form button:hover { transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   Surfaces — one radius scale, hairline rings, honest depth
   -------------------------------------------------------------------------- */

.scard, .quote, .post, .contactcard, .rescard, .promise__card,
.checkcard, .plan, .job, .sitemap a, .authorbox, .member, .story,
.why__panel, .rail, .form, .faq__item, .specs, .step, .choice {
  border-radius: var(--r-lg);
}
.faq__item, .choice, .slot, .field input, .field textarea { border-radius: var(--r-md); }
.mapblock iframe, .about__media img, .how__media img, .why__panel-media img,
.featured__row img, .cover > img, .profile__photo { border-radius: var(--r-xl); }
.scard__icon { border-radius: var(--r-md); }

.scard, .quote, .post, .contactcard, .authorbox, .member, .faq__item {
  box-shadow: var(--sh-1), var(--ring);
}
.rescard, .promise__card, .plan, .job, .sitemap a, .why__panel {
  box-shadow: var(--sh-1);
}
.plan--hi { box-shadow: var(--sh-3); }

/* Interactive cards lift on hover */
.scard, .post, .rescard, .job, .sitemap a, .member, .story, .quote, .contactcard {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.scard:hover, .post:hover, .rescard:hover, .job:hover, .sitemap a:hover,
.member:hover, .story:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2), var(--ring);
}
.sitemap a:hover { border-color: rgba(1, 139, 149, .5); }

/* Card media: slow zoom under the same hover */
.post, .member, .story { overflow: hidden; }
.post img, .member img, .story img {
  transition: transform .7s var(--ease);
  will-change: transform;
}
.post:hover img, .member:hover img, .story:hover img { transform: scale(1.035); }

/* --------------------------------------------------------------------------
   Bands — softer scrims, cleaner data strips
   -------------------------------------------------------------------------- */

.hero__scrim {
  background: linear-gradient(to top,
    rgba(0, 30, 32, .82) 0%,
    rgba(0, 30, 32, .55) 38%,
    rgba(0, 30, 32, .12) 72%,
    rgba(0, 30, 32, 0) 100%);
}
.pagehead__media::after {
  background: linear-gradient(100deg,
    rgba(0, 40, 43, .93) 0%,
    rgba(0, 40, 43, .74) 46%,
    rgba(0, 40, 43, .42) 100%);
}

.facts { background: var(--line); border-block: 1px solid var(--line); }
.facts > div { background: var(--white); padding: clamp(24px, 2.4vw, 34px) clamp(24px, 2.2vw, 34px); }
.facts dd { font-size: clamp(26px, 2.3vw, 36px); font-weight: 500; letter-spacing: -0.02em; }
.facts dt { color: var(--aqua-600); letter-spacing: .14em; }

.cta__box {
  border-radius: var(--r-xl);
  padding: clamp(44px, 5vw, 76px) clamp(24px, 4vw, 64px);
  box-shadow: var(--sh-3);
}
.cta__title { font-size: clamp(28px, 2.8vw, 44px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.16; }
.cta__eyebrow { letter-spacing: .16em; text-transform: uppercase; color: var(--ice-200); }

/* Tables read as data, not as boxes */
.cmp { font-size: 15px; }
.cmp tbody tr { transition: background-color .18s var(--ease); }
.cmp tbody tr:nth-child(even) { background: transparent; }
.cmp tbody tr:hover { background: var(--ice); }
.cmp thead th { letter-spacing: .13em; }

/* Timeline dots sit on the rule more precisely */
.tl > li::after { top: -5px; width: 10px; height: 10px; box-shadow: 0 0 0 4px var(--white); }

/* --------------------------------------------------------------------------
   Forms — visible focus, calm fields
   -------------------------------------------------------------------------- */

.field input, .field textarea, .slot, .choice {
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aqua-600);
  box-shadow: 0 0 0 3px rgba(1, 139, 149, .16);
}
.slot:hover, .choice:hover { border-color: rgba(1, 139, 149, .55); }

/* --------------------------------------------------------------------------
   FAQ / accordion
   -------------------------------------------------------------------------- */

.faq__q { padding: 20px 22px; font-size: 18px; font-weight: 600; letter-spacing: -0.012em; }
.faq__q:hover { color: var(--teal-900); }
.faq__a { padding: 0 22px 22px; font-size: 16px; }

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

.footer { padding-block: clamp(64px, 6vw, 96px) 40px; }
.footer__lw span { font-weight: 500; letter-spacing: -0.015em; }
.footer__col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 16px; }
.footer__col a, .footer__col li { font-size: 14px; line-height: 1.6; }
.footer__col a { transition: color .18s var(--ease); }
.footer__col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.footer__rule { background: rgba(255, 255, 255, .12); }

/* --------------------------------------------------------------------------
   Card copy — sized against the new 17px body, not the old 16px
   -------------------------------------------------------------------------- */

.scard__desc, .quote__body, .post__excerpt, .rescard p, .promise__card p,
.step__desc, .tl p, .sitemap span, .footer__blurb, .contactcard__note,
.mapblock p, .featured__excerpt, .authorbox p, .why__panel-desc {
  font-size: 15.5px;
  line-height: 1.6;
}
.bullets li, .checks li { font-size: 14.5px; }
.member__name, .story__title, .quote__title, .step__title { font-size: 17px; letter-spacing: -0.01em; }
.member__role, .quote__meta, .job__meta, .byline, .post__meta { font-size: 13.5px; }
.member__body { padding: 20px 22px 24px; }
.story__bar { padding: 26px 24px; }
.stat__value { font-size: clamp(38px, 3.2vw, 52px); font-weight: 500; letter-spacing: -0.025em; }
.stat__label { font-size: 15px; }

/* --------------------------------------------------------------------------
   Media sizing — display photography at scales its source can carry
   -------------------------------------------------------------------------- */

.story img { height: clamp(220px, 26vw, 340px); }
.member img { height: clamp(260px, 22vw, 330px); object-position: center 22%; }
.how__media img { height: clamp(300px, 30vw, 440px); }
.why__panel-media img { height: clamp(260px, 26vw, 360px); }
.about__media img { height: clamp(260px, 24vw, 340px); }
.mosaic__strip img { height: clamp(160px, 15vw, 230px); }
.cover > img { height: clamp(280px, 34vw, 520px); }
.featured__row img { height: clamp(260px, 30vw, 430px); }
.post img { height: clamp(190px, 18vw, 220px); }

/* --------------------------------------------------------------------------
   Filterable photo grid (gallery)
   -------------------------------------------------------------------------- */

.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin-inline: auto;
}
.gal figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--sh-1), var(--ring);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.gal figure:hover { transform: translateY(-3px); box-shadow: var(--sh-2), var(--ring); }
.gal figure[hidden] { display: none; }
.gal img {
  width: 100%;
  height: clamp(180px, 17vw, 240px);
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gal figure:hover img { transform: scale(1.04); }
.gal figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 30, 32, .82), rgba(0, 30, 32, 0));
}
.filters__count { font-size: 14px; color: var(--ink-500); margin-top: 14px; }
.galsec { background: var(--cream); padding: var(--sp-section) var(--gutter); }

/* --------------------------------------------------------------------------
   Responsive — a 2-up tier instead of 3-up dropping straight to 1-up
   -------------------------------------------------------------------------- */

@media (max-width: 1240px) {
  .services__grid, .testimonials__grid, .promise__grid, .postgrid__grid,
  .related__grid, .contactcards__row, .rescards, .plans, .gal, .choices {
    grid-template-columns: repeat(2, 1fr);
  }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .services__grid, .testimonials__grid, .promise__grid, .postgrid__grid,
  .related__grid, .contactcards__row, .stories__grid, .rescards, .plans, .gal {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .services__grid, .testimonials__grid, .promise__grid, .postgrid__grid,
  .related__grid, .contactcards__row, .stories__grid, .rescards, .plans,
  .team__grid, .choices {
    grid-template-columns: 1fr;
  }
  .gal { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gal, .footer__top { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Hero with an enquiry card (lead capture above the fold)
   -------------------------------------------------------------------------- */

.hero__scrim {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: clamp(32px, 4vw, 72px);
  align-items: end;
  padding: clamp(56px, 7vw, 104px) var(--gutter-sm);
}
.hero { align-items: center; min-height: clamp(620px, 78vh, 860px); }

.leadcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
}
.leadcard h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.leadcard p.leadcard__note { font-size: 13px; line-height: 1.5; color: var(--ink-500); }
.leadcard input, .leadcard textarea, .leadcard select {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.leadcard textarea { min-height: 84px; resize: vertical; }
.leadcard input:focus, .leadcard textarea:focus, .leadcard select:focus {
  outline: none;
  border-color: var(--aqua-600);
  box-shadow: 0 0 0 3px rgba(1, 139, 149, .16);
}
.leadcard button {
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--pink-600);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.leadcard button:hover { background: #a8186c; transform: translateY(-1px); }

@media (max-width: 1100px) {
  .hero__scrim { grid-template-columns: 1fr; align-items: start; }
  .leadcard { max-width: 460px; }
}

/* --------------------------------------------------------------------------
   Trust bar — the four numbers, once, on the dark band
   -------------------------------------------------------------------------- */

.trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal-900);
  padding: clamp(28px, 3vw, 44px) var(--gutter-sm);
  gap: 24px;
}
.trustbar div { text-align: center; }
.trustbar dt {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ice-200);
  font-variant-numeric: tabular-nums;
}
.trustbar dd {
  margin: 8px 0 0;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mist-300);
}
@media (max-width: 760px) { .trustbar { grid-template-columns: repeat(2, 1fr); row-gap: 28px; } }

/* --------------------------------------------------------------------------
   Facilities checklist
   -------------------------------------------------------------------------- */

.faclist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: var(--container);
  margin-inline: auto;
}
.faclist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-900);
}
.faclist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--aqua-600);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 1240px) { .faclist { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .faclist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .faclist { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Activities — photo + chip cloud
   -------------------------------------------------------------------------- */

.activities__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}
.activities__row img {
  width: 100%;
  height: clamp(280px, 30vw, 420px);
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
}
.actchips { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px; margin-top: 24px; }
.actchips span {
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink-700);
}
@media (max-width: 1000px) { .activities__row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Care-home locations
   -------------------------------------------------------------------------- */

.centres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
}
.centre {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1), var(--ring);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.centre:hover { transform: translateY(-3px); box-shadow: var(--sh-2), var(--ring); }
.centre img { width: 100%; height: clamp(180px, 17vw, 230px); object-fit: cover; transition: transform .7s var(--ease); }
.centre:hover img { transform: scale(1.035); }
.centre__body { display: flex; flex-direction: column; gap: 8px; padding: 24px; flex: 1; }
.centre__name { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink-900); }
.centre__addr { font-size: 14.5px; line-height: 1.55; color: var(--ink-500); }
.centre__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: var(--aqua-600); font-weight: 600; }
.centre .pill { margin-top: auto; align-self: flex-start; }
@media (max-width: 1000px) { .centres { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .centres { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Utility bar above the nav
   -------------------------------------------------------------------------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 32px);
  padding: 9px var(--gutter-sm);
  background: #002b2e;
  color: var(--mist-200);
  font-size: 13.5px;
}
.topbar a { color: var(--ice-200); font-weight: 500; }
.topbar a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.topbar__note { margin-right: auto; color: var(--mist-400); }
@media (max-width: 760px) {
  .topbar { justify-content: center; padding-inline: 20px; font-size: 12.5px; }
  .topbar__note { display: none; }
}

/* --------------------------------------------------------------------------
   Mega dropdown — grouped columns instead of a single list
   -------------------------------------------------------------------------- */

.nav__drop--mega {
  position: fixed;
  top: 118px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(-6px);
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 6px 22px;
  padding: 22px 24px;
  width: min(760px, calc(100vw - 48px));
}
.nav__item:hover .nav__drop--mega,
.nav__item:focus-within .nav__drop--mega { transform: translateX(-50%); }
.nav__item:hover .nav__drop--mega,
.nav__item:focus-within .nav__drop--mega { display: grid; }
.nav__drop--mega h4 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aqua-600);
  margin: 0 0 8px 14px;
}
.nav__drop--mega > div { display: flex; flex-direction: column; }
.nav__drop--mega a { padding: 9px 14px; }
.nav__drop--mega span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-500);
}
@media (max-width: 1100px) {
  /* Mobile panel: the mega menu becomes an ordinary nested list, in flow */
  .nav__drop,
  .nav__drop--mega {
    position: static;
    inset: auto;
    transform: none;
    width: auto;
    min-width: 0;
    margin: 4px 0 10px;
    padding: 4px 0 4px 14px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 0;
    opacity: 1;
    visibility: visible;
  }
  .nav__item:hover .nav__drop--mega,
  .nav__item:focus-within .nav__drop--mega { transform: none; }
  .nav__drop--mega h4 {
    margin: 14px 0 6px;
    color: var(--ice-200);
    opacity: .8;
  }
  .nav__drop--mega > div:first-child h4 { margin-top: 4px; }
  .nav__drop a,
  .nav__drop--mega a {
    padding: 10px 0;
    color: var(--white);
    background: transparent;
  }
  .nav__drop a:hover,
  .nav__drop--mega a:hover { background: transparent; color: var(--ice-200); }
  .nav__drop--mega span { color: var(--mist-300); }
}

/* --------------------------------------------------------------------------
   Split banner — teal editorial panel, photo frame, overlapping lead card
   -------------------------------------------------------------------------- */

.hero--split {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  min-height: clamp(620px, 82vh, 880px);
  background: var(--teal-900);
  overflow: visible;
  position: relative;
}
.hero--split::before {
  content: "";
  position: absolute;
  left: -8%;
  top: -20%;
  width: 58%;
  height: 90%;
  background: radial-gradient(closest-side, rgba(1, 139, 149, .28), rgba(1, 139, 149, 0));
  pointer-events: none;
}
.hero--split .hero__panel {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: clamp(56px, 6vw, 104px) clamp(28px, 4vw, 88px);
}
.hero--split .hero__title { max-width: 15ch; font-size: clamp(40px, 5vw, 82px); letter-spacing: -0.034em; line-height: 1.02; }
.hero--split .hero__lede { max-width: 46ch; }
.hero--split .hero__rule {
  width: 84px;
  height: 2px;
  background: var(--pink-600);
  margin: 4px 0 2px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

.hero__frame {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border-radius: clamp(28px, 5vw, 110px) 0 0 clamp(28px, 5vw, 110px);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(0, 30, 32, 0) 45%, rgba(0, 30, 32, .45) 100%);
}
.hero--split .leadcard {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  width: min(352px, 78%);
  padding: 24px;
  margin: 0 0 clamp(36px, 5vw, 72px) clamp(-104px, -5vw, -28px);
}
.hero__chips { gap: 10px; }
.hero__chips .pill--glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .015em;
  color: var(--mist-200);
}
.hero__chips .pill--glass::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua-600);
  flex: none;
}
.hero__chips .pill--glass:hover { background: rgba(255, 255, 255, .12); color: var(--white); }

/* Photo frame: inset hairline echo + a quiet locator caption */
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: clamp(20px, 4vw, 92px) 0 0 clamp(20px, 4vw, 92px);
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  z-index: 3;
  top: clamp(30px, 3.4vw, 46px);
  right: clamp(30px, 3.4vw, 46px);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 40, 43, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mist-200);
}

/* Proof facts live in the banner's bottom band — no overlap on the photo */
.hero__proof {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0 clamp(28px, 4vw, 88px);
  background: #002b2e;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero__proof > div { padding: 22px 26px 22px 0; }
.hero__proof > div + div { padding-left: 26px; border-left: 1px solid rgba(255, 255, 255, .12); }
.hero__proof dt {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  color: var(--ice-200);
}
.hero__proof dd { margin: 6px 0 0; font-size: 12.5px; line-height: 1.45; color: var(--mist-300); }

.hero__rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}
.hero__rail-note { display: none; }
.hero__rail-call {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--white);
}
.hero__rail-call:hover { color: var(--ice-200); }
.hero__rail-link { font-size: 14px; font-weight: 600; color: var(--ice-200); }

.pill--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
}
.pill--ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .5); }

@media (max-width: 1100px) {
  .hero--split { grid-template-columns: 1fr; min-height: 0; }
  .hero--split::before { display: none; }
  .hero__frame { grid-column: 1; grid-row: 2; border-radius: 0; height: clamp(280px, 42vw, 420px); }
  .hero__proof {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    padding-inline: var(--gutter-sm);
  }
  .hero__proof > div { padding: 18px 0; }
  .hero__proof > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
  .hero__rail {
    align-items: flex-start;
    padding: 18px 0 22px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }
  .hero--split .hero__title { max-width: 20ch; }
}

/* --------------------------------------------------------------------------
   Inner page banner — same language: teal panel + offset photo frame
   -------------------------------------------------------------------------- */

.pagehead {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
  min-height: clamp(340px, 34vw, 480px);
  overflow: visible;
}
.pagehead__media {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 90px) 0 0 clamp(24px, 4vw, 90px);
}
.pagehead__media::after {
  background: linear-gradient(200deg, rgba(0, 30, 32, 0) 50%, rgba(0, 30, 32, .38) 100%);
}
.pagehead__inner {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  max-width: none;
  padding: clamp(48px, 5vw, 92px) clamp(28px, 4vw, 88px);
}
.pagehead__inner .pagehead__lede { max-width: 52ch; }
@media (max-width: 900px) {
  .pagehead { grid-template-columns: 1fr; }
  .pagehead__media { grid-column: 1; grid-row: 2; border-radius: 0; height: clamp(200px, 40vw, 300px); }
  .pagehead__inner { grid-row: 1; }
}

/* Minimum legible sizes — nothing below 13px in body content */
.eyebrow, .cta__eyebrow, .pagehead__crumb, .post__cat { font-size: 13px; }
.leadcard p.leadcard__note, .centre__meta, .hero__caption, .footer__col h4 { font-size: 13px; }
.hero__proof dd { font-size: 13.5px; }
.member__tags span, .member__tags li, .tag, .chip { font-size: 13px; }

/* --------------------------------------------------------------------------
   Story cards — display at a size the source photography can carry
   -------------------------------------------------------------------------- */

.story img { height: clamp(200px, 21vw, 280px); }
.stories__grid .story img { height: clamp(180px, 15vw, 210px); }

/* Story cards: 3-up on desktop, matching the card count; narrow tiers below win */
@media (min-width: 1241px) {
  .stories__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}
.story__bar { flex-wrap: wrap; }
.story img { height: clamp(180px, 15vw, 210px); }

/* --------------------------------------------------------------------------
   Service pages — page-head actions, notes, timeline band, plans, cross-links
   -------------------------------------------------------------------------- */

.pagehead__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.how__note { font-size: 15px; line-height: 1.6; color: var(--ink-500); }
.mosaic--tl { background: var(--ice); padding-block: var(--sp-section); }
.mosaic--tl .mosaic__head { padding-block: 0 44px; }
.mosaic--tl .mosaic__head .eyebrow { margin-bottom: 14px; }
.why--plans { background: var(--white); }
.plans__note { max-width: 720px; margin: 26px auto 0; text-align: center; font-size: 14px; line-height: 1.6; color: var(--ink-500); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }

.svcnav { padding-block: var(--sp-section); background: var(--cream); }
.svcnav__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin-inline: auto;
}
.svcnav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.svcnav__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: rgba(1, 139, 149, .45);
  text-decoration: none;
}
.svcnav__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.svcnav__kicker { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--aqua-600); }
@media (max-width: 1000px) { .svcnav__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .svcnav__row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Focus + motion hygiene
   -------------------------------------------------------------------------- */

:focus-visible { outline: 2px solid var(--pink-600); outline-offset: 3px; border-radius: 3px; }
.nav :focus-visible { outline-color: var(--ice-200); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  .post:hover img, .member:hover img, .story:hover img { transform: none; }
}


/* ==========================================================================
   EDITORIAL LAYER — per-page section vocabulary.
   Each service page composes a DIFFERENT subset of these, in a different
   order, so no two inner pages share a skeleton.
   ========================================================================== */

:root {
  --measure: 1280px;          /* reading-width band, narrower than --container */
  --measure-narrow: 940px;
  --sp-band: clamp(64px, 6.5vw, 112px);
}

.band { padding: var(--sp-band) var(--gutter-sm); }
.band--cream { background: var(--cream); }
.band--white { background: var(--white); }
.band--ice   { background: var(--ice); }
.band--dark  { background: var(--teal-900); color: var(--mist-200); }
.band--tight { padding-block: clamp(44px, 4.5vw, 72px); }
.band__in { max-width: var(--measure); margin-inline: auto; }
.band__in--narrow { max-width: var(--measure-narrow); margin-inline: auto; }
.band--dark h2, .band--dark h3, .band--dark h4, .band--dark dt { color: #fff; }
.band--dark .eyebrow { color: var(--ice-200); }

/* Section lede used under a band heading */
.lede {
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink-700);
  max-width: 62ch;
  margin: 18px 0 0;
}
.band--dark .lede { color: var(--mist-300); }
.band__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 14px 0 0;
  max-width: 24ch;
}
.band__title--wide { max-width: 34ch; }

/* --------------------------------------------------------------------------
   leadstat — hairline stat row (replaces the boxed trustbar on inner pages)
   -------------------------------------------------------------------------- */

.leadstat {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(30px, 3vw, 48px) var(--gutter-sm);
  border-bottom: 1px solid var(--line);
}
.leadstat > div { padding-inline: clamp(12px, 2vw, 32px); border-left: 1px solid var(--line); }
.leadstat > div:first-child { border-left: 0; padding-left: 0; }
.leadstat dt {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--teal-900);
  font-variant-numeric: tabular-nums;
}
.leadstat dd {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-500);
  max-width: 22ch;
}
@media (max-width: 900px) {
  .leadstat { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .leadstat > div:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  .leadstat { grid-template-columns: 1fr; }
  .leadstat > div { border-left: 0; padding-left: 0; }
}

/* --------------------------------------------------------------------------
   spec — sticky "at a glance" rail beside long-form editorial prose
   -------------------------------------------------------------------------- */

.spec__row {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.spec__rail {
  position: sticky;
  top: 104px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-1);
}
.spec__rail h3 {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--aqua-600);
  margin: 0 0 18px;
}
.spec__rail dl { margin: 0; display: grid; gap: 14px; }
.spec__rail dl > div { display: grid; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.spec__rail dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.spec__rail dt { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-500); }
.spec__rail dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}
.spec__rail .pill { width: 100%; justify-content: center; margin-top: 22px; }

.prose-lg { max-width: 68ch; }
.prose-lg > p { font-size: 17.5px; line-height: 1.72; color: var(--ink-700); margin: 0 0 22px; }
.prose-lg > p:first-child {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.prose-lg h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin: 46px 0 14px;
}
.prose-lg h3:first-of-type { margin-top: 38px; }
.aside {
  margin: 34px 0;
  padding: 22px 26px;
  background: var(--ice);
  border-left: 2px solid var(--aqua-600);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.aside p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--teal-900); }
.aside strong { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-600); margin-bottom: 8px; }
@media (max-width: 1000px) {
  .spec__row { grid-template-columns: 1fr; }
  .spec__rail { position: static; }
}

/* --------------------------------------------------------------------------
   dayline — hour-by-hour routine, hairline rules, no cards
   -------------------------------------------------------------------------- */

.dayline { margin: 0; border-top: 1px solid var(--line); }
.band--dark .dayline { border-color: rgba(255,255,255,.16); }
.dayline > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 56px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.band--dark .dayline > div { border-color: rgba(255,255,255,.16); }
.dayline dt {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--aqua-600);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.band--dark .dayline dt { color: var(--ice-200); }
.dayline dd { margin: 0; }
.dayline__what { font-size: 17px; font-weight: 500; color: var(--ink-900); letter-spacing: -0.01em; }
.band--dark .dayline__what { color: #fff; }
.dayline__who { font-size: 15.5px; line-height: 1.6; color: var(--ink-500); }
.band--dark .dayline__who { color: var(--mist-300); }
@media (max-width: 860px) {
  .dayline > div { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
}

/* --------------------------------------------------------------------------
   pair — asymmetric split with the image bleeding off one edge
   -------------------------------------------------------------------------- */

.pair {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
}
.pair--flip > .pair__media { order: -1; }
.pair__media { position: relative; }
.pair__media img {
  width: 100%;
  height: clamp(360px, 42vw, 620px);
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
}
.pair__cap {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 30, 32, .8);
}
.pair__body h2 { margin-top: 14px; }
.pair__body > p { font-size: 17px; line-height: 1.72; color: var(--ink-700); max-width: 52ch; margin: 20px 0 0; }
.band--dark .pair__body > p { color: var(--mist-300); }
@media (max-width: 940px) {
  .pair { grid-template-columns: 1fr; }
  .pair--flip > .pair__media { order: 0; }
}

/* Full-bleed image band with a caption strip */
.bleed { position: relative; }
.bleed img { width: 100%; height: clamp(320px, 46vw, 660px); object-fit: cover; display: block; }
.bleed__cap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 18px var(--gutter-sm) 0;
  font-size: 13.5px;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   matrix — comparison table, tabular numerals, dark header row
   -------------------------------------------------------------------------- */

.matrix { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.matrix caption { text-align: left; font-size: 13.5px; color: var(--ink-500); padding-bottom: 14px; }
.matrix th, .matrix td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.matrix thead th {
  background: var(--teal-900);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 0;
}
.matrix thead th:first-child { border-radius: var(--r-md) 0 0 0; }
.matrix thead th:last-child { border-radius: 0 var(--r-md) 0 0; }
.matrix tbody tr:nth-child(even) { background: rgba(1, 139, 149, .035); }
.matrix tbody th { font-weight: 500; color: var(--ink-900); font-size: 16.5px; letter-spacing: -0.01em; }
.matrix tbody th small { display: block; font-size: 13px; font-weight: 400; color: var(--ink-500); margin-top: 4px; letter-spacing: 0; }
.matrix td { color: var(--ink-700); }
.matrix .num { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 500; color: var(--teal-900); }
.matrix__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 760px) { .matrix { font-size: 14.5px; min-width: 620px; } }

/* --------------------------------------------------------------------------
   ladder — escalating levels of care; each rung steps further in
   -------------------------------------------------------------------------- */

.ladder { display: grid; gap: 2px; counter-reset: rung; }
.ladder__rung {
  display: grid;
  grid-template-columns: 64px minmax(0, 320px) minmax(0, 1fr) auto;
  gap: clamp(18px, 2.6vw, 44px);
  align-items: start;
  padding: 30px clamp(22px, 2.4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.ladder__rung + .ladder__rung { margin-left: clamp(0px, 2.4vw, 40px); }
.ladder__n {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--aqua-600);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ladder__name { font-size: 19px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink-900); margin: 0; }
.ladder__who { font-size: 13.5px; color: var(--aqua-600); margin: 6px 0 0; font-weight: 500; }
.ladder__desc { font-size: 15.5px; line-height: 1.65; color: var(--ink-500); margin: 0; }
.ladder__rate { font-size: 15px; font-weight: 600; color: var(--teal-900); font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 1000px) {
  .ladder__rung { grid-template-columns: 44px minmax(0, 1fr); row-gap: 14px; }
  .ladder__rung + .ladder__rung { margin-left: 0; }
  .ladder__desc { grid-column: 2; }
  .ladder__rate { grid-column: 2; }
}

/* --------------------------------------------------------------------------
   bigquote — one testimonial, full-bleed dark, no card
   -------------------------------------------------------------------------- */

.bigquote {
  background: var(--teal-900);
  padding: clamp(64px, 7vw, 120px) var(--gutter-sm);
  position: relative;
  overflow: hidden;
}
.bigquote::before {
  content: "";
  position: absolute;
  inset: -30% 55% 0 -10%;
  background: radial-gradient(closest-side, rgba(1, 139, 149, .3), rgba(1, 139, 149, 0));
  pointer-events: none;
}
.bigquote__in {
  position: relative;
  max-width: var(--measure);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.bigquote img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); }
.bigquote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.022em;
  color: #fff;
  text-wrap: pretty;
}
.bigquote figcaption { margin-top: 26px; font-size: 14.5px; color: var(--mist-300); }
.bigquote figcaption strong { display: block; color: var(--ice-200); font-weight: 500; font-size: 16px; margin-bottom: 3px; }
@media (max-width: 860px) {
  .bigquote__in { grid-template-columns: 1fr; }
  .bigquote img { width: 120px; height: 120px; }
}

/* --------------------------------------------------------------------------
   kit — equipment / inclusion spec sheet with dotted leaders
   -------------------------------------------------------------------------- */

.kit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(40px, 5vw, 88px); margin: 0; }
.kit > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.band--dark .kit > div { border-color: rgba(255,255,255,.14); }
.kit dt { font-size: 16px; color: var(--ink-900); font-weight: 500; letter-spacing: -0.01em; }
.band--dark .kit dt { color: #fff; }
.kit__rule { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.band--dark .kit__rule { border-color: rgba(255,255,255,.3); }
.kit dd { margin: 0; font-size: 14px; color: var(--ink-500); white-space: nowrap; font-variant-numeric: tabular-nums; }
.band--dark .kit dd { color: var(--mist-300); }
@media (max-width: 760px) { .kit { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   protocol — horizontal phase rail with week markers
   -------------------------------------------------------------------------- */

.protocol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--aqua-600);
  margin: 0;
}
.protocol > div { padding: 26px clamp(18px, 2vw, 34px) 0 0; position: relative; }
.protocol > div::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aqua-600);
}
.protocol dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-600); font-weight: 600; }
.protocol__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin: 10px 0 8px;
}
.protocol dd { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-500); }
@media (max-width: 1000px) { .protocol { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }
@media (max-width: 560px) { .protocol { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   pillars — hairline-separated columns, deliberately card-free
   -------------------------------------------------------------------------- */

.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(28px, 3.2vw, 56px); }
.pillars > div { padding-top: 24px; border-top: 1px solid var(--line); }
.band--dark .pillars > div { border-color: rgba(255,255,255,.18); }
.pillars h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--teal-900);
  margin: 0 0 10px;
}
.band--dark .pillars h3 { color: #fff; }
.pillars p { margin: 0; font-size: 15.5px; line-height: 1.68; color: var(--ink-500); }
.band--dark .pillars p { color: var(--mist-300); }
.pillars--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1000px) { .pillars, .pillars--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars, .pillars--3 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   outcomes — measured results, display numerals on cream
   -------------------------------------------------------------------------- */

.outcomes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3.5vw, 64px); margin: 0; }
.outcomes > div { display: grid; gap: 8px; }
.outcomes dt {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 72px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -0.035em;
  color: var(--aqua-600);
  font-variant-numeric: tabular-nums;
}
.outcomes dd { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-700); max-width: 30ch; }
.outcomes small { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 8px; }
@media (max-width: 860px) { .outcomes { grid-template-columns: 1fr; row-gap: 34px; } }

/* --------------------------------------------------------------------------
   Quiet FAQ variant — hairlines instead of cards
   -------------------------------------------------------------------------- */

.faqq { border-top: 1px solid var(--line); }
.faqq__item { border-bottom: 1px solid var(--line); }
.faqq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-900);
}
.faqq__q svg { flex: none; color: var(--aqua-600); transition: transform .24s var(--ease); }
.faqq__q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faqq__a { padding: 0 0 26px; max-width: 68ch; font-size: 16px; line-height: 1.7; color: var(--ink-500); }
.faqq__a[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Service cross-links — quiet row at the foot of each service page
   -------------------------------------------------------------------------- */

.crosslinks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.crosslinks a {
  display: grid;
  gap: 6px;
  padding: 26px 28px;
  background: var(--white);
  text-decoration: none;
  transition: background-color .2s var(--ease);
}
.crosslinks a:hover { background: var(--ice); text-decoration: none; }
.crosslinks span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-600); }
.crosslinks strong { font-family: var(--font-display); font-size: 21px; font-weight: 500; letter-spacing: -0.02em; color: var(--teal-900); }
.crosslinks p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-500); }
@media (max-width: 860px) { .crosslinks { grid-template-columns: 1fr; } }

/* Reveal on scroll (site.js adds .in when observed) */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }


/* --------------------------------------------------------------------------
   Four-up service grid (home page)
   -------------------------------------------------------------------------- */
.services__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1400px) { .services__grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px)  { .services__grid--4 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   videoband — poster with a play control; embed is injected on click
   -------------------------------------------------------------------------- */
.videoband { background: var(--teal-900); padding: var(--sp-band) var(--gutter-sm); }
.videoband h2, .videoband h3 { color: #fff; }
.videoband .eyebrow { color: var(--ice-200); }
.videoband .lede { color: var(--mist-300); }
.videoband__in { max-width: var(--measure); margin-inline: auto; }
.videoband__head { display: grid; gap: 14px; margin-bottom: clamp(28px, 3vw, 46px); max-width: 62ch; }
.videoband__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7);
  background: #001e20;
  aspect-ratio: 16 / 9;
}
.videoband__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.videoband__frame iframe, .videoband__frame video { width: 100%; height: 100%; border: 0; display: block; }
.videoband__scrim {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,30,32,.15), rgba(0,30,32,.55));
  border: 0;
  cursor: pointer;
  padding: 0;
}
.videoband__play {
  display: grid;
  place-items: center;
  width: clamp(72px, 7vw, 108px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--teal-900);
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, .55);
  transition: transform .24s var(--ease), background-color .24s var(--ease);
}
.videoband__scrim:hover .videoband__play { transform: scale(1.06); background: #fff; }
.videoband__label {
  position: absolute;
  left: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 30px);
  right: clamp(18px, 2vw, 32px);
  text-align: left;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 30, 32, .9);
}
.videoband__meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; font-size: 13.5px; color: var(--mist-300); }
.videoband__meta span { display: inline-flex; align-items: center; gap: 8px; }
.videoband__meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ice-200); }

/* --------------------------------------------------------------------------
   crew — team preview, four portraits and a see-all link
   -------------------------------------------------------------------------- */
.crew { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.4vw, 34px); }
.crew__card { display: grid; gap: 0; text-decoration: none; }
.crew__card:hover { text-decoration: none; }
.crew__shot { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--sand); }
.crew__shot img {
  width: 100%;
  height: clamp(240px, 24vw, 340px);
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.crew__card:hover .crew__shot img { transform: scale(1.04); }
.crew__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0, 59, 63, .88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.crew__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--teal-900);
  margin: 18px 0 4px;
}
.crew__role { margin: 0; font-size: 14.5px; color: var(--aqua-600); font-weight: 500; }
.crew__note { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-500); }
@media (max-width: 1100px) { .crew { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .crew { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   upload — file field for the careers application
   -------------------------------------------------------------------------- */
.upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px dashed rgba(1, 139, 149, .5);
  border-radius: var(--r-md);
  background: rgba(1, 139, 149, .04);
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.upload:hover, .upload--over { border-color: var(--aqua-600); background: rgba(1, 139, 149, .09); }
.upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.upload__icon { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--white); color: var(--aqua-600); box-shadow: var(--sh-1); }
.upload__text { display: grid; gap: 3px; }
.upload__text strong { font-size: 15px; font-weight: 500; color: var(--ink-900); }
.upload__text small { font-size: 12.5px; color: var(--ink-500); }
.upload--filled { border-style: solid; border-color: var(--aqua-600); }
.upload__note { margin: 10px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--ink-500); }


/* --------------------------------------------------------------------------
   Wizard: .form button styling must not swallow choice chips and back links
   -------------------------------------------------------------------------- */
.form .choices { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.form button.choice {
  padding: 18px 20px;
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-weight: 400;
  box-shadow: none;
  align-self: stretch;
  transform: none;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.form button.choice:hover { transform: none; border-color: rgba(1, 139, 149, .55); background: rgba(1, 139, 149, .04); }
.form button.choice[aria-pressed="true"] {
  border-color: var(--aqua-600);
  background: rgba(1, 139, 149, .07);
  box-shadow: 0 0 0 2px rgba(1, 139, 149, .18);
}
.form button.choice strong { font-size: 15px; font-weight: 600; color: var(--ink-900); }
.form button.choice span { font-size: 13px; color: var(--ink-500); }
.form button.pill--outline {
  background: transparent;
  color: var(--teal-900);
  border: 1px solid rgba(0, 59, 63, .3);
  align-self: center;
}
.form button.pill--outline:hover { background: rgba(1, 139, 149, .06); border-color: var(--aqua-600); }
.wiz__step[hidden] { display: none; }
.flow__step { user-select: none; }


/* ==========================================================================
   FINAL TOUCH — typographic balance and quieter detail
   ========================================================================== */

/* Headlines break on meaning rather than on the container edge */
.hero__title, .pagehead__title, .band__title, .cta__title,
.sechead__title, .promise__title, .faq__title, .overview__title,
.enquiry__title, .featured__title, .how__title { text-wrap: balance; }

/* Eyebrows sit closer to the heading they label */
.eyebrow { margin-bottom: 0; }
.band__title { margin-top: 12px; }
.sechead .eyebrow, .band__in > .eyebrow { display: block; margin-bottom: 10px; }

/* Uppercase runs need a touch more room between letters at small sizes */
.pagehead__crumb, .cta__eyebrow, .post__cat, .crosslinks span,
.protocol dt, .spec__rail h3, .spec__rail dt, .crew__tag { letter-spacing: .15em; }

/* Quieter, more even card hover across the whole site */
.scard:hover, .post:hover, .rescard:hover, .job:hover, .sitemap a:hover,
.member:hover, .story:hover, .centre:hover, .gal figure:hover {
  transform: translateY(-2px);
}

/* Tables read better with a little more air and a softer zebra */
.matrix th, .matrix td { padding: 20px 22px; }
.matrix tbody tr:nth-child(even) { background: rgba(1, 139, 149, .028); }
.matrix tbody tr:hover { background: rgba(1, 139, 149, .06); }

/* Hairline FAQ: larger tap target, calmer open state */
.faqq__q { padding: 26px 0; }
.faqq__q:hover { color: var(--aqua-600); }
.faqq__item:has(.faqq__q[aria-expanded="true"]) { background: transparent; }

/* Crosslink rows gain a quiet arrow on hover */
.crosslinks a { position: relative; padding-right: 52px; }
.crosslinks a::after {
  content: "\2192";
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--aqua-600);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.crosslinks a:hover::after { opacity: 1; transform: none; }

/* Dark bands: keep body copy from going too light against the teal */
.band--dark .dayline__who, .band--dark .pillars p, .band--dark .kit dd { color: #cddede; }

/* Leadstat numerals sit tighter to their labels */
.leadstat dd { margin-top: 4px; }


/* ==========================================================================
   MOBILE PASS — small-screen corrections for every band on the site
   ========================================================================== */

@media (max-width: 1000px) {
  /* Two-column inline-styled bands (ICU gate, thank-you careline, our-team bar)
     collapse to one column regardless of their inline grid template */
  .band--dark .band__in[style*="grid-template-columns"],
  .band--white .band__in[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 860px) {
  :root { --gutter: 24px; --gutter-sm: 22px; --sp-band: 52px; --sp-section: 56px; }

  /* Headings: keep the fluid scale from getting too large on narrow screens */
  .band__title { font-size: clamp(25px, 7vw, 32px); max-width: none; }
  .lede { font-size: 17px; }
  .pagehead__title { font-size: clamp(28px, 8vw, 36px); }

  /* Sticky rails must not stick on a phone */
  .spec__rail { position: static !important; padding: 22px; }

  /* Section heads stack instead of pushing the action button off-screen */
  .sechead { flex-direction: column; align-items: flex-start; gap: 18px; }
  .sechead .pill { align-self: flex-start; }

  /* Filter chip rows scroll horizontally instead of wrapping into a wall */
  .filters__row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filters__row::-webkit-scrollbar { display: none; }
  .filters__row .pill { flex: none; }

  /* Wide tables scroll in their wrapper and hint that they do */
  .matrix__wrap {
    overflow-x: auto;
    border-radius: var(--r-md);
    box-shadow: inset -14px 0 14px -14px rgba(0, 43, 46, .3);
  }
  .matrix { min-width: 640px; }

  /* Full-bleed media gets shorter so it does not eat the whole viewport */
  .bleed img { height: clamp(220px, 52vw, 320px); }
  .pair__media img { height: clamp(240px, 58vw, 340px); }
  .videoband__frame { border-radius: var(--r-md); }

  /* Quote band: portrait above the words, both left aligned */
  .bigquote { padding-inline: var(--gutter-sm); }
  .bigquote blockquote { font-size: clamp(21px, 6vw, 26px); }

  /* Hairline stat row reads as a list on a phone */
  .leadstat { padding-inline: var(--gutter-sm); }

  /* Wizard: chips full width, controls stack in a sensible order */
  .form .choices { grid-template-columns: 1fr; }
  .form button.choice { padding: 16px 18px; }
  .flow { overflow-x: auto; scrollbar-width: none; }
  .flow::-webkit-scrollbar { display: none; }
  .flow__step { flex: none; }
}

@media (max-width: 620px) {
  /* Every tap target reaches 44px */
  .pill, .form button, .choice, .faqq__q, .faq__q, .nav__caret, .filters__row .pill {
    min-height: 44px;
  }
  .pill { padding-block: 12px; }
  .faqq__q { padding: 20px 0; gap: 16px; }

  /* Wizard footer: submit first, back below, label last */
  .form [data-wiz-next], .form [data-wiz-submit] { width: 100%; order: 1; }
  .form [data-wiz-back] { order: 2; }
  .form [data-wiz-label] { order: 3; width: 100%; }

  /* The upload target stays comfortable to hit */
  .upload { padding: 16px; }

  /* Timeline: hour label above the entry */
  .dayline > div { padding: 18px 0; }
  .dayline dt { font-size: 16px; }

  /* Cross-links: no hover arrow on touch, so reclaim the padding */
  .crosslinks a { padding: 22px 22px; }
  .crosslinks a::after { display: none; }

  /* Big display numerals scale down rather than overflow */
  .outcomes dt { font-size: clamp(38px, 13vw, 52px); }
  .leadstat dt { font-size: clamp(24px, 8vw, 30px); }

  /* Nothing may cause a sideways scroll */
  body { overflow-x: hidden; }
  img, iframe, table { max-width: 100%; }
}

/* Touch devices: drop hover-only lifts so cards do not stick in a hover state */
@media (hover: none) {
  .scard:hover, .post:hover, .rescard:hover, .job:hover, .member:hover,
  .story:hover, .centre:hover, .gal figure:hover, .crew__card:hover .crew__shot img,
  .post:hover img, .member:hover img, .story:hover img {
    transform: none;
  }
}


/* The hidden attribute must beat inline display on filtered cards */
[hidden] { display: none !important; }
