:root {
  --purple: #4f215f;
  --purple-dark: #42164f;
  --purple-light: #f0eaf5;
  --cream: #f7f8f2;
  --white: #fff;
  --ink: #1e1b20;
  --muted: #6b626d;
  --border: rgba(79, 33, 95, 0.14);
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "Instrument Sans", Arial, sans-serif;
  --shadow: 0 18px 55px rgba(79, 33, 95, 0.12);
  --radius: 22px;
  --container: 1180px;
  --site-header-height: 88px;
}
section + section a.hero__down {
    display: none;
}
* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
p + p { margin-top: 1rem; }
em { font-family: var(--font-serif); font-style: italic; }
h1, h2, h3 {
  margin: 0;
  color: var(--purple);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.96;
}
h1 { font-size: clamp(4rem, 8vw, 7.8rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.7rem, 4.3vw, 4.3rem); letter-spacing: -0.045em; }
h3 { font-size: clamp(2rem, 3vw, 3.3rem); letter-spacing: -0.035em; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 40px, 880px); }
.section {
  padding: clamp(72px, 9vw, 128px) 0;
  overflow: clip;
}
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--purple {
  background: var(--purple);
  color: var(--white);
}
.section--purple h2,
.section--purple .section-kicker { color: var(--white); }
.section--cream .section-kicker,
.team-section .section-kicker { color: var(--ink); }
.section-heading {
  max-width: 720px;
  margin: 0 0 clamp(36px, 5vw, 64px);
}
.section-heading.is-centered { margin-inline: auto; text-align: center; }
.section-heading.is-centered p:not(.section-kicker) { margin-inline: auto; }
.section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rich-text {
  color: inherit;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.rich-text ul { margin: 1.25rem 0 0; padding: 0; list-style: none; }
.rich-text li { margin: 0.5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 36px;
  padding: 0.56rem 2.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary,
.btn--outline {
  background: var(--purple);
  color: var(--white);
}
.btn--outline {
  margin-top: 2rem;
  border-color: currentColor;
}
.btn--light,
.btn--ghost {
  border-color: rgba(255,255,255,0.68);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(79,33,95,0.08);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 2rem;
}
.site-logo {
  margin-right: auto;
  color: var(--purple);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}
.site-logo em { letter-spacing: -0.04em; }
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list li {
  position: relative;
}
.nav-list .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 28px;
}
.nav-list a {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 1002;
  min-width: 220px;
  margin: 0;
  padding: 0.7rem;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-list .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}
.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-list .sub-menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
}
.nav-list .sub-menu a:hover,
.nav-list .sub-menu a:focus {
  background: var(--cream);
  color: var(--purple);
}
.header-cta {
  border-radius: 14px;
  background: var(--purple);
  color: var(--white);
  padding: 0.4rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-menu-cta { display: none; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.hero {
  position: relative;
  min-height: min(72vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero--full {
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100dvh - var(--site-header-height));
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(79,33,95,0.15), rgba(79,33,95,0.38));
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: heroIn 900ms ease both;
}
.hero h1 { color: var(--white); text-shadow: 0 8px 35px rgba(0,0,0,0.18); }
.hero__kicker {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__intro {
  max-width: 640px;
  margin: 1.25rem auto 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}
.hero__content .btn { margin-top: 2rem; }
.hero--home .hero__content { max-width: 940px; }
.hero--home .hero__intro { max-width: 560px; }
.hero--carehome .hero__overlay {
  background: linear-gradient(180deg, rgba(79,33,95,0.08), rgba(79,33,95,0.48));
}
.hero--carehome .hero__logo-badge {
  max-width: 190px;
  padding: 0.85rem;
  background: var(--white);
}
.hero__logo-badge {
  position: absolute;
  right: 7vw;
  bottom: 7vw;
  z-index: 3;
  max-width: 170px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.hero__down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  color: var(--white);
  transform: translateX(-50%);
}
.hero__down svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-hero {
  background: var(--cream);
  padding: clamp(80px, 9vw, 140px) 0;
}
.split-hero--about.split-hero--full {
  height: calc(100vh - var(--site-header-height));
  height: calc(100dvh - var(--site-header-height));
  min-height: 0;
  padding: 0;
}
.split-hero--full {
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100dvh - var(--site-header-height));
  display: flex;
  align-items: center;
}
.split-hero__grid,
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.split-hero__copy h1 { color: var(--purple); }
.split-hero__copy .rich-text { margin-top: 1.5rem; max-width: 560px; }
.split-hero--about .split-hero__copy .rich-text { max-width: 520px; }
.split-hero--about .split-hero__copy h1 {
  max-width: 700px;
  font-size: clamp(3.5rem, 6.6vw, 6.65rem);
}
.split-hero--about.split-hero--full .split-hero__grid {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}
.split-hero--about.split-hero--full .split-hero__copy {
  width: min(100%, 650px);
  margin-left: auto;
  padding: clamp(80px, 9vw, 140px) clamp(32px, 6vw, 90px) clamp(80px, 9vw, 140px) 40px;
}
.split-hero--about.split-hero--full .split-hero__image {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}
.split-hero__image,
.section-split__media > img,
.fade-gallery {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-hero__image {
  background-position: center;
  background-size: cover;
}
.section-split__media > img { object-fit: cover; }
.section-split--reverse .section-split__media { order: -1; }
.section-split--image-right .section-split__media { order: 2; }
.section-split__copy h2 { margin-bottom: 1.25rem; }
.text-image--home_intro .section-split__copy .rich-text { max-width: 560px; }
.text-image--home_intro .section-split__copy .btn,
.text-image--care_gallery .section-split__copy .btn { margin-top: 1.8rem; }
.text-image--care_gallery .section-split__copy h2 { max-width: 620px; }
.feature-split-section--care_feature .section-split__copy .rich-text {
  max-width: 520px;
  font-size: 1rem;
}
.feature-split-section--care_feature .section-split__media > img { aspect-ratio: 1 / 1; }
.feature-split-section--default .section-split__copy .rich-text { font-size: 1rem; }
/* Equalise the split columns on care-home pages so every square section image renders the same size,
   regardless of which side (reverse) the image sits on. Desktop only; mobile still stacks. */
@media (min-width: 901px) {
  .text-image--care_gallery .section-split,
  .feature-split-section .section-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.section--purple .section-split__copy h2 { color: var(--white); }
.section--purple .rich-text { color: rgba(255,255,255,0.86); }

.fade-gallery {
  position: relative;
  background: var(--purple-light);
}
.fade-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
}
.fade-gallery img.is-active { opacity: 1; }
.fade-gallery__controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}
.fade-gallery__controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(79,33,95,0.16);
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 10px 30px rgba(79,33,95,0.14);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.fade-gallery__controls button:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}
.fade-gallery__controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fade-gallery__controls [data-gallery-prev] svg { transform: rotate(90deg); }
.fade-gallery__controls [data-gallery-next] svg { transform: rotate(-90deg); }

.card-grid,
.testimonial-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}
@media (min-width: 901px) {
  /* Five team cards: two centered on the first row, three on the second. */
  .team-grid:has(> .team-card:nth-child(5):last-child) {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .team-grid:has(> .team-card:nth-child(5):last-child) > .team-card {
    grid-column: span 2;
  }
  .team-grid:has(> .team-card:nth-child(5):last-child) > .team-card:nth-child(1) {
    grid-column: 2 / 4;
  }
  .team-grid:has(> .team-card:nth-child(5):last-child) > .team-card:nth-child(2) {
    grid-column: 4 / 6;
  }
}
.image-card,
.testimonial-card,
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(79,33,95,0.07);
}
.image-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
}
.image-card__image img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  padding: 0.42rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.image-card {
  display: flex;
  flex-direction: column;
}
.image-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.35rem;
  color: var(--ink);
}
.image-card__body strong {
  color: var(--purple);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.image-cards-section--home_cards .section-heading .section-kicker { color: var(--ink); }
.image-cards-section--home_cards .image-card__body strong { color: var(--purple); }
.image-cards-section--centered .card-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 760px;
  margin-inline: auto;
}
.circle-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-top: auto;
  align-self: flex-end;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--purple);
}

