:root {
  --ink: #172f2d;
  --forest: #0c4b3d;
  --green: #028c58;
  --lime: #a6dc7e;
  --cream: #f4f0e7;
  --paper: #fbfaf7;
  --line: #d7ded8;
  --muted: #60716d;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1170px, calc(100% - 48px)); margin: auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  background: #fff;
  padding: .75rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Preloader */
.site-preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  overflow: hidden;
  background: #0c3523;
  color: #fff;
  transition: opacity .65s ease, visibility .65s ease;
}
.site-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.preloader-loader { position: relative; width: 150px; height: 150px; }
.preloader-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(166, 220, 126, .18);
  transform: translate(-50%, -50%);
}
.preloader-mark img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}
.site-preloader p {
  margin: 0;
  color: #dcebdc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.preloader-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px solid transparent;
  border-top-color: #dcebdc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.preloader-orbit--outer {
  width: 150px;
  height: 150px;
  border-right-color: #dcebdc;
  animation: preloader-spin 1.9s linear infinite;
}
.preloader-orbit--inner {
  width: 116px;
  height: 116px;
  border-bottom-color: var(--lime);
  animation: preloader-spin 1.3s linear infinite reverse;
}
@keyframes preloader-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eef0ed;
}
.nav-wrap {
  height: 91px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: block; line-height: 0; }
.brand img { width: 205px; height: auto; }
.primary-nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
  align-items: center;
}
.primary-nav > a,
.nav-plans-trigger {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}
.primary-nav > a::after,
.nav-plans-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width .28s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.nav-plans:hover .nav-plans-trigger::after,
.nav-plans:focus-within .nav-plans-trigger::after,
.nav-plans-trigger.active::after {
  width: 18px;
}
.primary-nav > a:hover,
.primary-nav > a.active,
.nav-plans:hover .nav-plans-trigger,
.nav-plans:focus-within .nav-plans-trigger,
.nav-plans-trigger.active {
  color: var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  border-left: 1px solid var(--line);
  padding-left: 25px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  transition: color .3s ease, border-color .3s ease;
}
.header-phone span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .3s ease;
}
.header-portal {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: #133d34;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .25s ease, transform .2s ease;
}
.header-portal:hover,
.header-portal:focus-visible {
  background: #8fcb64;
  transform: translateY(-1px);
}
.menu-toggle { display: none; }
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: background-color .3s ease;
}

.site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-bottom-color: #eef0ed;
  transition: box-shadow .35s ease;
}
.site-header--overlay.is-scrolled {
  box-shadow: 0 10px 28px rgba(18, 59, 52, .08);
}

