/* ═══════════════════════════════════════════════════════════════
   ARMONY HOME CARE — brand palette sampled from approved design
   ═══════════════════════════════════════════════════════════════ */
:root {
  --purple:        #6E2D91;
  --purple-deep:   #6B248C;
  --purple-soft:   #8B3F98;
  --blue:          #1378BE;
  --blue-sky:      #29A8E0;
  --pink:          #E5348C;
  --magenta:       #C13B8C;
  --orange:        #F0812C;
  --yellow:        #F2C43B;
  --green:         #3FA249;
  --red:           #E8484F;
  --ink:           #2B2B33;
  --text:          #55555C;
  --text-soft:     #6B6B72;
  --lavender:      #F4ECF7;
  --line:          #ECE6F2;
  --white:         #ffffff;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-logo:  'Julius Sans One', 'Poppins', sans-serif;

  --grad-rainbow: linear-gradient(90deg, #8B2F96 0%, #D2358C 22%, #F0812C 42%, #F2C43B 58%, #3FA249 76%, #1378BE 100%);
  --shadow-card: 0 4px 18px rgba(110, 45, 145, 0.06);
  --shadow-card-hover: 0 14px 34px rgba(110, 45, 145, 0.16);
  --container: 1366px;
  --pad: 40px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 160px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 300;
  background: var(--purple-deep);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.site-footer :focus-visible,
.cv-questions :focus-visible {
  outline-color: #fff;
}
/* scroll targets get focus programmatically; don't ring the whole section */
main[tabindex="-1"]:focus,
section[tabindex="-1"]:focus,
footer[tabindex="-1"]:focus {
  outline: none;
}

/* ══════════════════ SHARED PIECES ══════════════════ */
.section-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--purple);
}

.rainbow-rule {
  display: flex;
  align-items: center;
  margin: 10px 0 22px;
  max-width: 176px;
}
.rule-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-rainbow);
}
.rule-heart {
  width: 30px;
  height: 28px;
  margin-left: -15px;
  background: #fff;
  padding: 0 2px;
  flex: none;
  animation: heartbeat 2.6s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  12%      { transform: scale(1.14); }
  24%      { transform: scale(1); }
  36%      { transform: scale(1.1); }
  48%      { transform: scale(1); }
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.24;
  color: var(--purple);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--text);
  max-width: 520px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 14px;
  padding: 18px 32px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-arrow { width: 18px; height: 13px; transition: transform 0.25s ease; }