.big-text {
  padding: clamp(68px, 9vw, 118px) 0;
  text-align: center;
}
.big-text--light { background: var(--purple-light); }
.big-text--dark { background: var(--purple); color: var(--white); }
.big-text--white { background: var(--white); }
.big-text--dark h2 { color: var(--white); }
.big-text h2 {
  max-width: 720px;
  margin-inline: auto;
  font-style: normal;
}
.big-text h2 em { font-style: italic; }
.big-text--quote h2::before { content: '"'; }
.big-text--quote h2::after { content: '"'; }
.big-text--quote h2 { max-width: 690px; }
.big-text--quote_compact h2,
.big-text--intro_compact h2 { max-width: 820px; }
.big-text--intro_compact h2 {
  font-size: clamp(2.7rem, 3.6vw, 5rem);
}
.big-text--quote_compact h2 { font-style: italic; }
.big-text--quote_compact p {
  max-width: 420px;
  color: var(--ink);
  opacity: 1;
  font-weight: 700;
}
.big-text p {
  max-width: 680px;
  margin: 1.3rem auto 0;
  color: currentColor;
  opacity: 1;
}
.big-text--intro_compact p {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.big-text span {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.68rem; 
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.big-text--quote span {
  margin-top: 2.4rem;
}

.icon-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.icon-row {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 1rem;
  align-items: center;
}
.icon-row > span {
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  color: var(--purple);
}
.icon-row svg {
  width: 56px;
  height: 56px;
}
.testimonial-card strong{
	font-weight:  normal;
}
.icon-row strong { display: block; color: var(--purple); }
.icon-row strong:empty { display: none; }
.icon-row p { color: var(--ink); font-size: 0.95rem; margin: 0; }
.icon-row > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon-rows-section--home_offer .section-kicker { color: var(--ink); }
.icon-rows-section--home_offer .section-split__copy h2 { max-width: 560px; }
.icon-rows-section--home_offer .icon-list { max-width: 520px; }

.section--values {
  --values-bg-stop: 34%;
  background: linear-gradient(90deg, var(--purple-light) 0 var(--values-bg-stop), var(--white) var(--values-bg-stop) 100%);
}
.values-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}
.values-layout__heading {
  position: sticky;
  top: 120px;
}
.values-layout__heading h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}
.values-list {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}
.value-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.3rem;
  align-items: start;
}
.value-row__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--purple);
}
.value-row__icon svg {
  width: 58px;
  height: 58px;
}
.value-row h3 {
    color: #4f215f;
    font: 700 0.95rem / 1.25 var(--font-sans);
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: normal;
}
.value-row p {
  max-width: 620px;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.98rem;
}
.values-section--about_values .values-layout__heading .section-kicker { color: var(--ink); }
.values-section--about_values .values-layout__heading p { max-width: 330px; color: var(--ink); }