.nav-plans { position: relative; }
.nav-plans-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}
.plans-menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: -18px;
  min-width: 190px;
  margin-top: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid #e8ede9;
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(18, 59, 52, .16);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, visibility 0s linear .24s;
}
.nav-plans:hover .plans-menu,
.nav-plans:focus-within .plans-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.primary-nav .plans-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.primary-nav .plans-menu a:hover {
  background: var(--cream);
  color: var(--forest);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button-label,
.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .35s ease, color .35s ease, transform .45s ease;
}
button.button {
  font-family: inherit;
  border: 0;
  cursor: pointer;
}
.button-label {
  padding: 16px 26px;
  border-radius: 999px;
}
.button-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
}
.button--primary .button-label,
.button--primary .button-arrow {
  background: var(--lime);
  color: #133d34;
}
.button--primary:hover .button-label {
  background: #8fcb64;
}
.button--primary:hover .button-arrow {
  background: var(--forest);
  color: #fff;
  transform: rotate(45deg);
}
.button--cream .button-label,
.button--cream .button-arrow {
  background: var(--cream);
  color: var(--forest);
}
.button--cream:hover .button-label {
  background: #e7e0d3;
}
.button--cream:hover .button-arrow {
  background: var(--lime);
  color: #133d34;
  transform: rotate(45deg);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span,
.service-card a span { font-size: 20px; }
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .35s ease;
}
.text-link:hover::after { width: calc(100% - 1.6em); }
.text-link--light { color: #fff; }

/* Hero */
.hero {
  min-height: 694px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: url('../images/hero-ghanaian-consolation.png') center 46% / cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* background: linear-gradient(90deg, rgba(9, 42, 35, .88) 0%, rgba(9, 42, 35, .72) 45%, rgba(9, 42, 35, .18) 100%); */
}
.hero-content {
  padding: 170px 0 145px;
  color: #fff;
}
.hero-content > *,
.hero-trust {
  opacity: 0;
  transform: translateY(24px);
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--light { color: #b7dfc8; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 700 clamp(45px, 6vw, 76px) / 1.08 var(--serif);
  letter-spacing: -.045em;
}
.hero h1 em {
  color: #c7edb5;
  font-weight: 600;
}
.hero-copy {
  max-width: 560px;
  margin: 25px 0 32px;
  font-size: 18px;
  line-height: 1.7;
  color: #e5ede8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-trust {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .28);
  background: rgba(9, 42, 35, .22);
  backdrop-filter: blur(5px);
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 18px 0;
}
.trust-grid p + p {
  border-left: 1px solid rgba(255, 255, 255, .28);
  padding-left: 45px;
}
.trust-grid strong { font: 600 25px var(--serif); }
.trust-grid span { font-size: 13px; }

/* Intro */
.section { padding: 120px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.image-frame { position: relative; }
.intro-image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(.8);
}
[data-image-reveal] { clip-path: inset(0 100% 0 0); }
.experience-badge {
  position: absolute;
  right: -42px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px;
  background: var(--lime);
  color: var(--forest);
}
.experience-badge strong { font: 700 42px / 1 var(--serif); }
.experience-badge span {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.intro-copy h2,
.section-heading h2,
.guidance h2,
.care-banner h2,
.why-choose h2,
.plans h2,
.plans-page h2,
.plan-detail h2,
.services-page h2,
.about-story h2,
.about-welcome h2,
.about-purpose h2,
.about-approach h2,
.about-values h2,
.faqs h2,
.page-hero h1,
.faq-group h2,
.contact-intro h2,
.contact-form-card h2,
.branches h2 {
  margin: 0;
  font: 700 clamp(34px, 4vw, 52px) / 1.15 var(--serif);
  letter-spacing: -.035em;
}
.intro-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 21px 0;
}
.intro-copy .text-link { margin-top: 10px; }

/* Services */
.section--soft { background: var(--cream); }
.services.section--soft { background: #f7f6f3; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 47px;
}
.section-heading > div { max-width: 600px; }
.section-heading > p {
  max-width: 365px;
  margin: 0;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  background: #fff;
}
.service-number {
  position: absolute;
  right: 28px;
  top: 24px;
  color: #a0aaa5;
  font-size: 13px;
  font-weight: 700;
}
.service-icon {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  border-radius: 50%;
  background: #dcefcf;
  color: var(--forest);
  font-size: 25px;
}
.service-card h3 {
  margin: 26px 0 6px;
  font: 700 25px var(--serif);
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.service-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.services-carousel { position: relative; }
.service-viewport {
  overflow: hidden;
  padding: 6px 0 12px;
}
.service-track {
  display: flex;
  gap: 20px;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.service-track.is-resetting { transition: none; }
.service-track .service-card {
  flex: 0 0 calc((100% - 40px) / 3);
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  padding: 0;
  border-radius: 18px;
  background-color: #173b32;
  box-shadow: none;
  transition: box-shadow .35s ease;
}
.service-track .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(10, 35, 28, .05) 20%, rgba(10, 35, 28, .28) 100%), var(--service-image);
  background-position: center;
  background-size: cover;
  transition: transform .7s ease;
}
.service-track .service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  height: 88px;
  border-radius: 16px;
  background: #fff;
}
.service-track .service-card:nth-child(7n + 1) { --service-image: url('../images/services/event-planning.jpg'); }
.service-track .service-card:nth-child(7n + 2) { --service-image: url('../images/services/rental-logistics.jpg'); }
.service-track .service-card:nth-child(7n + 3) { --service-image: url('../images/services/caskets.jpg'); }
.service-track .service-card:nth-child(7n + 4) { --service-image: url('../images/services/catering.jpg'); }
.service-track .service-card:nth-child(7n + 5) { --service-image: url('../images/services/repatriation.jpg'); }
.service-track .service-card:nth-child(7n + 6) { --service-image: url('../images/services/cemetery.jpg'); }
.service-track .service-card:nth-child(7n) { --service-image: url('../images/services/pall-bearing.jpg'); }
.service-track .service-number,
.service-track .service-icon,
.service-track .service-card a { display: none; }
.service-track .service-card h3 {
  position: absolute;
  z-index: 2;
  right: 40px;
  left: 40px;
  bottom: 42px;
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
  text-align: left;
  transition: transform .4s ease;
}
.service-track .service-card:hover {
  box-shadow: 0 20px 38px rgba(18, 59, 52, .14);
}
.service-track .service-card:hover::before { transform: scale(1.06); }
.service-track .service-card:hover h3 { transform: translateY(-6px); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9d0ca;
  cursor: pointer;
  transition: all .2s;
}
.carousel-dots button.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--forest);
}