.btn-cal { width: 20px; height: 20px; }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary {
  background: linear-gradient(135deg, #7D2F96 0%, #6B248C 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(107, 36, 140, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6B248C 0%, #59176F 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(107, 36, 140, 0.38);
}
.btn-pill { border-radius: 999px; padding: 17px 38px; }

.btn-outline-rainbow {
  position: relative;
  background: #fff;
  color: var(--purple);
  border: none;
}
.btn-outline-rainbow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(120deg, #F2C43B, #F0812C 25%, #E5348C 50%, #8B2F96 72%, #1378BE 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.btn-outline-rainbow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139, 47, 150, 0.16);
}

/* colour utilities */
.c-purple { color: var(--purple-soft); }
.c-orange { color: #E8701B; }
.c-green  { color: #2B9A48; }
.c-blue   { color: var(--blue); }

/* ══════════════════ HEADER ══════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(60, 20, 90, 0.1);
}
.site-header .container { max-width: none; padding-left: 34px; padding-right: 34px; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-mark { width: 94px; height: 94px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-logo);
  font-size: 35px;
  letter-spacing: 2.5px;
  display: flex;
}
.brand-name i { font-style: normal; }
.brand-name i:nth-child(1) { color: #F2B234; }
.brand-name i:nth-child(2) { color: #E43D30; }
.brand-name i:nth-child(3) { color: #6EC6E9; }
.brand-name i:nth-child(4) { color: #232A5C; }
.brand-name i:nth-child(5) { color: #4CAE4F; }
.brand-name i:nth-child(6) { color: #F28C33; }
.brand-sub {
  font-family: var(--font-logo);
  font-size: 18px;
  letter-spacing: 6.5px;
  color: var(--ink);
  margin-top: 5px;
}
.brand-divider {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}
.brand-divider > span {
  flex: 1;
  height: 1px;
  background: #C9C2D4;
}
.brand-divider svg { width: 13px; height: 12px; flex: none; }

.brand-tagline {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  font-size: 12.5px;
  font-weight: 600;
}
.brand-tagline .tg-purple { font-style: normal; color: var(--purple-soft); }
.brand-tagline .tg-blue   { font-style: normal; color: var(--blue); }
.tg-cross { width: 12px; height: 12px; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 38px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #3A3A42;
  padding: 10px 0;
  position: relative;
  transition: color 0.22s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 3px;
  width: 100%;
  max-width: 34px;
  border-radius: 3px;
  background: var(--purple-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--purple); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.chevron { width: 11px; height: 8px; transition: transform 0.25s ease; }
.nav-item.has-dropdown:hover .chevron,
.nav-item.has-dropdown.is-open .chevron { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  min-width: 250px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(58, 20, 90, 0.16);
  border: 1px solid #F0EAF6;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 60;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--grad-rainbow);
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown,
.nav-item.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: #46464e;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.dropdown li a:hover {
  background: var(--lavender);
  color: var(--purple);
  padding-left: 22px;
}

/* Phone pill */
.phone-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.6px solid var(--purple-soft);
  border-radius: 999px;
  padding: 11px 22px 11px 18px;
  color: var(--purple);
  font-weight: 600;
  font-size: 16.5px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.phone-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: none;
  color: inherit;
}
.phone-icon svg { width: 21px; height: 21px; }
.phone-pill:hover {
  background: linear-gradient(135deg, #7D2F96, #6B248C);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(107, 36, 140, 0.25);
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 13px 9px;
  margin: -7px 0;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-rainbow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 15, 60, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 98;
}
.nav-overlay.is-visible { opacity: 1; visibility: visible; }

/* ══════════════════ HERO ══════════════════ */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 30px;
  width: 380px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-content { padding: 46px 0 128px; position: relative; z-index: 3; }
.hero .rainbow-rule { max-width: 335px; }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.17;
  margin: 6px 0 22px;
  white-space: nowrap;
}
.hero-title span { display: block; }
.t-purple { color: var(--purple); }
.t-blue   { color: var(--blue); }

.hero-text {
  font-size: 18px;
  color: #4E4E55;
  max-width: 475px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: calc(-1 * (max(0px, (100vw - var(--container)) / 2) + var(--pad)));
  padding: 8px 0 66px;
}
.hero-photo {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 100%), linear-gradient(180deg, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 100%), linear-gradient(180deg, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 190px; }

/* ══════════════════ FEATURES ══════════════════ */
.features { padding: 40px 0 44px; background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  text-align: center;
  padding: 6px 26px;
  position: relative;
}
.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: #E9E4EF;
}
.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover .feature-icon {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 26px rgba(110, 45, 145, 0.12);
}
.feature-icon svg { width: 56px; height: 56px; }
.ring-pink   { border-color: #F3D3E6; }
.ring-orange { border-color: #FAD9C2; }
.ring-green  { border-color: #CFE8D2; }
.ring-blue   { border-color: #CBDFF2; }

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p { font-size: 14.5px; color: var(--text); max-width: 250px; margin: 0 auto; }

/* ══════════════════ SERVICES + WHY ══════════════════ */
.services-why { padding: 18px 0 26px; }
.services-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 60px;
  position: relative;
}
.services-why-grid::before {
  content: "";
  position: absolute;
  left: calc(100% - 440px - 30px);
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #ECE8F1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.service-card {
  display: block;
  background: #fff;
  border: 1px solid #EDE9F4;
  border-radius: 15px;
  padding: 22px 18px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card-hover);
  border-color: #DCC8EA;
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-3deg); }
.service-icon svg { width: 56px; height: 56px; }

.service-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.service-card p { font-size: 14px; color: var(--text); line-height: 1.55; }

.c-companion   { color: #9C429C; }
.c-personal    { color: #5D3F98; }
.c-respite     { color: #1F87C6; }
.c-specialized { color: #1B95CC; }
.c-posthosp    { color: #5D3F98; }
.c-more        { color: #6E3D9B; }

.services-cta { text-align: center; margin-top: 26px; }

/* ── Why column ── */
.why-col .section-title { font-size: 31px; }
.why-col .section-sub { font-size: 16.5px; }

.check-list { margin: 20px 0 26px; display: grid; gap: 13px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #46464E;
  font-weight: 500;
}
.check {
  width: 26px;
  height: 26px;
  flex: none;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.check svg { width: 26px; height: 26px; }
.check-list li:hover .check { transform: scale(1.2); }
.check-pink   { color: var(--pink); }
.check-blue   { color: #2C97D8; }
.check-green  { color: var(--green); }
.check-red    { color: var(--red); }
.check-orange { color: var(--orange); }

/* Testimonial */
.testimonial {
  position: relative;
  border: 1.6px solid #9A5DB0;
  border-radius: 18px;
  padding: 28px 26px 32px;
  margin-top: 12px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial:hover {
  box-shadow: 0 16px 36px rgba(110, 45, 145, 0.12);
  transform: translateY(-3px);
}
.testimonial blockquote p {
  font-size: 15.5px;
  color: #3C3C44;
  line-height: 1.75;
}
.testimonial figcaption {
  margin-top: 14px;
  font-weight: 600;
  font-size: 16px;
  color: var(--purple);
}
.quote {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #5B2D8E;
  background: #fff;
  padding: 0 10px;
}
.quote-open  { top: -26px; left: 16px; }
.quote-close { bottom: -38px; right: 16px; }
.testimonial-heart {
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 10px;
}
.testimonial-heart svg { width: 34px; height: 32px; display: block; animation: heartbeat 2.6s ease-in-out infinite; }

/* ══════════════════ CTA BAND ══════════════════ */
.cta-section { padding: 32px 0 22px; }
.cta-band {
  background: linear-gradient(100deg, #F5EDF8 0%, #F3EAF7 55%, #EFE9F8 100%);
  border-radius: 22px;
  padding: 30px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.cta-icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
}
.cta-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(#F2C43B, #F0812C, #E5348C, #8B2F96, #1378BE, #3FA249, #F2C43B);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.cta-icon svg { width: 50px; height: 46px; animation: heartbeat 2.6s ease-in-out infinite; }
.cta-copy { flex: 1; }
.cta-copy h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 31px;
  color: var(--purple);
  margin-bottom: 6px;
}
.cta-copy p { font-size: 16px; color: #4E4E55; }
.cta-btn { flex: none; }

/* ══════════════════ FOOTER ══════════════════ */
.site-footer {
  position: relative;
  background: linear-gradient(103deg,
    #7A2F9E 0%,
    #A63489 18%,
    #C94E68 32%,
    #E0913C 44%,
    #A9A83E 54%,
    #55A167 66%,
    #1D93AE 80%,
    #0180D4 100%);
  color: #fff;
  margin-top: 24px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 12, 48, 0.16);
  pointer-events: none;
}
.site-footer a, .site-footer p, .site-footer h2, .site-footer h3, .site-footer address, .site-footer .footer-name, .site-footer .footer-sub {
  text-shadow: 0 1px 3px rgba(30, 10, 45, 0.28);
}

.footer-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  pointer-events: none;
}
.footer-wave svg { display: block; width: 100%; height: 96px; }

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 1.25fr;
  gap: 40px;
  padding-top: 130px;
  padding-bottom: 30px;
}

.footer-brand { max-width: 360px; }
.footer-brand-row { display: flex; align-items: center; gap: 16px; }
.footer-mark { width: 104px; height: 104px; object-fit: contain; flex: none; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer-name {
  font-family: var(--font-logo);
  font-size: 34px;
  letter-spacing: 3px;
}
.footer-sub {
  font-family: var(--font-logo);
  font-size: 16px;
  letter-spacing: 5.5px;
  margin-top: 7px;
  opacity: 0.95;
}
.footer-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 12px;
}
.footer-divider span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.footer-divider svg { width: 15px; height: 14px; flex: none; opacity: 0.9; }
.footer-tagline {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 20px;
}
.ft-heart { width: 22px; height: 20px; flex: none; }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #7B2F96;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.footer-col h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col ul li a {
  font-size: 15.5px;
  opacity: 0.95;
  position: relative;
  transition: opacity 0.2s ease, padding-left 0.22s ease;
}
.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: translateY(-50%);
  transition: width 0.22s ease;
}
.footer-col ul li a:hover { opacity: 1; padding-left: 16px; }
.footer-col ul li a:hover::before { width: 10px; }

.footer-contact ul { gap: 11px; }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
}
.footer-contact ul li a { font-size: 15.5px; }
.footer-contact ul li a:hover { opacity: 1; padding-left: 0; }
.footer-contact ul li a::before { display: none; }
.contact-ic {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  color: #0E86C8;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px;
}
.contact-ic svg { width: 18px; height: 18px; }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 13.5px;
  flex-wrap: wrap;
}
.footer-bottom a { opacity: 0.95; transition: opacity 0.2s ease; display: inline-block; padding: 8px 4px; }
.footer-bottom a:hover { opacity: 1; text-decoration: underline; }
.dot-sep { opacity: 0.6; }

/* ══════════════════ BACK TO TOP ══════════════════ */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #8B2F96, #1378BE);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 10px 24px rgba(80, 30, 120, 0.32);
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ══════════════════ REVEAL ANIMATIONS ══════════════════ */
.js .reveal, .js .reveal-photo {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal-photo { transform: translateX(30px) scale(0.98); }
.reveal.is-visible, .reveal-photo.is-visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-photo { opacity: 1; transform: none; transition: none; }
  .rule-heart, .cta-icon svg, .testimonial-heart svg { animation: none; }
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1330px) {
  html { scroll-padding-top: 134px; }
  .nav-list { gap: 20px; }
  .nav-link { font-size: 13.5px; }
  .brand-mark { width: 66px; height: 66px; }
  .brand-name { font-size: 26px; letter-spacing: 2px; }
  .brand-sub { font-size: 13.5px; letter-spacing: 4.5px; }
  .brand-tagline { font-size: 11px; }
  .phone-pill { font-size: 14.5px; padding: 6px 18px 6px 7px; }
  .phone-icon { width: 32px; height: 32px; }
  .hero-title { font-size: 48px; }
}

@media (max-width: 1150px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    background: #fff;
    margin: 0;
    padding: 96px 30px 40px;
    box-shadow: -18px 0 50px rgba(50, 15, 80, 0.18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.3, 1), visibility 0.35s;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { justify-content: space-between; width: 100%; padding: 13px 4px; font-size: 15px; }
  .nav-link::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #8B2F96, #1378BE) 1;
    border-radius: 0;
    margin: 0 0 6px 10px;
    padding: 0 0 0 8px;
    display: none;
  }
  .dropdown::after { display: none; }
  .nav-item.is-open > .dropdown { display: block; visibility: visible; }
  .hamburger { display: flex; margin-left: 6px; }
  .phone-pill { margin-left: auto; padding: 6px; border-radius: 50%; gap: 0; }
  .phone-num { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 34px 0 40px; }
  .hero-media { order: 2; padding: 0 0 120px; }
  .hero-watermark { width: 300px; top: auto; bottom: 130px; }
  .services-why-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-why-grid::before { display: none; }
  .why-col { max-width: 560px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 44px 32px; padding-top: 110px; }
  .footer-col ul li a { overflow-wrap: anywhere; }
}

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .feature:nth-child(3)::before { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 38px 28px; }
}

@media (max-width: 660px) {
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --pad: 22px; }
  .brand-tagline { display: none; }
  .brand-mark { width: 54px; height: 54px; }
  .brand-name { font-size: 21px; }
  .brand-sub { font-size: 11px; letter-spacing: 3.5px; margin-top: 4px; }
  .hero-title { font-size: 31px; white-space: normal; }
  .hero-text { font-size: 16px; }
  .btn { padding: 14px 22px; font-size: 12.5px; white-space: normal; text-align: center; line-height: 1.3; }
  html { scroll-padding-top: 122px; }
  .site-header .container { padding-left: var(--pad); padding-right: var(--pad); }
  .features-grid { grid-template-columns: 1fr; }
  .feature + .feature::before { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 29px; }
  .why-col .section-title { font-size: 28px; }
  .footer-main { grid-template-columns: 1fr; padding-top: 96px; }
  .footer-bottom-inner { gap: 12px; font-size: 13px; }
  .hero-wave svg { height: 120px; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Page hero variant ── */
.page-hero .hero-inner { grid-template-columns: minmax(0, 480px) minmax(0, 1fr); }
.page-hero .hero-content { padding: 50px 0 80px; }
.page-hero .hero-title { font-size: 52px; }
.page-hero .hero-media { padding: 0 0 60px; }
.page-hero .hero-watermark { display: none; }
.page-hero .hero-title { white-space: normal; }
.page-hero .hero-text { max-width: 425px; }

/* ── Our Story + Mission / Vision / Values ── */
.story-section { padding: 4px 0 4px; }
.story-grid {
  padding-left: calc(var(--pad) + 57px);
  padding-right: calc(var(--pad) + 15px);
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.story-col .section-title { font-size: 27px; margin-bottom: 4px; }
.story-col .rainbow-rule { max-width: 175px; margin: 6px 0 16px; }
.story-col p { font-size: 15.5px; line-height: 1.82; color: var(--text); }
.story-col p + p { margin-top: 20px; }

.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 18px; }
.mvv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #EDE9F4;
  border-radius: 16px;
  padding: 20px 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #DCC8EA;
}
.mvv-icon { margin-bottom: 10px; transition: transform 0.3s ease; }
.mvv-icon svg { width: 46px; height: 46px; display: block; }
.mvv-card:hover .mvv-icon { transform: scale(1.08); }
.mvv-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.mv-purple { color: #7B2F96; }
.mv-orange { color: #EA6B1F; }
.mv-green  { color: #3B9C46; }
.mvv-card p { font-size: 14.5px; line-height: 1.7; color: var(--text); margin-bottom: 14px; }
.mvv-underline {
  display: block;
  width: 62px;
  height: 3px;
  border-radius: 3px;
  margin-top: auto;
}
.u-purple { background: #7B2F96; }
.u-orange { background: #EA6B1F; }

.values-list { align-self: center; text-align: left; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: #46464E;
}
.values-list li + li { margin-top: 11px; }
.val-ic { flex: none; display: block; }
.val-ic svg { width: 19px; height: 17px; display: block; }

/* ── The Armony Difference ── */
.difference-section { padding: 10px 0 12px; }
.diff-head { text-align: center; margin-bottom: 20px; }
.diff-head .section-title { font-size: 30px; margin-bottom: 8px; }
.diff-rule-wrap { position: relative; display: flex; justify-content: center; }
.diff-rule-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 1px;
  background: #E9E3EE;
}
.diff-rule-wrap .rainbow-rule {
  position: relative;
  margin: 0;
  width: 340px;
  max-width: 100%;
}

.difference-row { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 46px; }
.diff-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 4px 22px;
}
.diff-item:first-child { padding-left: 0; }
.diff-item:last-child  { padding-right: 0; }
.diff-item + .diff-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4%;
  bottom: 4%;
  width: 1px;
  background: #E9E4EF;
}
.diff-icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 1.6px solid;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diff-item:hover .diff-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 22px rgba(110, 45, 145, 0.12);
}
.diff-icon svg { width: 52px; height: 52px; }
.ring-purple  { border-color: #C9A0D9; }
.ring-orange2 { border-color: #F5B98A; }
.ring-green2  { border-color: #A5D3A8; }
.ring-blue2   { border-color: #9CCDEA; }
.diff-body h3 { font-size: 14.5px; font-weight: 600; margin-bottom: 5px; }
.diff-body p { font-size: 13.5px; line-height: 1.6; color: var(--text); }

/* ── Our Commitment to You ── */
.commitment-section { padding: 8px 0 10px; }
.commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
  align-items: stretch;
}
.commit-photo { border-radius: 16px; overflow: hidden; }
.commit-photo img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.commit-panel {
  background: #FAF5FC;
  border-radius: 16px;
  padding: 22px 26px 20px;
}
.commit-panel .rule-heart { background: #FAF5FC; }
.commit-panel .section-title { font-size: 32px; margin-bottom: 6px; }
.rainbow-rule--wide { max-width: 395px; margin: 6px 0 18px; }
.commit-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 640px;
}

.commit-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.commit-item { position: relative; text-align: center; padding: 0 10px; }
.commit-item + .commit-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: #E6DDEC;
}
.commit-ic { display: block; margin: 0 auto 8px; transition: transform 0.3s ease; }
.commit-ic svg { width: 40px; height: 40px; display: block; margin: 0 auto; }
.commit-item:hover .commit-ic { transform: translateY(-4px) scale(1.07); }
.commit-item h3 { font-size: 14px; font-weight: 600; line-height: 1.35; margin-bottom: 7px; }
.commit-item p { font-size: 13px; line-height: 1.55; color: var(--text); overflow-wrap: normal; word-break: keep-all; }

/* ── About testimonial band ── */
.about-quote-section { padding: 10px 0 12px; }
.about-quote {
  position: relative;
  background: linear-gradient(100deg, #F5EDF8 0%, #F3EAF7 55%, #F1EAF8 100%);
  border-radius: 18px;
  padding: 22px 190px 22px 80px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.about-quote:hover {
  box-shadow: 0 16px 36px rgba(110, 45, 145, 0.1);
  transform: translateY(-3px);
}
.about-quote blockquote p {
  font-size: 16px;
  line-height: 1.68;
  color: #3C3C44;
  max-width: 660px;
  margin: 0 auto;
}
.about-quote figcaption {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--purple);
}
.aq-open, .aq-close {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #5B2D8E;
}
.aq-open  { left: 44px; top: 36px; }
.aq-close { right: 34px; bottom: 26px; }
.aq-heart {
  position: absolute;
  right: 104px;
  top: 50%;
  transform: translateY(-50%);
}
.aq-heart svg { width: 80px; height: 74px; display: block; }

/* ── Footer with CTA band (no wave) ── */
.site-footer--cta { margin-top: 0; }
.site-footer--cta .footer-wave { display: none; }
.site-footer--cta .footer-main { padding-top: 26px; }

.footer-cta {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.site-footer--flat {
  background: linear-gradient(100deg, #5B359A 0%, #6E3392 27%, #6A4596 50%, #186CB4 76%, #017ACD 100%);
}
.site-footer--flat .footer-cta {
  background: linear-gradient(90deg, #6E2D96 0%, #BA3569 21%, #D7774D 37%, #C0A84A 50%, #6CA86C 64%, #2E9BB8 81%, #0285D7 100%);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.fcta-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  flex: none;
}
.fcta-icon svg { width: 36px; height: 33px; }
.fcta-copy { flex: 1; }
.fcta-copy h2 {
  font-size: 25.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.fcta-copy p { font-size: 15.5px; color: #fff; }
.fcta-btn {
  flex: none;
  background: #fff;
  color: #1378BE;
  box-shadow: 0 8px 22px rgba(20, 10, 40, 0.18);
}
.fcta-btn:hover {
  background: #F2F9FF;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 10, 40, 0.26);
}

/* ── About responsive ── */
@media (max-width: 1330px) {
  .about-quote { padding: 36px 180px 34px 76px; }
  .aq-heart { right: 88px; }
}

@media (max-width: 1150px) {
  .page-hero .hero-inner { grid-template-columns: 1fr; }
  .page-hero .hero-title { font-size: 44px; }
  .page-hero .hero-content { padding: 36px 0 34px; }
  .story-grid { padding-left: var(--pad); padding-right: var(--pad); }
  .difference-row { padding: 0; }
  .diff-item:nth-child(even) { padding-right: 0; }
  .page-hero .hero-media { padding: 0 0 120px; }
  .page-hero .hero-photo { height: clamp(230px, 44vw, 400px); }
  .story-grid { grid-template-columns: 1fr; gap: 34px; }
  .story-col { max-width: 640px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .commit-photo img { min-height: 260px; max-height: 340px; }
  .difference-row { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .diff-item { padding: 4px 22px; }
  .diff-item:nth-child(odd) { padding-left: 0; }
  .diff-item:nth-child(odd)::before { display: none; }
}

@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .commit-items { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .commit-item:nth-child(odd)::before { display: none; }
  .footer-cta-inner { flex-direction: column; text-align: center; gap: 18px; }
  .fcta-copy h2 { font-size: 24px; }
  .about-quote { padding: 74px 34px 96px; }
  .aq-open { left: 28px; top: 26px; }
  .aq-close { right: 28px; bottom: 22px; }
  .aq-heart {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 22px;
    transform: translateX(-50%);
  }
  .aq-heart svg { width: 62px; height: 58px; }
}

@media (max-width: 600px) {
  .page-hero .hero-title { font-size: 31px; }
  .footer-mark { width: 74px; height: 74px; }
  .footer-name { font-size: 27px; letter-spacing: 2px; }
  .footer-sub { font-size: 13px; letter-spacing: 4px; }
  .difference-row { grid-template-columns: 1fr; row-gap: 26px; }
  .diff-item { padding: 0; }
  .diff-item::before { display: none; }
  .commit-items { grid-template-columns: 1fr; }
  .commit-item::before { display: none; }
  .commit-panel { padding: 26px 22px 24px; }
  .commit-panel .section-title,
  .story-col .section-title,
  .diff-head .section-title { font-size: 27px; }
  .about-quote blockquote p { font-size: 15.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════ */

/* hero: first heading line is navy in this comp */
.t-navy { color: #122043; }
.svc-hero .section-label,
.svcdiff-body .section-label { font-size: 17px; font-weight: 700; letter-spacing: 0.5px; }
.svc-hero .hero-title { font-size: 62px; }
.svc-hero .hero-text { font-size: 16.5px; max-width: 470px; }
.svc-hero .rainbow-rule { max-width: 235px; }
.svc-hero .hero-actions .btn { padding: 20px 34px; font-size: 14.5px; }

/* centred section heading with the rule beneath it */
.rainbow-rule--center { margin: 8px auto 0; max-width: 430px; }
.svc-head { text-align: center; margin-bottom: 18px; }
.svc-head .section-title { font-size: 31px; margin-bottom: 6px; }
.svc-sub { font-size: 16.5px; color: var(--text); margin-top: 14px; }

/* ── service card grid ── */
.svc-section { padding: 16px 0 22px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #EFEAF4;
  border-radius: 16px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card-hover);
  border-color: #DCC8EA;
}
.svc-ic {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex: none;
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-ic { transform: translateY(-3px) scale(1.06); }
.svc-ic svg { width: 74px; height: 74px; }

/* tinted icon plates, sampled from the comp */
.ic-companion   { background: #9858AC; color: #fff; }
.ic-personal    { background: #FBDDE9; color: #D6337A; }
.ic-respite     { background: #FEE6DA; color: #EE7028; }
.ic-specialized { background: #DCEDDB; color: #2F8F3C; }
.ic-posthosp    { background: #D8EAFE; color: #2C7CC4; }
.ic-homesupport { background: #EDE5F4; color: #7B2F96; }
.ic-livein      { background: #DDF0F7; color: #1E5FA6; }
.ic-endoflife   { background: #FCE2EF; color: #D62D6B; }

.svc-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.svc-card p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
  max-width: 235px;
  margin: 0 auto 20px;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 600;
  transition: gap 0.25s ease;
}
.svc-more svg { width: 18px; height: 13px; transition: transform 0.25s ease; }
.svc-more:hover svg { transform: translateX(4px); }

/* card accent colours */
.c-companion   { color: #6E2D91; }
.c-personal    { color: #D6337A; }
.c-respite     { color: #EE7028; }
.c-specialized { color: #2F8F3C; }
.c-posthosp    { color: #2C7CC4; }
.c-homesupport { color: #7B2F96; }
.c-livein      { color: #1E5FA6; }
.c-endoflife   { color: #D62D6B; }

/* ── The Armony Difference ── */
.svcdiff-section { padding: 22px 0 18px; }
.svcdiff-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: center;
}
.svcdiff-photo { border-radius: 16px; overflow: hidden; }
.svcdiff-photo img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.svcdiff-body .section-title { font-size: 30px; margin-bottom: 8px; }
.svcdiff-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 22px;
}

.svcdiff-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.svcdiff-item { position: relative; text-align: center; padding: 0 8px; }
.svcdiff-item + .svcdiff-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4%;
  bottom: 4%;
  width: 1px;
  background: #E9E3EE;
}
.svcdiff-ic { display: block; margin: 0 auto 10px; transition: transform 0.3s ease; }
.svcdiff-ic svg { width: 60px; height: 60px; display: block; margin: 0 auto; }
.svcdiff-item:hover .svcdiff-ic { transform: translateY(-4px) scale(1.07); }
.svcdiff-item h3 { font-size: 14.5px; font-weight: 600; line-height: 1.35; margin-bottom: 7px; }
.svcdiff-item p { font-size: 13.5px; line-height: 1.6; color: var(--text); max-width: 160px; margin: 0 auto; }

/* ── testimonial band ── */
.svcquote-section { padding: 16px 0 24px; }
.svc-quote {
  position: relative;
  display: block;
  text-align: center;
  background: linear-gradient(100deg, #F5EFF9 0%, #F3EAF7 55%, #F2EDFA 100%);
  border-radius: 16px;
  padding: 24px 150px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.svc-quote:hover {
  box-shadow: 0 16px 36px rgba(110, 45, 145, 0.1);
  transform: translateY(-3px);
}
.sq-badge {
  position: absolute;
  left: 150px;
  top: 50%;
  transform: translateY(-50%);
}
.sq-badge svg { width: 68px; height: 68px; display: block; }
.svc-quote blockquote { text-align: center; }
.svc-quote blockquote p {
  font-size: 16px;
  line-height: 1.66;
  color: #3C3C44;
  max-width: 640px;
  margin: 0 auto;
}
.svc-quote figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--purple);
}
.svc-quote blockquote { padding-bottom: 22px; }
.sq-open, .sq-close {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: #5B2D8E;
}
.sq-open  { left: 90px; top: 26px; }
.sq-close { right: 100px; bottom: 22px; }

/* ── footer CTA band (rainbow body, lighter tinted strip) ── */
.fcta-tint {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 34px);
  pointer-events: none;
}
.site-footer--cta .footer-cta { position: relative; }
.site-footer--cta .footer-cta-inner { position: relative; z-index: 1; max-width: 1260px; }
.site-footer--cta:not(.site-footer--flat) .fcta-btn { color: #55217F; }
.site-footer--cta .fcta-copy h2,
.site-footer--cta .fcta-copy p { text-shadow: 0 1px 4px rgba(38, 12, 58, 0.5); }
.site-footer--cta .fcta-icon { width: 74px; height: 74px; }
.site-footer--cta .fcta-icon svg { width: 40px; height: 40px; }
.fcta-copy h2.fcta-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 27px;
  color: #fff;
  margin-bottom: 3px;
}

/* ── services responsive ── */
@media (max-width: 1150px) {
  .svc-hero .hero-title { font-size: 46px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svcdiff-grid { grid-template-columns: 1fr; gap: 26px; }
  .svcdiff-photo img { min-height: 240px; max-height: 340px; }
  .svc-quote { padding: 58px 30px 52px; }
  .sq-badge { position: static; transform: none; margin: 0 auto 12px; }
  .sq-badge svg { margin: 0 auto; }
  .sq-open { left: 26px; top: 22px; }
  .sq-close { right: 26px; bottom: 18px; }
}

@media (max-width: 900px) {
  .svcdiff-items { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .svcdiff-item:nth-child(odd)::before { display: none; }
  .svc-quote { padding: 58px 26px 52px; }
  .svc-quote figcaption { bottom: 22px; }
}

@media (max-width: 620px) {
  .svc-hero .hero-title { font-size: 32px; }
  .svc-hero .hero-actions .btn { padding: 14px 22px; font-size: 12.5px; white-space: normal; }
  .svc-grid { grid-template-columns: 1fr; }
  .svcdiff-items { grid-template-columns: 1fr; row-gap: 22px; }
  .svcdiff-item + .svcdiff-item::before { display: none; }
  .svc-head .section-title,
  .svcdiff-body .section-title { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── hero: lavender panel, photo with a curved left edge ── */
.ct-hero {
  position: relative;
  background: linear-gradient(120deg, #F8F5FC 0%, #F6F2FA 55%, #F9F5FB 100%);
  overflow: hidden;
}
.ct-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 834px);
  align-items: center;
  gap: 0;
}
.ct-hero-content { padding: 34px 0 70px; position: relative; z-index: 2; }
.ct-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 53px;
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.ct-title span { display: block; }
.ct-title span:first-child { color: #7A2F96; }
.ct-title span:last-child  { color: #1385C4; }
.ct-rule { position: relative; max-width: 300px; margin: 0 0 22px; display: block; }
.ct-rule .rule-line { display: block; height: 2px; border-radius: 2px; background: var(--grad-rainbow); }
.ct-rule .rule-heart {
  position: absolute;
  left: 45%;
  top: 50%;
  margin-left: 0;
  transform: translate(-50%, -50%);
}
.ct-rule .rule-heart,
.ct-rule-sm .rule-heart { background: transparent; }
.ct-hero-text {
  font-size: 15px;
  line-height: 1.75;
  color: #4E4E55;
  max-width: 440px;
}

.ct-hero-media {
  align-self: stretch;
  margin-right: calc(-1 * (max(0px, (100vw - var(--container)) / 2) + var(--pad)));
  padding: 0 0 20px;
}
.ct-hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 11% 0 0 11% / 50% 0 0 50%;
}

/* ── form + details grid ── */
.ct-section { padding: 24px 0 6px; }
.ct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* form card */
.ct-form-card {
  background: linear-gradient(160deg, #FAF8FC 0%, #F8F5FB 100%);
  border: 1px solid #EFEAF5;
  border-radius: 18px;
  padding: 20px 22px 22px;
  box-shadow: 0 6px 22px rgba(110, 45, 145, 0.05);
}
.ct-form-head { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 16px; }
.ct-form-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #E4D5EE;
  color: var(--purple);
  display: grid;
  place-items: center;
  flex: none;
}
.ct-form-ic svg { width: 24px; height: 24px; }
.ct-form-intro h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 3px;
}
.ct-form-intro p { font-size: 13px; line-height: 1.55; color: var(--text); max-width: 340px; }

.ct-form { display: grid; gap: 11px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.ct-field { position: relative; margin: 0; }
.ct-fic {
  position: absolute;
  left: 12px;
  top: 11px;
  width: 17px;
  height: 17px;
  color: #A97FC4;
  pointer-events: none;
}
.ct-fic svg { width: 17px; height: 17px; display: block; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ECE4F3;
  border-radius: 9px;
  padding: 9px 14px 9px 38px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ct-field textarea { min-height: 84px; resize: vertical; line-height: 1.6; padding-top: 10px; }
.ct-field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px; }
.ct-field select:invalid { color: #8A8A92; }
.ct-field ::placeholder { color: #8A8A92; opacity: 1; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: #B98BD4;
  box-shadow: 0 0 0 3px rgba(139, 63, 152, 0.12);
}
.ct-field.is-error input,
.ct-field.is-error textarea { border-color: #D9534F; box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12); }
.ct-chev {
  position: absolute;
  right: 13px;
  top: 15px;
  width: 11px;
  height: 7px;
  color: #7C7C85;
  pointer-events: none;
}
.ct-chev svg { width: 11px; height: 7px; display: block; }

.ct-submit {
  margin-top: 4px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #7B2F96 0%, #9B3A93 35%, #3F72C4 72%, #1E9BD8 100%);
  border: 0;
  border-radius: 9px;
  padding: 12px 22px;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ct-submit svg { width: 19px; height: 19px; position: absolute; right: 20px; }
.ct-submit:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(90, 45, 160, 0.28);
}
.ct-status { font-size: 14px; line-height: 1.55; margin-top: 2px; min-height: 1px; }
.ct-status.is-ok { color: #217A38; }
.ct-status.is-err { color: #C0392B; }

/* get in touch */
.ct-h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 2px;
}
.ct-rule-sm { max-width: 112px; margin: 4px 0 12px; }

.ct-list { display: grid; }
.ct-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
}
.ct-list li + li { border-top: 1px solid #ECE7F1; }
.ct-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.25s ease;
}
.ct-ic svg { width: 22px; height: 22px; }
.ct-list li:hover .ct-ic { transform: scale(1.07); }
.ct-ic-purple { background: #6E2D91; }
.ct-ic-blue   { background: #1E86D0; }
.ct-ic-green  { background: #3FA249; }
.ct-ic-orange { background: #F0812C; }
.ct-body { display: flex; flex-direction: column; gap: 2px; }
.ct-lab { font-size: 14.5px; font-weight: 700; }
.lab-purple { color: #7A2F96; }
.lab-blue   { color: #1E86D0; }
.lab-green  { color: #3B9C46; }
.lab-orange { color: #E8701B; }
.ct-body a, .ct-body address {
  font-size: 14px;
  line-height: 1.5;
  color: #3C3C44;
  transition: color 0.2s ease;
}
.ct-body a:hover { color: var(--purple); }

/* hours + pull quote */
.ct-side {
  display: grid;
  gap: 14px;
  padding-left: 30px;
  border-left: 1px solid #ECE7F1;
}
.ct-hours {
  background: linear-gradient(160deg, #FAF5FC 0%, #F7F2FA 100%);
  border-radius: 14px;
  padding: 20px 18px 20px;
  text-align: center;
}
.ct-clock { display: block; margin: 0 auto 12px; color: var(--purple); }
.ct-clock svg { width: 48px; height: 48px; display: block; margin: 0 auto; }
.ct-hours h2 { font-size: 18px; font-weight: 700; color: var(--purple); margin-bottom: 11px; }
.ct-day { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.ct-day--gap { margin-top: 11px; }
.ct-time { font-size: 13.5px; color: #4E4E55; }

.ct-quote {
  position: relative;
  border: 1.4px solid #C9A8DE;
  border-radius: 12px;
  padding: 16px 20px 20px;
  text-align: center;
}
.ct-quote blockquote p span { display: block; font-size: 15.5px; font-weight: 700; line-height: 1.4; }
.ctq-open, .ctq-close {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #6E2D91;
  background: #fff;
  padding: 0 6px;
}
.ctq-open  { top: -16px; left: 14px; }
.ctq-close { bottom: -22px; right: 14px; }
.ctq-heart {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 8px;
}
.ctq-heart svg { width: 24px; height: 22px; display: block; }

/* ── CTA band ── */
.ct-cta-section { padding: 26px 0 34px; }
.ct-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(100deg, #F7F4FA 0%, #F5F2F9 60%, #F7F4FB 100%);
  border: 1px solid #EFEAF5;
  border-radius: 14px;
  padding: 16px 22px;
}
.ct-cta-ic { flex: none; }
.ct-cta-ic svg { width: 54px; height: 54px; display: block; }
.ct-cta-copy {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--purple);
}
.ct-cta-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #7B2F96 0%, #9B3A93 32%, #3F72C4 74%, #1E9BD8 100%);
  border-radius: 9px;
  padding: 14px 22px;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ct-cta-btn:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(90, 45, 160, 0.26);
}

/* ── contact responsive ── */
@media (max-width: 1250px) {
  .ct-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr); }
  .ct-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #ECE7F1;
    padding-top: 24px;
  }
}

@media (max-width: 1150px) {
  .ct-hero-inner { grid-template-columns: 1fr; }
  .ct-hero-content { padding: 30px 0 26px; }
  .ct-title { font-size: 46px; }
  .ct-hero-media { padding: 0 0 96px; margin-left: calc(-1 * var(--pad)); }
  .ct-hero-media img { min-height: 240px; max-height: 360px; border-radius: 0; }
}

@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-side { grid-template-columns: 1fr 1fr; }
  .ct-cta { flex-direction: column; text-align: center; gap: 16px; }
  .ct-cta-copy { font-size: 18px; }
}

@media (max-width: 620px) {
  .ct-title { font-size: 33px; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-side { grid-template-columns: 1fr; }
  .ct-h2 { font-size: 26px; }
  .ct-form-card { padding: 20px 18px 22px; }
  .ct-cta-btn { width: 100%; justify-content: center; gap: 14px; }
  .ct-cta-copy br { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — listing + article
   ═══════════════════════════════════════════════════════════════ */

.bl-hero .hero-content { padding: 34px 0 92px; }
.bl-hero .rainbow-rule { max-width: 162px; }
.bl-hero .hero-inner { grid-template-columns: minmax(0, 520px) minmax(0, 1fr); }
.bl-title { font-size: 54px; line-height: 1.18; white-space: normal; }
.bl-hero .hero-text { font-size: 15.5px; max-width: 400px; }
.bl-hero .hero-photo { height: 400px; object-position: center 35%; }

/* ── layout ── */
.bl-section { padding: 20px 0 10px; }
.bl-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 330px);
  gap: 38px;
  align-items: start;
}
.bl-sec-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--purple);
  margin-bottom: 2px;
}
.bl-sec-rule { max-width: 200px; margin: 4px 0 18px; }
.bl-sec-h + .bl-sec-rule { margin-bottom: 20px; }

/* shared bits */
.bl-cat {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #7A2F96;
  margin-bottom: 8px;
}
.bl-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #6B6B72;
  margin-top: 12px;
}
.bl-meta-ic { width: 15px; height: 15px; color: #A97FC4; flex: none; }
.bl-sep { width: 1px; height: 13px; background: #D9D2E2; display: inline-block; margin: 0 4px; }
.bl-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}
.bl-more svg { width: 17px; height: 12px; transition: transform 0.25s ease; }
.bl-more:hover svg { transform: translateX(4px); }

/* ── featured article ── */
.bl-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  background: #fff;
  border: 1px solid #EFEAF5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 18px rgba(110, 45, 145, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bl-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.bl-feat-media { position: relative; display: block; }
.bl-feat-media img { width: 100%; height: 100%; min-height: 246px; object-fit: cover; }
.bl-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #7A2F96;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 7px;
}
.bl-feat-body { padding: 22px 24px 22px; }
.bl-feat-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.25;
  color: var(--purple);
  margin-bottom: 10px;
}
.bl-feat-title a:hover { color: #8B3F98; }
.bl-feat-excerpt { font-size: 14.5px; line-height: 1.7; color: var(--text); }

/* ── article cards ── */
.bl-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bl-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #EFEAF5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(110, 45, 145, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bl-post:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: #DCC8EA; }
.bl-post-media { display: block; overflow: hidden; }
.bl-post-media img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bl-post:hover .bl-post-media img { transform: scale(1.05); }
.bl-post-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.bl-post-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.32;
  color: var(--purple);
}
.bl-post-title a:hover { color: #8B3F98; }
.bl-post .bl-more { margin-top: auto; padding-top: 10px; }

/* ── sidebar ── */
.bl-side { display: grid; gap: 18px; }
.bl-card {
  background: #FCFAFD;
  border: 1px solid #EFEAF5;
  border-radius: 14px;
  padding: 20px 20px 22px;
}
.bl-card-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
}
.bl-rule { max-width: 150px; margin: 4px 0 14px; }
.bl-card > p { font-size: 14px; line-height: 1.72; color: var(--text); }
.bl-about-heart { display: block; margin: 16px auto 4px; }
.bl-about-heart svg { width: 84px; height: 78px; display: block; margin: 0 auto; }

.bl-search { display: flex; }
.bl-search input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #E7DFEF;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 11px 13px;
}
.bl-search input::placeholder { color: #8A8A92; }
.bl-search input:focus { outline: none; border-color: #B98BD4; }
.bl-search button {
  flex: none;
  width: 46px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #6E2D91;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}
.bl-search button svg { width: 19px; height: 19px; }
.bl-search button:hover { background: #59176F; }
.bl-search-status { font-size: 13px; color: var(--text); margin-top: 8px; }

.bl-cats { display: grid; }
.bl-cats li + li { border-top: 1px solid #ECE7F1; }
.bl-cats a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 14.5px;
  color: #3C3C44;
  transition: color 0.2s ease, padding-left 0.22s ease;
}
.bl-cats a:hover { color: var(--purple); padding-left: 5px; }
.bl-cat-ic { width: 26px; height: 26px; flex: none; }
.bl-cat-ic svg { width: 26px; height: 26px; display: block; }
.ic-cg { color: #8B3F98; }
.ic-sh { color: #3B9C46; }
.ic-hg { color: #A97FC4; }
.ic-fs { color: #EE8B33; }
.ic-nu { color: #B98BD4; }
.bl-viewall {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}
.bl-viewall svg { width: 17px; height: 12px; transition: transform 0.25s ease; }
.bl-viewall:hover svg { transform: translateX(4px); }

/* newsletter card */
.bl-news {
  background: linear-gradient(140deg, #7B2A96 0%, #6B36AE 45%, #3B57C6 100%);
  border-color: transparent;
  color: #fff;
}
.bl-news .bl-card-h { color: #fff; }
.bl-news > p { color: rgba(255, 255, 255, 0.94); }
.bl-news .rule-heart { background: transparent; }
.bl-sub { margin-top: 14px; display: grid; gap: 10px; }
.bl-sub-wrap { position: relative; display: block; }
.bl-sub input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 44px 12px 14px;
}
.bl-sub input::placeholder { color: #8A8A92; }
.bl-sub input:focus { outline: 2px solid #fff; outline-offset: 1px; }
.bl-sub-ic { position: absolute; right: 13px; top: 11px; width: 20px; height: 20px; color: #7A2F96; pointer-events: none; }
.bl-sub-ic svg { width: 20px; height: 20px; display: block; }
.bl-sub button {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #7A2F96;
  background: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.bl-sub button:hover { background: #F3EAF8; transform: translateY(-1px); }
.bl-sub-status { font-size: 12.5px; color: #fff; margin-top: 2px; }

/* ── CTA band ── */
.bl-cta-section { padding: 24px 0 34px; }
.bl-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(100deg, #F5EDF8 0%, #F3EAF7 55%, #F2EDFA 100%);
  border-radius: 14px;
  padding: 18px 26px;
}
.bl-cta-ic { flex: none; }
.bl-cta-ic svg { width: 58px; height: 58px; display: block; }
.bl-cta-copy { flex: 1; }
.bl-cta-copy h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 3px;
}
.bl-cta-copy p { font-size: 15px; color: #4E4E55; }
.bl-cta-btn { flex: none; padding: 15px 24px; font-size: 13.5px; }

/* ── blog responsive ── */
@media (max-width: 1150px) {
  .bl-hero .hero-inner { grid-template-columns: 1fr; }
  .bl-hero .hero-content { padding: 30px 0 26px; }
  .bl-title { font-size: 40px; }
  .bl-hero .hero-photo { height: clamp(240px, 44vw, 380px); }
  .bl-grid { grid-template-columns: 1fr; }
  .bl-side { grid-template-columns: 1fr 1fr; align-items: start; }
  .bl-news { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .bl-cards { grid-template-columns: 1fr 1fr; }
  .bl-featured { grid-template-columns: 1fr; }
  .bl-feat-media img { min-height: 220px; max-height: 300px; }
  .bl-cta { flex-direction: column; text-align: center; gap: 14px; }
}

@media (max-width: 620px) {
  .bl-title { font-size: 30px; }
  .bl-cards { grid-template-columns: 1fr; }
  .bl-side { grid-template-columns: 1fr; }
  .bl-sec-h { font-size: 23px; }
  .bl-feat-title { font-size: 21px; }
  .bl-cta-btn { width: 100%; justify-content: center; }
}

/* ── article detail page ── */
.bp-hero {
  background: linear-gradient(120deg, #F8F5FC 0%, #F6F2FA 60%, #F9F5FB 100%);
  padding: 26px 0 30px;
  border-bottom: 1px solid #EFEAF5;
}
.bp-crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: #6B6B72; }
.bp-crumb li + li::before { content: "/"; margin-right: 8px; color: #B7AEC4; }
.bp-crumb a { color: var(--purple); font-weight: 600; }
.bp-crumb a:hover { text-decoration: underline; }
.bp-crumb li[aria-current] { color: #6B6B72; }
.bp-cat { margin: 16px 0 8px; }
.bp-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--purple);
  max-width: 820px;
}
.bp-rule { max-width: 190px; margin: 12px 0 6px; }
.bp-rule .rule-heart { background: transparent; }
.bp-meta { margin-top: 10px; }

.bp-section { padding-top: 28px; }
.bp-figure { margin-bottom: 24px; }
.bp-figure img { width: 100%; height: 340px; object-fit: cover; border-radius: 14px; }
.bp-figure figcaption { margin-top: 9px; font-size: 13px; color: #6B6B72; font-style: italic; }

.bp-body { max-width: 760px; }
.bp-body p { font-size: 16px; line-height: 1.85; color: #45454D; margin-bottom: 18px; }
.bp-lead { font-size: 17.5px !important; line-height: 1.75 !important; color: #3C3C44 !important; font-weight: 500; }
.bp-body h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  color: var(--purple);
  margin: 30px 0 12px;
}
.bp-body h3 {
  font-size: 17.5px;
  font-weight: 600;
  color: #7A2F96;
  margin: 22px 0 10px;
}
.bp-body ul, .bp-body ol { margin: 0 0 20px; padding-left: 4px; }
.bp-body li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #45454D;
  padding-left: 28px;
  margin-bottom: 9px;
}
.bp-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-rainbow);
}
.bp-body ol { counter-reset: bp; }
.bp-body ol li { counter-increment: bp; }
.bp-body ol li::before {
  content: counter(bp);
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F1E6F7;
  color: var(--purple);
  font-size: 11.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.bp-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  background: #FAF5FC;
  border-left: 4px solid;
  border-image: linear-gradient(180deg, #8B2F96, #1378BE) 1;
  border-radius: 0 10px 10px 0;
}
.bp-body blockquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--purple);
  font-style: italic;
}

.bp-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 16px 0;
  border-top: 1px solid #ECE7F1;
  border-bottom: 1px solid #ECE7F1;
}
.bp-share-label { font-size: 14px; font-weight: 600; color: var(--purple); }
.bp-share-links { display: flex; gap: 10px; }
.bp-share-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E4D5EE;
  color: var(--purple);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.bp-share-links a svg { width: 18px; height: 18px; }
.bp-share-links a:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.bp-back {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}
.bp-back svg { width: 17px; height: 12px; transition: transform 0.25s ease; }
.bp-back:hover svg { transform: translateX(-4px); }
.bp-related { margin-top: 4px; }

@media (max-width: 900px) {
  .bp-title { font-size: 32px; }
  .bp-figure img { height: 260px; }
}
@media (max-width: 620px) {
  .bp-title { font-size: 26px; }
  .bp-figure img { height: 200px; }
  .bp-body p, .bp-body li { font-size: 15.5px; }
  .bp-body h2 { font-size: 21px; }
  .bp-back { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   COVID-19 INFORMATION & UPDATES
   ═══════════════════════════════════════════════════════════════ */

.cv-hero .hero-content { padding: 34px 0 84px; }
.cv-hero .hero-inner { grid-template-columns: minmax(0, 590px) minmax(0, 1fr); }
.cv-hero .rainbow-rule.cv-hero-rule { max-width: 235px; }
.cv-hero .section-label { letter-spacing: 0.9px; }
.cv-title { font-size: 53px; line-height: 1.2; white-space: normal; }
.t-cv-blue { color: #1385C4; }
.cv-hero .hero-text { font-size: 15px; max-width: 400px; }
.cv-hero .hero-photo { height: 372px; object-position: center 30%; }
.cv-btn { padding: 14px 20px; font-size: 12.5px; border-radius: 9px; gap: 12px; white-space: nowrap; }
.cv-btn-ic { width: 19px; height: 19px; }
.btn-outline-rainbow.cv-btn::before { border-radius: 9px; }

/* ── protocols + commitment ── */
.cv-section { padding: 16px 0 8px; }
.cv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 352px);
  gap: 44px;
  align-items: start;
}
.cv-head { text-align: center; margin-bottom: 22px; }
.cv-h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--purple);
  margin-bottom: 4px;
}
.cv-rule { max-width: 170px; margin: 4px 0 12px; }
.cv-resources .rule-heart,
.cv-questions .rule-heart { background: transparent; }
.cv-head .cv-rule { margin-left: auto; margin-right: auto; }
.cv-sub { font-size: 15px; line-height: 1.7; color: var(--text); max-width: 560px; margin: 0 auto; }

.cv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cv-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #EFEAF5;
  border-radius: 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 16px rgba(110, 45, 145, 0.045);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: #DCC8EA; }
.cv-ic {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.3s ease;
}
.cv-card:hover .cv-ic { transform: scale(1.07); }
.cv-ic svg { width: 30px; height: 30px; }
.cv-ic-purple { background: #6E2D91; }
.cv-ic-pink   { background: #E5348C; }
.cv-ic-orange { background: #F5772A; }
.cv-ic-green  { background: #3FA249; }
.cv-ic-blue   { background: #1E86D0; }
.cv-ic-violet { background: #7B3FA0; }
.cv-card-body h3 { font-size: 16px; font-weight: 600; line-height: 1.32; margin-bottom: 7px; }
.cv-card-body p { font-size: 12.5px; line-height: 1.62; color: var(--text); }
.c-cv-purple { color: #7A2F96; }
.c-cv-pink   { color: #E5348C; }
.c-cv-orange { color: #F5772A; }
.c-cv-green  { color: #3B9C46; }
.c-cv-blue   { color: #1E86D0; }
.c-cv-violet { color: #7B3FA0; }

/* commitment card */
.cv-commit {
  background: #fff;
  border: 1px solid #E6DCEF;
  border-radius: 14px;
  padding: 22px 22px 24px;
  text-align: left;
}
.cv-card-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--purple);
}
.cv-commit > p { font-size: 14px; line-height: 1.75; color: var(--text); }
.cv-commit-heart { display: block; margin: 18px auto 12px; }
.cv-commit-heart svg { width: 92px; height: 86px; display: block; margin: 0 auto; }
.cv-commit > p.cv-commit-tag {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  color: var(--purple);
  text-align: center;
}

/* ── resources / updates / questions ── */
.cv-info-section { padding: 22px 0 10px; }
.cv-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 22px;
  align-items: stretch;
}
.cv-panel { border-radius: 14px; padding: 22px 22px 24px; }
.cv-resources { background: #FAF6FC; }
.cv-updates { background: #fff; border: 1px solid #EFEAF5; }
.cv-panel-sub { font-size: 14px; line-height: 1.6; color: var(--text); margin-bottom: 16px; }

.cv-res-list { display: grid; gap: 10px; }
.cv-res-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid #EFEAF5;
  border-radius: 10px;
  padding: 11px 13px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cv-res-list a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(110, 45, 145, 0.1); border-color: #DCC8EA; }
.cv-res-logo {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
}
.cv-res-logo svg { width: 26px; height: 26px; }
.cv-res-txt { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.4px; }
.logo-cdc  { background: #1E86D0; }
.logo-fdoh { background: #2B2F80; }
.logo-who  { background: #2E8B57; }
.cv-res-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.cv-res-name { font-size: 12.5px; font-weight: 600; color: #3C3C44; line-height: 1.35; }
.cv-res-url { font-size: 11.5px; color: #6B6B72; overflow-wrap: anywhere; }
.cv-ext { width: 20px; height: 20px; color: #8B3F98; flex: none; }
.cv-ext svg { width: 20px; height: 20px; display: block; }

.cv-upd-list { display: grid; }
.cv-upd-list li { display: flex; gap: 13px; padding: 10px 0; }
.cv-upd-list li + li { border-top: 1px solid #ECE7F1; }
.cv-date {
  width: 52px;
  height: 55px;
  flex: none;
  align-self: flex-start;
  justify-content: center;
  background: #F7F1FA;
  border: 1px solid #EDE4F3;
  border-radius: 9px;
  padding: 7px 4px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cv-mon { font-size: 10.5px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; color: #8B3F98; }
.cv-day { font-size: 20px; font-weight: 700; line-height: 1.1; color: var(--ink); }
.cv-yr  { font-size: 10.5px; color: #7C7C85; }
.cv-upd-body h3 { font-size: 12.5px; font-weight: 600; color: #2F2F38; margin-bottom: 4px; }
.cv-upd-body p { font-size: 12px; line-height: 1.58; color: var(--text); }
.cv-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--purple);
}
.cv-more svg { width: 16px; height: 12px; transition: transform 0.25s ease; }
.cv-more:hover svg { transform: translateX(4px); }

/* questions card */
.cv-questions {
  background: linear-gradient(125deg, #7E2294 0%, #6033AE 32%, #3044BF 62%, #015DDD 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cv-questions .cv-card-h { color: #fff; }
.cv-questions .cv-panel-sub { color: rgba(255, 255, 255, 0.94); margin-top: 8px; }
.cv-q-list { display: grid; gap: 10px; margin-bottom: 18px; }
.cv-q-list li { display: flex; align-items: flex-start; gap: 12px; }
.cv-q-ic {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  color: #7A2F96;
  display: grid;
  place-items: center;
  flex: none;
}
.cv-q-ic svg { width: 15px; height: 15px; }
.cv-q-list a, .cv-q-list address {
  font-size: 13.5px;
  line-height: 1.5;
  color: #fff;
  padding-top: 4px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.cv-q-list a:hover { text-decoration: underline; }
.cv-q-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  color: #7A2F96;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 15px 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.cv-q-btn:hover { background: #F3EAF8; transform: translateY(-2px); }

/* ── CTA band ── */
.cv-cta-section { padding: 26px 0 34px; }
.cv-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(100deg, #FBF8FD 0%, #F8F5FC 55%, #FAF7FD 100%);
  border: 1px solid #EFEAF5;
  border-radius: 14px;
  padding: 16px 24px;
}
.cv-cta-ic { flex: none; }
.cv-cta-ic svg { width: 76px; height: 76px; display: block; }
.cv-cta-copy { flex: 1; }
.cv-cta-copy h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 3px;
}
.cv-cta-copy p { font-size: 14.5px; color: #4E4E55; }
.cv-cta-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #3C2D96;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 9px;
  padding: 15px 24px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cv-cta-btn svg { width: 18px; height: 18px; }
.cv-cta-btn:hover { background: #31237C; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(60, 45, 150, 0.3); }

/* ── covid responsive ── */
@media (max-width: 1150px) {
  .cv-hero .hero-inner { grid-template-columns: 1fr; }
  .cv-hero .hero-content { padding: 28px 0 26px; }
  .cv-title { font-size: 38px; }
  .cv-hero .hero-photo { height: clamp(240px, 44vw, 380px); }
  .cv-grid { grid-template-columns: minmax(0, 1fr); }
  .cv-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cv-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cv-questions { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .cv-cta { flex-direction: column; text-align: center; gap: 14px; }
}

@media (max-width: 620px) {
  .cv-title { font-size: 29px; }
  .cv-cards { grid-template-columns: minmax(0, 1fr); }
  .cv-info-grid { grid-template-columns: minmax(0, 1fr); }
  .cv-h2 { font-size: 23px; }
  .cv-hero .hero-actions { flex-direction: column; align-items: stretch; }
  .cv-btn { white-space: normal; }
  .cv-btn { justify-content: center; }
  .cv-cta-btn { width: 100%; justify-content: center; }
}

/* translucent brand mark bleeding off the gradient card, as in the comp */
.cv-questions { position: relative; }
.cv-q-mark {
  position: absolute;
  right: -34px;
  bottom: -26px;
  width: 190px;
  opacity: 0.13;
  pointer-events: none;
}
.cv-questions > *:not(.cv-q-mark) { position: relative; z-index: 1; }