@media (min-width: 1220px) {
  .section--values {
    /* Align the colour split to the left grid track inside the max-width container. */
    --values-bg-stop: calc((100% - var(--container)) / 2 + 412px);
  }
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.check-list svg {
  width: 20px;
  color: var(--purple);
}
.section--purple .check-list svg { color: var(--white); }

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.team-card img { aspect-ratio: 1 / 0.95; }
.team-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
  background: var(--white);
}
.team-card__more {
  align-self: flex-start;
  margin-top: 0.9rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--purple);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}
.team-card__more:hover { text-decoration: underline; }

body.team-modal-open { overflow: hidden; }
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.team-modal[hidden] { display: none; }
.team-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 32, 0.55);
  backdrop-filter: blur(2px);
}
.team-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(30, 27, 32, 0.35);
  animation: teamModalIn 220ms ease both;
}
@keyframes teamModalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.team-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.team-modal__close:hover {
  background: var(--purple);
  color: var(--white);
}
.team-modal__name {
  display: block;
  padding-right: 40px;
  color: var(--purple);
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.05;
}
.team-modal__role {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.team-modal__bio {
  margin-top: 1.1rem;
  color: var(--ink);
  font-size: 0.98rem;
}
.team-card strong,
.team-card span { display: block; font-weight: normal}
.team-card strong { color: var(--purple); }
.team-section .section-heading p { max-width: 320px; }
.team-card strong { color: var(--ink); }
.team-card span { color: var(--muted); font-size: 0.92rem; }
.team-section--team_compact .section-heading {
  max-width: 620px;
}
.team-section--team_compact .section-heading p:not(.section-kicker) {
  max-width: 330px;
}
.team-section--team_compact .section-kicker { color: var(--ink); }

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}
.testimonials-section--home_reviews .section-kicker {
  font-weight: 500;
}
.testimonials-section--cards-cream .testimonial-card { background: var(--cream); }
.testimonials-section--home_reviews .testimonial-card {
  background: var(--white);
}
.testimonials-section--staff_reviews .section-heading,
.testimonials-section--care_reviews .section-heading {
  max-width: 640px;
}
.testimonials-section--staff_reviews .testimonial-card,
.testimonials-section--care_reviews .testimonial-card {
  box-shadow: none;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #b8a05c;
}
.stars svg { width: 17px; fill: currentColor; }
.testimonial-card p {
  color: var(--ink);
  font-size: 0.98rem;
}
.testimonial-card p::before { content: '"'; }
.testimonial-card p::after { content: '"'; }
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.testimonial-card footer strong,
.testimonial-card footer small {
  display: block;
}
.testimonials-section--staff_reviews .testimonial-card footer strong {
  font-weight: 400;
}
.testimonials-section--care_reviews .testimonial-card footer small {
  color: var(--ink); 
}
.testimonial-card footer small {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}
.testimonial-avatar {
  display: grid !important;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 920px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  overflow: hidden;
}
.faq-section--guide .faq-list {
  max-width: 840px;
}
.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 400 1rem var(--font-sans);
  text-align: left;
}
.faq-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--purple);
  transition: transform 180ms ease;
}
.faq-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.is-open .faq-toggle { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}
.faq-answer div {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink);
}