.plans { background: #f7f6f3; }
.plans-page { background: #f7f6f3; }
#plans,
#pre-paid-plans,
#group-plans,
#contract-bespoke {
  scroll-margin-top: 110px;
}
.plan-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-category {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: 32px 28px 28px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(18, 59, 52, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(18, 59, 52, .12);
}
.plan-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.plan-category-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
}
.plan-category-icon svg { width: 20px; height: 20px; }
.plan-category h3 {
  margin: 0;
  font: 700 24px / 1.15 var(--serif);
}
.plan-category > p:not(.plan-category-price) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.plan-category-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef0ed;
}
.plan-category-price span {
  width: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-category-price strong {
  color: var(--ink);
  font: 700 40px / 1 var(--serif);
  letter-spacing: -.03em;
}
.plan-category-price em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.plan-category-includes {
  margin-bottom: 24px;
}
.plan-category-includes h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.plan-category-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-category-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}
.plan-category-includes li::before {
  content: "";
  display: grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6.2 5.1 8.3 9 4' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
}
.plan-category-cta {
  width: 100%;
  margin-top: auto;
}
.plan-category-cta .button-label { flex: 1; }
.plan-assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.plan-assurances li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.plan-assurances span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
}
.plan-assurances svg { width: 16px; height: 16px; }
.plan-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.plan-jump a {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: 600 14px / 1 var(--sans);
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.plan-jump a:hover,
.plan-jump a:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  outline: none;
}
.plan-detail {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}
.plan-detail-intro {
  max-width: 640px;
  margin-bottom: 32px;
}
.plan-detail-intro h2 { margin-bottom: 12px; }
.plan-detail-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.package-grid {
  display: grid;
  gap: 18px;
}
.package-grid--prepaid {
  grid-template-columns: repeat(12, 1fr);
}
.package-grid--prepaid .package-card { grid-column: span 3; }
.package-grid--prepaid .package-card:nth-child(n + 5) { grid-column: span 4; }
.package-grid--group {
  grid-template-columns: repeat(3, 1fr);
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid #eef0ed;
  border-radius: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: #dce7dd;
  box-shadow: 0 18px 36px rgba(18, 59, 52, .1);
}
.package-card--featured {
  background: #123b34;
  border-color: #123b34;
  color: #fff;
}
.package-card--featured p,
.package-card--featured li {
  color: #dbe5de;
}
.package-card--featured .text-link { color: var(--lime); }
.package-tier {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.package-card--featured .package-tier { color: var(--lime); }
.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: #133d34;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.package-card h3 {
  margin: 10px 0 8px;
  font: 700 26px / 1.15 var(--serif);
}
.package-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.package-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.package-card li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-top: 1px solid #eef0ed;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.package-card--featured li { border-top-color: rgba(255, 255, 255, .12); }
.package-card .text-link { margin-top: auto; }

.compare-hint {
  display: none;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 1180px) {
  .compare-hint { display: block; }
}
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e8ede9;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 59, 52, .06);
}
.compare-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table caption { caption-side: bottom; }
.compare-table th,
.compare-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eef0ed;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.compare-table thead th {
  padding: 22px 12px 18px;
  background: #fff;
  border-bottom: 1px solid #e4ebe5;
  vertical-align: bottom;
}
.compare-table thead th:first-child,
.compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 170px;
  min-width: 170px;
  padding-left: 20px;
  background: #fff;
  text-align: left;
  font-weight: 600;
}
.compare-table thead th:first-child { z-index: 3; }
.compare-table tbody th {
  color: var(--ink);
  font-size: 13px;
}
.compare-corner {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compare-tier {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.compare-table thead strong {
  display: block;
  margin-bottom: 8px;
  font: 700 18px / 1.15 var(--serif);
}
.compare-price {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font: 700 20px / 1.15 var(--serif);
}
.compare-price em {
  color: var(--muted);
  font: 600 12px / 1 var(--sans);
  font-style: normal;
}
.compare-table--group {
  min-width: 720px;
}
.compare-table--group thead th:nth-child(3),
.compare-table--group td:nth-child(3) {
  background: #f4f8f4;
}
.compare-table--group thead th:nth-child(3) {
  background: #123b34;
  color: #fff;
}
.compare-table--group thead th:nth-child(3) .compare-tier,
.compare-table--group thead th:nth-child(3) .compare-price { color: #fff; }
.compare-table--group thead th:nth-child(3) .compare-price em { color: #dbe5de; }
.compare-table--group thead th:nth-child(3) .compare-start {
  background: var(--lime);
  color: #133d34;
}
.compare-table--group thead th:nth-child(3) .compare-start:hover,
.compare-table--group thead th:nth-child(3) .compare-start:focus-visible {
  background: #8fcb64;
}
.compare-table--group tbody tr:not(.compare-group):hover td:nth-child(3) {
  background: #eaf3ea;
}
.compare-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--lime);
  color: #133d34;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.compare-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease;
}
.compare-start:hover,
.compare-start:focus-visible {
  background: #0a3d32;
  transform: translateY(-1px);
  outline: none;
}
.compare-table th:nth-child(6),
.compare-table td:nth-child(6) {
  background: #f4f8f4;
}
.compare-table thead th:nth-child(6) {
  background: #123b34;
  color: #fff;
}
.compare-table thead th:nth-child(6) .compare-tier { color: var(--lime); }
.compare-table thead th:nth-child(6) .compare-start {
  background: var(--lime);
  color: #133d34;
}
.compare-table thead th:nth-child(6) .compare-start:hover,
.compare-table thead th:nth-child(6) .compare-start:focus-visible {
  background: #8fcb64;
}
.compare-table tbody tr.compare-group th {
  position: static;
  width: auto;
  min-width: 0;
  padding: 10px 20px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}
.compare-table tbody tr:not(.compare-group):hover td,
.compare-table tbody tr:not(.compare-group):hover th {
  background: #f8faf7;
}
.compare-table tbody tr:not(.compare-group):hover td:nth-child(6) {
  background: #eaf3ea;
}
.compare-yes {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6.2 5.1 8.3 9 4' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}
.compare-table td:nth-child(6) .compare-yes {
  background-color: #123b34;
}
.compare-none {
  color: #b7c2bd;
  font-size: 16px;
  font-weight: 500;
}

.bespoke-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  background: #123b34;
  border-radius: 32px;
  color: #fff;
}
.bespoke-copy h3 {
  margin: 0 0 16px;
  font: 700 clamp(28px, 3.4vw, 42px) / 1.15 var(--serif);
  letter-spacing: -.03em;
}
.bespoke-copy > p:not(.eyebrow) {
  margin: 0 0 28px;
  max-width: 460px;
  color: #dbe5de;
  font-size: 16px;
  line-height: 1.7;
}
.bespoke-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bespoke-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .06);
  border-radius: 18px;
}
.bespoke-steps span {
  color: var(--lime);
  font: 700 15px / 1.2 var(--serif);
}
.bespoke-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}
.bespoke-steps p {
  margin: 0;
  color: #dbe5de;
  font-size: 14px;
  line-height: 1.55;
}