.map-contact-video {
  margin: clamp(32px, 5vw, 56px) 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(79, 33, 95, 0.08);
  background: var(--white);
}
.map-contact-video__title {
  margin: 0;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) 0;
  color: var(--purple);
  font-size: clamp(2rem, 3vw, 3.3rem);
  text-align: center;
}
.map-contact-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  border: 0;
}
.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(79,33,95,0.08);
}
.map-contact-section--carehome .map-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  border: 0;
  box-shadow: 0 24px 70px rgba(79,33,95,0.1);
}
.map-contact-section--carehome .map-card__contact {
  background: var(--white);
}
.map-contact-section--carehome .map-card__map iframe {
  filter: grayscale(1);
}
.map-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.map-card__contact {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(28px, 4vw, 56px);
}
.map-card__contact h3 { color: var(--purple); }
.map-card__contact p { color: var(--ink); }
.map-card__contact a {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--purple);
  font-weight: 400;
}
.map-card__contact svg { width: 18px; }

.contact-form-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 60px rgba(79,33,95,0.08);
}
.contact-form-card .wpcf7-form {
  display: grid;
  gap: 1rem;
}
.contact-form-card label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 400;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(79,33,95,0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 0.9rem 1rem;
  font: 400 1rem var(--font-sans);
}
.contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: 2px solid rgba(79,33,95,0.2);
  outline-offset: 2px;
}
.contact-form-card .wpcf7-list-item {
  margin: 0;
}
.contact-form-card .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
}
.contact-form-card .wpcf7-acceptance input {
  width: auto;
  margin-top: 0.25rem;
}
.contact-form-card input[type="submit"] {
  width: auto;
  min-width: 190px;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-form-card .wpcf7-not-valid-tip,
.contact-form-card .wpcf7-response-output {
  color: var(--purple);
  font-size: 0.9rem;
}
.contact-form-card .wpcf7-response-output {
  margin: 0;
  border-color: var(--border);
  border-radius: 12px;
}

.legal-content {
  display: grid;
  gap: 1.1rem;
  color: var(--ink);
}
.legal-content h1 {
  margin-bottom: 0.5rem;
  color: var(--purple);
  font-size: clamp(3rem, 7vw, 6.2rem);
}
.legal-content h2 {
  margin-top: clamp(28px, 5vw, 56px);
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
}
.legal-content p {
  color: var(--ink);
}
.legal-content__intro {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.site-footer {
  background: var(--purple);
  color: var(--white);
}
.footer-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.26);
  text-align: center;
}
.footer-cta h2 { color: var(--white); }
.footer-cta p {
  margin: 1.5rem auto 2.5rem;
  max-width: 640px;
  opacity: 0.82;
}
.footer-main {
  padding: clamp(60px, 8vw, 100px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: clamp(44px, 8vw, 110px);
}
.footer-mark {
  display: grid;
  width: 82px;
  height: 48px;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.footer-main h3 { color: var(--white); }
.footer-main h3 + a { margin-top: 1.1rem; }
.footer-main a,
.footer-main small,
.footer-main address {
  display: block;
  color: rgba(255,255,255,0.82);
  font-style: normal;
}
.footer-main small { margin-top: 2rem; font-size: 0.72rem; }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.footer-columns strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reveal,
.reveal-children > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible,
.reveal-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 270ms; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  :root { --site-header-height: 76px; }
  .header-inner { min-height: 76px; }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem calc(8rem + env(safe-area-inset-bottom, 0px));
    background: var(--purple);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 340ms ease, opacity 340ms ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 28%),
      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 26%);
    pointer-events: none;
  }
  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .nav-list {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .nav-list li {
    width: 100%;
    text-align: center;
  }
  .nav-list .sub-menu {
    position: static;
    display: grid;
    gap: 0.1rem;
    min-width: 0;
    margin: 0.15rem 0 0;
    padding: 0 0 0.4rem;
    list-style: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-list .sub-menu::before { display: none; }
  .nav-list li:hover > .sub-menu,
  .nav-list li:focus-within > .sub-menu {
    transform: none;
  }
  .nav-list .sub-menu li {
    width: 100%;
  }
  .nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 3.05rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    text-transform: none;
  }
  .nav-list .sub-menu a {
    min-height: 34px;
    border-bottom: 0;
    color: rgba(255,255,255,0.82);
    font-family: var(--font-sans);
    font-size: clamp(0.92rem, 4vw, 1.05rem);
    letter-spacing: 0.02em;
  }
  .nav-list .menu-item-has-children > a {
    border-bottom-color: rgba(255,255,255,0.2);
  }
  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--white);
  }
  .header-cta {
    display: none;
  }
  body.menu-open .header-cta {
    display: none;
  }
  .mobile-menu-cta {
    position: absolute;
    left: 50%;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    z-index: 1;
    display: inline-flex;
    min-width: 190px;
    justify-content: center;
    transform: translateX(-50%);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    padding: 0.64rem 1.8rem;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .menu-toggle {
    position: relative;
    z-index: 1001;
    display: flex;
  }
  body.menu-open .menu-toggle span { background: var(--white); }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split-hero__grid,
  .section-split,
  .values-layout,
  .map-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-split--reverse .section-split__media,
  .section-split--image-right .section-split__media { order: 0; }
  .split-hero--about.split-hero--full {
    display: block;
    height: auto;
    min-height: 0;
  }
  .split-hero--about.split-hero--full .split-hero__grid {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .split-hero--about.split-hero--full .split-hero__copy {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    padding: 80px 0 40px;
  }
  .split-hero--about.split-hero--full .split-hero__image {
    height: auto;
    min-height: 55vh;
  }
  .section--values {
    background: var(--white);
  }
  .values-layout__heading {
    position: static;
  }
  .card-grid,
  .testimonial-grid,
  .team-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .image-cards-section--centered .card-grid {
    max-width: 420px;
  }
  .hero { min-height: 74vh; }
  .hero__logo-badge { right: 24px; bottom: 82px; max-width: 120px; }
  .hero--carehome .hero__logo-badge {
    right: auto;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
  }
  .map-contact-section--carehome .map-card {
    grid-template-columns: 1fr;
  }
  .map-card__map iframe {
    min-height: 320px;
  }
}

.map-contact-video__title {
    margin: 20px 0 40px; 
}

@media (max-width: 560px) {
  .container,
  .container--narrow { width: min(100% - 28px, var(--container)); }
  h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .section { padding: 64px 0; }
  .footer-cta,
  .footer-main { padding: 56px 0; }
}
h1,h2,h3,h4,h5{
	font-weight: normal;
}