/* Why choose us */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 5px 14px 5px 5px;
  background: #f3f1ec;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.why-badge-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
}
.why-badge-icon svg { width: 13px; height: 13px; }
.why-copy h2 { max-width: 520px; }
.why-copy > p:not(.why-badge) {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
}
.why-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.why-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.why-check {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
}
.why-check svg { width: 12px; height: 12px; }
.why-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 540px;
}
.why-tile {
  overflow: hidden;
  border-radius: 28px;
}
.why-tile--team {
  display: flex;
  grid-row: 1 / span 2;
  flex-direction: column;
  padding: 22px 16px 16px;
  background: #f3f1ec;
}
.why-tile-top { padding: 0 8px; }
.why-avatars {
  display: flex;
  align-items: center;
}
.why-avatars img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
}
.why-avatars img:first-child { margin-left: 0; }
.why-avatars span {
  margin-left: 10px;
  font: 700 22px / 1 var(--serif);
  color: var(--forest);
}
.why-tile-top p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.why-tile-photo {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 240px;
  margin-top: 18px;
  object-fit: cover;
  object-position: 72% center;
  border-radius: 22px;
}
.why-tile--support {
  display: flex;
  flex-direction: column;
  padding: 22px 20px 16px;
  background: var(--lime);
  color: var(--forest);
}
.why-tile--support h3 {
  margin: 0;
  font: 700 22px / 1.2 var(--serif);
  letter-spacing: -.02em;
}
.why-tile--support img {
  display: block;
  width: 86%;
  max-width: 200px;
  aspect-ratio: 1;
  margin: 12px auto -10px;
  object-fit: cover;
  object-position: top;
  border: 4px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}
.why-tile--quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  background: #f6f5f2;
  text-align: center;
}
.why-quote-photo {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: 50%;
}
.why-tile--quote blockquote {
  margin: 0;
  color: var(--ink);
  font: italic 600 16px / 1.45 var(--serif);
}

/* Care banner */
.care-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 106px 0;
  color: #fff;
  background: none;
}
.care-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8%;
  background:
    linear-gradient(90deg, rgba(6, 52, 42, .91), rgba(6, 52, 42, .72)),
    url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=2000&q=85') center / cover;
  animation: care-kenburns 22s ease-in-out infinite alternate;
}
@keyframes care-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.care-banner-content {
  max-width: 800px;
  text-align: center;
}
.care-banner h2 { margin-bottom: 31px; }

/* Guidance */
.guidance-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}
.guidance-list { border-top: 1px solid var(--line); }
.guidance-list a {
  display: grid;
  grid-template-columns: 46px 1fr 25px;
  gap: 10px;
  align-items: center;
  padding: 23px 14px;
  margin: 0 -14px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .3s ease;
}
.guidance-list a span,
.guidance-list a b {
  transition: transform .3s ease;
}
.guidance-list a span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.guidance-list a strong { font: 600 18px var(--serif); }
.guidance-list a b { font-size: 22px; font-weight: 400; }
.guidance-list a:hover { background: rgba(166, 220, 126, .14); }
.guidance-list a:hover span { transform: translateX(4px); }
.guidance-list a:hover b { transform: translateX(8px); }

/* FAQs */
#guidance,
#faqs {
  scroll-margin-top: 110px;
}
.faqs {
  background: #f7f6f3;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}
.faq-intro h2 { max-width: 420px; }
.faq-intro > p:not(.why-badge) {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
}
.faq-intro .text-link { margin-top: 18px; }
.faq-cta {
  max-width: 420px;
  margin-top: 36px;
  padding: 22px;
  background: #fff;
  border-radius: 24px;
}
.faq-cta-copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-cta-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  font: 700 22px / 1 var(--serif);
}
.faq-cta-copy strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}
.faq-cta-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.faq-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--lime);
  color: #133d34;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
}
.faq-cta-button:hover {
  background: #8fcb64;
  transform: translateY(-2px);
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  margin: 0;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}
.faq-item[open] {
  background: #123b34;
  color: #fff;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-item[open] summary { color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus { outline: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}
.faq-item summary::after {
  content: "+";
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f3f1ec;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.faq-item p,
.faq-item ul {
  margin: 0;
  padding: 0 22px 22px;
  max-width: none;
  color: #dbe5de;
  font-size: 14px;
  line-height: 1.7;
}
.faq-item ul { padding-left: 42px; }
.faq-item p + ul { padding-top: 0; margin-top: -10px; }
.faq-item li + li { margin-top: 8px; }
.faq-item a {
  color: var(--lime);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Services page */
.services-page { background: #f7f6f3; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-detail {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  scroll-margin-top: 120px;
}
.service-detail img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-detail-copy { padding: 26px 28px 28px; }
.service-detail-copy span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.service-detail-copy h3 {
  margin: 8px 0 10px;
  font: 700 28px / 1.15 var(--serif);
}
.service-detail-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.service-detail-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail-copy li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-top: 1px solid #eef0ed;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.service-detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
@media (min-width: 901px) {
  .service-detail:last-child {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    grid-column: 1 / -1;
    align-items: stretch;
  }
  .service-detail:last-child img {
    height: 100%;
    min-height: 280px;
  }
}

/* Inner page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: url('../images/hero-ghanaian-consolation.png') center 42% / cover;
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 42, 35, .62) 0%, rgba(9, 42, 35, .78) 100%);
}
.page-hero-content { padding: 150px 0 72px; }
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: #dbe5de;
  font-size: 14px;
  font-weight: 500;
}
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--lime); }

/* FAQ page */
.faq-page { background: #f7f6f3; }
.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 112px; }
.faq-cats {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
}
.faq-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid #eef0ed;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.faq-cats a:last-child { border-bottom: 0; }
.faq-cats a span {
  color: var(--green);
  font-size: 16px;
  transition: transform .2s ease;
}
.faq-cats a:hover,
.faq-cats a.is-active {
  background: #f7f6f3;
  color: var(--forest);
}
.faq-cats a:hover span,
.faq-cats a.is-active span { transform: translate(2px, -2px); }
.faq-help-card {
  margin-top: 20px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #123b34;
  color: #dbe5de;
}
.faq-help-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font: 600 24px / 1.2 var(--serif);
}
.faq-help-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
}
.faq-help-card a {
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.faq-help-card a:hover { text-decoration: underline; }
.faq-group {
  margin: 0 0 48px;
  scroll-margin-top: 120px;
}
.faq-group:last-child { margin-bottom: 0; }
.faq-group h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.2vw, 40px);
}

/* Contact page */
.contact-page {
  padding: 0 0 80px;
  background: var(--paper);
}
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: -42px;
  padding: 18px 22px;
  position: relative;
  z-index: 2;
  background: #f7f6f3;
  border-radius: 28px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  color: inherit;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color .2s ease;
}
a.contact-strip-item:hover { background: #fff; }
.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-strip-item strong,
.branch-card h3 {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font: 600 20px / 1.2 var(--serif);
}
.contact-strip-item span:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
  padding-top: 80px;
}
.contact-intro .why-badge { background: #f3f1ec; }
.contact-intro p:not(.why-badge) {
  margin: 22px 0 28px;
  max-width: 460px;
  color: var(--muted);
}
.contact-form-card {
  padding: 40px 36px;
  background: #f7f6f3;
  border-radius: 32px;
}
.contact-form-card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
}
.contact-form-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: 400 15px / 1.4 var(--sans);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23172f2d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8a9995; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(2, 140, 88, .12);
}
.contact-form .button { margin-top: 6px; justify-self: start; }
.contact-form-success {
  margin: 0;
  padding: 22px 0 4px;
  color: var(--forest);
  font-size: 16px;
  font-weight: 600;
}
.contact-form-error {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fdecea;
  color: #8a1f11;
  font-size: 15px;
  font-weight: 600;
}
.contact-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.branch-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 100%;
  padding: 28px 24px 26px;
  background: #fff;
  border-radius: 24px;
}
.branch-tag {
  margin: 4px 0 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.branch-card p:not(.branch-tag) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.branch-card > a:not(.text-link) {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.branch-card > a:not(.text-link):hover { color: var(--green); }
.branch-card .text-link { margin-top: auto; padding-top: 8px; }

/* About page */
.about-page { padding: 0 0 40px; }
.about-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: -42px;
  padding: 18px 22px;
  position: relative;
  z-index: 2;
  background: #f7f6f3;
  border-radius: 28px;
}
.about-cred {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  border-radius: 20px;
}
.about-cred strong {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font: 600 20px / 1.2 var(--serif);
}
.about-cred span:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
  padding-top: 80px;
}
.about-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px 0;
}
.about-story-copy .text-link { margin-top: 8px; }
.about-welcome-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-welcome-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}
.about-welcome-copy .text-link { margin-top: 28px; }
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.purpose-card {
  padding: 40px 36px;
  background: #f7f6f3;
  border-radius: 28px;
}
.purpose-card h3 {
  margin: 12px 0 16px;
  font: 700 32px / 1.15 var(--serif);
}
.purpose-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.purpose-card--vision {
  background: #123b34;
  color: #dbe5de;
}
.purpose-card--vision h3 { color: #fff; }
.purpose-card--vision p { color: #c5d4cd; }
.about-approach-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-approach-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.about-values .section-heading {
  display: block;
  text-align: center;
}
.about-values .section-heading > div,
.about-values .section-heading > p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-value {
  padding: 32px 26px 30px;
  background: #fff;
  border-radius: 24px;
}
.about-value span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.about-value h3 {
  margin: 10px 0 12px;
  font: 700 26px / 1.15 var(--serif);
}
.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  padding: 64px 0 22px;
  color: #dbe5de;
  background: #123b34;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr) minmax(0, 1fr);
  align-items: start;
  column-gap: 48px;
  row-gap: 40px;
}
.footer-logo {
  display: block;
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1) opacity(.92);
}
.footer-tagline {
  margin: 14px 0 0;
  max-width: 260px;
  color: #aebfb7;
  font-size: 14px;
  line-height: 1.65;
}
.footer-grid h3 {
  margin: 4px 0 14px;
  color: #fff;
  font: 600 20px var(--serif);
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-links a,
.footer-contact a {
  color: #dbe5de;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lime);
}
.footer-contact p {
  margin: 4px 0 0;
  max-width: 230px;
  color: #aebfb7;
  font-size: 14px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.footer-social-label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  line-height: 0;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.social-link:hover,
.social-link:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: #123b34;
  outline: none;
  transform: translateY(-2px);
}
.social-link svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.social-link[aria-label="Facebook"] svg { transform: translateX(0.5px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #aebfb7;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 400;
  right: 24px;
  bottom: 108px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
  filter: drop-shadow(0 12px 24px rgba(18, 140, 70, .35));
}
.whatsapp-float-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  transition: transform .28s ease, background-color .28s ease;
}
.whatsapp-float-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2.2s ease-out infinite;
  z-index: -1;
}
.whatsapp-float-icon svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-float-label {
  max-width: 0;
  margin-right: -58px;
  padding: 12px 22px 12px 18px;
  overflow: hidden;
  border-radius: 999px 0 0 999px;
  background: #128c7e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: max-width .35s ease, margin .35s ease, padding .35s ease, opacity .28s ease, transform .28s ease;
}
.whatsapp-float:hover .whatsapp-float-icon,
.whatsapp-float:focus-visible .whatsapp-float-icon {
  background: #1ebe57;
  transform: scale(1.06);
}
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  max-width: 160px;
  margin-right: 0;
  padding: 12px 20px 12px 18px;
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-float:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 4px;
  border-radius: 999px;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Reveals */
[data-reveal],
[data-reveal-words] {
  opacity: 0;
  transform: translateY(24px);
}
[data-reveal-words] .word {
  display: inline-block;
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .nav-wrap { height: 76px; }
  .brand img { width: 175px; }
  .primary-nav { gap: 14px; }
  .header-phone { display: none; }
  .hero { min-height: 640px; }
  .hero-content { padding: 140px 0 145px; }
  .section { padding: 80px 0; }
  .intro-grid,
  .guidance-grid,
  .why-layout { gap: 45px; }
  .experience-badge { right: -10px; }
  .section-heading { gap: 30px; }
  .service-track .service-card { flex-basis: calc((100% - 20px) / 2); }
  .why-layout { grid-template-columns: 1fr; }
  .plan-category-grid { grid-template-columns: 1fr; }
  .plan-assurances {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .plan-assurances li { justify-content: flex-start; }
  .why-mosaic { min-height: 500px; }
  .package-grid--prepaid,
  .package-grid--group,
  .bespoke-card {
    grid-template-columns: 1fr 1fr;
  }
  .package-grid--prepaid .package-card,
  .package-grid--prepaid .package-card:nth-child(n + 5) {
    grid-column: auto;
  }
  .faq-layout,
  .faq-page-layout,
  .contact-layout,
  .service-detail-grid,
  .about-story,
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-strip,
  .about-creds { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .branch-grid { grid-template-columns: 1fr 1fr; }
  .faq-cta { max-width: none; }
  .faq-sidebar { position: static; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 36px, 1170px); }
  .menu-toggle {
    display: grid;
    gap: 4px;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: none;
  }
  .header-portal {
    padding: 9px 13px;
    font-size: 12px;
  }
  .primary-nav {
    display: none;
    position: absolute;
    z-index: 3;
    top: 76px;
    right: 18px;
    left: 18px;
    margin: 0;
    padding: 20px;
    background: #fff;
    box-shadow: 0 12px 30px #123b3430;
  }
  .primary-nav.open { display: grid; gap: 14px; }
  .nav-plans .plans-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    margin-top: 8px;
    padding: 5px 0;
    border: 0;
    border-left: 2px solid var(--green);
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  .primary-nav .plans-menu a { padding: 7px 12px; }
  .hero { min-height: 670px; }
  .hero-content { padding: 130px 0 135px; }
  .hero h1 { font-size: 46px; }
  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 130px 0 56px; }
  .hero-copy { font-size: 16px; }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .trust-grid p + p { padding-left: 16px; }
  .trust-grid p { display: block; padding: 13px 0; }
  .trust-grid strong,
  .trust-grid span { display: block; }
  .trust-grid strong { font-size: 20px; }
  .trust-grid span { font-size: 11px; line-height: 1.2; }
  .intro-grid,
  .why-layout,
  .guidance-grid { grid-template-columns: 1fr; }
  .intro-image img { height: 380px; }
  .experience-badge { right: 0; bottom: 20px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .plan-category-grid,
  .package-grid--prepaid,
  .package-grid--group,
  .bespoke-card { grid-template-columns: 1fr; }
  .plan-category { min-height: 0; }
  .plan-jump a { width: 100%; justify-content: center; }
  .plan-detail { margin-top: 48px; padding-top: 48px; }
  .compare-table thead th:first-child,
  .compare-table tbody th { min-width: 150px; width: 150px; }
  .bespoke-card { padding: 28px 22px; }
  .service-track .service-card {
    flex-basis: 100%;
    min-height: 420px;
  }
  .service-track .service-card::after {
    height: 80px;
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
  .service-track .service-card h3 {
    right: 30px;
    left: 30px;
    bottom: 36px;
    font-size: 27px;
  }
  .carousel-controls { margin-top: 18px; }
  .why-checks { grid-template-columns: 1fr; }
  .why-mosaic {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .why-tile--team {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 380px;
  }
  .why-tile--support,
  .why-tile--quote { min-height: 230px; }
  .guidance-grid { gap: 30px; }
  .contact-strip,
  .about-creds {
    margin-top: -28px;
    padding: 10px 12px;
  }
  .contact-layout { padding-top: 56px; }
  .about-story { padding-top: 56px; }
  .purpose-card { padding: 32px 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .form-row,
  .branch-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }
  .footer-social { flex-wrap: wrap; }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .preloader-orbit { animation: none; }
  .site-preloader { transition: opacity .2s ease, visibility .2s ease; }
  .care-banner::before,
  .whatsapp-float-icon::before { animation: none; }
  .hero-content > *,
  .hero-trust,
  [data-reveal],
  [data-reveal-words],
  [data-reveal-words] .word {
    opacity: 1;
    transform: none;
  }
  [data-image-reveal] { clip-path: none; }
  .button:hover,
  .button:hover .button-arrow,
  .plan-category:hover,
  .package-card:hover,
  .service-track .service-card:hover::before,
  .service-track .service-card:hover h3,
  .guidance-list a:hover span,
  .guidance-list a:hover b,
  .social-link:hover,
  .social-link:focus-visible,
  .faq-cta-button:hover,
  .header-portal:hover,
  .header-portal:focus-visible,
  .compare-start:hover,
  .compare-start:focus-visible {
    transform: none;
  }
}
