:root {
  --cream: #F7FBF4;
  --soft-green: #EAF6E3;
  --pale-green: #D9EFCF;
  --deep-green: #2F6B2F;
  --brand-blue: #227fb9;
  --brand-yellow: #ede42d;
  --brand-red: #e8232a;
  --brand-green: #56b33f;
  --brand-navy: #00528a;
  --soft-blue: #EAF5FC;
  --soft-yellow: #FFFBE0;
  --soft-red: #FDECEC;
  --soft-navy: #E9F1F8;
  --soft-brand-green: #EDF8EA;
  --ink: #101521;
  --muted: #626b78;
  --line: rgba(16, 21, 33, 0.12);
  --white: #ffffff;
  --title-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Lato", Arial, sans-serif;
  --shadow-soft: 0 26px 80px rgba(16, 21, 33, 0.12);
  --shadow-card: 0 18px 50px rgba(16, 21, 33, 0.1);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--deep-green); text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--brand-navy); }

h1, h2, h3, h4, h5, h6,
.display-heading,
.section-title {
  font-family: var(--title-font);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

p { color: var(--muted); }

.shadow-soft { box-shadow: var(--shadow-soft); }
.section-padding { padding: 105px 0; }
.bg-soft-green { background: var(--soft-green); }

.section-title { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.section-text { font-size: 1.08rem; max-width: 720px; }
.section-heading-narrow { max-width: 790px; }
.text-white-75 { color: rgba(255,255,255,.78) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--deep-green);
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--deep-green);
}

.eyebrow.light { color: rgba(255,255,255,.88); }
.eyebrow.light span { background: var(--brand-yellow); }

.btn {
  border-radius: 999px;
  font-weight: 900;
  padding: .74rem 1.18rem;
}

.btn-lg { padding: .86rem 1.42rem; }
.btn-sm { padding: .62rem 1rem; font-size: .92rem; }

.btn-brand {
  background: var(--deep-green);
  border: 1px solid var(--deep-green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 107, 47, 0.23);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light-green {
  color: var(--deep-green);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.6);
}

.btn-light-green:hover {
  color: var(--white);
  background: var(--deep-green);
  border-color: var(--deep-green);
}

.btn-outline-brand {
  border: 1px solid rgba(47, 107, 47, .3);
  color: var(--deep-green);
  background: rgba(255,255,255,.68);
}

.btn-outline-brand:hover { background: var(--deep-green); color: var(--white); }

.text-link { font-weight: 900; color: var(--deep-green); }

/* Sticky transparent header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  padding: 18px 0;
  background: transparent;
  transition: padding .25s ease, background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 251, 244, .78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(16, 21, 33, .08);
}

.site-header .navbar { padding: 0; }

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  min-width: 0;
}

.site-header.is-scrolled .navbar-brand { color: var(--ink); }

.brand-mark {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 0;
  background: transparent;
  position: relative;
  box-shadow: none;
  overflow: visible;
}

.footer-brand .brand-mark {
  width: 100px;
  height: 100px;
}

.brand-mark::after { display: none; }

.brand-logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.brand-text {
  display: grid;
  font-family: var(--title-font);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
}

.brand-text span {
  font-family: var(--body-font);
  color: rgba(255,255,255,.74);
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 6px;
}

.site-header.is-scrolled .brand-text span { color: var(--muted); }

.nav-menu-wrap {
  justify-self: center;
  display: inline-flex;
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  width: auto;
  max-width: max-content;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .nav-menu-wrap {
  background: rgba(255,255,255,.9);
  border-color: rgba(47, 107, 47, .12);
}

.navbar-nav { gap: 0; }
.nav-link {
  color: rgba(255,255,255,.92);
  font-weight: 900;
  border-radius: 11px;
  padding: .48rem .7rem !important;
  font-size: .95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.site-header.is-scrolled .nav-link { color: var(--ink); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active {
  color: var(--deep-green);
  background: var(--soft-green);
}

.nav-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .88rem 1.15rem;
  border-radius: 14px;
  background: var(--deep-green);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.nav-phone:hover { color: var(--white); background: var(--brand-navy); transform: translateY(-1px); }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 14px;
  background: rgba(255,255,255,.2);
  padding: .65rem .78rem;
}

.site-header.is-scrolled .navbar-toggler { border-color: rgba(16,21,33,.16); background: rgba(255,255,255,.8); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(47, 107, 47, .16); }

/* Shared cards and section components */
.feature-card,
.service-card,
.location-card,
.rounded-panel,
.cta-panel,
.accordion-item {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-md);
}

.feature-card,
.service-card { padding: 28px; height: 100%; box-shadow: var(--shadow-card); }

.feature-card i,
.service-icon,
.why-list i,
.footer-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft-green);
  color: var(--deep-green);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.feature-card h3,
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.feature-card p,
.service-card p { margin-bottom: 0; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 900; }
.service-icon.accent-blue { color: var(--brand-blue); }
.service-icon.accent-yellow { color: #8c8400; background: rgba(237,228,45,.22); }
.service-icon.accent-red { color: var(--brand-red); background: rgba(232,35,42,.08); }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags span {
  border-radius: 999px;
  padding: .65rem .95rem;
  color: var(--deep-green);
  background: var(--soft-green);
  border: 1px solid rgba(47,107,47,.12);
  font-weight: 900;
  font-size: .91rem;
}

.calming-image,
.main-collage-img,
.why-img-one,
.why-img-two {
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.rounded-panel { padding: 44px; background: var(--white); }

.map-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--soft-green);
}

.map-placeholder i { font-size: 2.8rem; color: var(--deep-green); margin-bottom: 14px; }
.contact-mini-card { display: grid; gap: 12px; margin-top: 18px; }
.contact-mini-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}
.contact-mini-card i { color: var(--deep-green); }

.why-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.why-list div { display: flex; gap: 14px; align-items: center; font-weight: 900; }
.why-list i { margin-bottom: 0; flex: 0 0 auto; }

.calm-accordion { max-width: 920px; margin: 0 auto; display: grid; gap: 14px; }
.accordion-item { overflow: hidden; box-shadow: 0 14px 35px rgba(16,21,33,.06); }
.accordion-button { font-weight: 900; font-size: 1.08rem; padding: 1.25rem 1.35rem; }
.accordion-button:not(.collapsed) { color: var(--deep-green); background: var(--soft-green); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { color: var(--muted); }

.cta-panel {
  padding: 54px;
  border: 0;
  overflow: hidden;
  background: var(--deep-green);
}

/* Footer */
.site-footer {
  background: #ffffff;
  color: var(--ink);
  padding: 82px 0 28px;
  border-top: 1px solid rgba(16,21,33,.08);
}

.footer-brand { color: var(--ink); }
.footer-brand .brand-text span { color: var(--muted); }
.footer-text { color: var(--muted); max-width: 510px; }
.footer-intro-text { font-size: 1rem; }
.footer-title {
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-local-links { gap: 9px; }
.footer-links a { color: var(--muted); font-weight: 700; }
.footer-links a:hover { color: var(--deep-green); }
.footer-contact-list { display: grid; gap: 18px; }
.footer-contact-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.footer-contact-item p { margin: 0; color: var(--muted); }
.footer-contact-item a, .footer-contact-item strong { color: var(--ink); font-weight: 900; }
.footer-icon { margin-bottom: 0; background: rgba(47,107,47,.09); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(16,21,33,.1);
  padding-top: 24px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); font-weight: 800; margin-left: 18px; }
.footer-bottom a:hover { color: var(--deep-green); }
.made-by { color: var(--muted); font-size: .94rem; }
.made-by a { margin-left: 0; color: var(--deep-green); }
.footer-policy-links { white-space: nowrap; }

.mobile-scroll-controls {
  display: none;
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47,107,47,.16);
  border-radius: 50%;
  background: #fff;
  color: var(--deep-green);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(16,21,33,.08);
}

.scroll-arrow:hover {
  background: var(--deep-green);
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--deep-green);
  color: var(--white);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1050;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 991.98px) {
  .site-header { padding: 12px 0; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-menu-wrap {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    flex-basis: 100% !important;
    margin-top: 12px;
    background: rgba(255,255,255,.95);
    border-color: rgba(47,107,47,.12);
  }
  .navbar-brand { color: var(--white); }
  .site-header .nav-link { color: var(--ink); }
  .site-header .nav-link:hover,
  .site-header .nav-link.active { color: var(--deep-green); background: var(--soft-green); }
  .nav-phone { display: none; }
  .section-padding { padding: 78px 0; }
  .why-list { grid-template-columns: 1fr; }
  .rounded-panel, .cta-panel { padding: 30px; }
}

@media (max-width: 767.98px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .row { --bs-gutter-x: 1.15rem; }
  .brand-text { font-size: 1.15rem; }
  .brand-text span { font-size: .58rem; }
  .brand-mark { width: 148px; height: 46px; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-brand .brand-mark { width: 176px; height: 54px; }
  .section-title { font-size: clamp(2.35rem, 14vw, 3.25rem); }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom a { margin: 0 16px 0 0; }
  .footer-policy-links { white-space: normal; }
  .mobile-scroll-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 16px;
  }
}

/* Mobile navbar and footer logo fix */
@media (max-width: 767.98px) {
  .site-header {
    background: rgba(247, 251, 244, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 35px rgba(16, 21, 33, 0.08);
    padding: 8px 0;
  }

  .nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .navbar-brand {
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
  }

  .navbar-brand .brand-mark {
    width: 78px !important;
    height: 78px !important;
  }

  .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .navbar-toggler {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-left: auto;
    background: #ffffff;
    border: 1px solid rgba(16, 21, 33, 0.14);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(16, 21, 33, 0.08);
  }

  .nav-menu-wrap {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(16, 21, 33, 0.1);
  }

  .site-header .nav-link {
    color: var(--ink) !important;
    padding: 0.72rem 0.9rem !important;
  }

  .site-footer {
    padding: 58px 0 28px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-brand .brand-mark {
    width: 100px !important;
    height: 100px !important;
  }

  .footer-brand .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer-brand .brand-text {
    display: none;
  }

  .footer-intro-text {
    margin-top: 18px !important;
  }
}

/* Rounded logo edges */
.brand-mark {
  border-radius: 18px;
  overflow: hidden;
}

.brand-logo-img {
  border-radius: 18px;
  overflow: hidden;
}

/* Slightly softer on smaller mobile logo */
@media (max-width: 767.98px) {
  .brand-mark,
  .brand-logo-img {
    border-radius: 16px;
  }
}


/* Soft brand colour accents without gradients or coloured card edge lines */
.section-colour-wash,
.section-colour-wash-blue {
  position: relative;
  overflow: hidden;
}

.section-colour-wash::before,
.section-colour-wash-blue::before {
  display: none;
}

.section-colour-wash > .container,
.section-colour-wash-blue > .container {
  position: relative;
  z-index: 1;
}

.feature-card-blue {
  background: #EAF5FC;
  border-color: rgba(34,127,185,.10);
}

.feature-card-yellow {
  background: #FFFBE0;
  border-color: rgba(237,228,45,.22);
}

.feature-card-blue i { background: rgba(34,127,185,.12); color: var(--brand-navy); }
.feature-card-yellow i { background: rgba(237,228,45,.24); color: #756e00; }

.service-accent-green,
.service-accent-blue,
.service-accent-yellow,
.service-accent-red {
  border-top: 0;
}

.service-accent-green {
  background: #EEF9E9;
  border-color: rgba(86,179,63,.14);
}

.service-accent-blue {
  background: #EAF5FC;
  border-color: rgba(34,127,185,.12);
}

.service-accent-yellow {
  background: #FFFBE0;
  border-color: rgba(237,228,45,.24);
}

.service-accent-red {
  background: #FFF0F1;
  border-color: rgba(232,35,42,.10);
}

.service-accent-green .service-icon,
.service-accent-blue .service-icon,
.service-accent-yellow .service-icon,
.service-accent-red .service-icon {
  background: rgba(255,255,255,.68);
}

.area-tags span,
.area-tags span:nth-child(4n+1),
.area-tags span:nth-child(4n+2),
.area-tags span:nth-child(4n+3),
.area-tags span:nth-child(4n+4) {
  background: var(--soft-green);
  color: var(--deep-green);
  border-color: rgba(47,107,47,.12);
}


/* Light hero navbar variant
   Use this on pages where the hero background is pale/white so the shared navbar stays readable.
   Add class="light-hero-page" to the body. The index page keeps the original transparent/white navbar. */
.light-hero-page .site-header:not(.is-scrolled) {
  background: rgba(247, 251, 244, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 42px rgba(16, 21, 33, 0.08);
}

.light-hero-page .site-header:not(.is-scrolled) .navbar-brand {
  color: var(--ink);
}

.light-hero-page .site-header:not(.is-scrolled) .brand-text span {
  color: var(--muted);
}

.light-hero-page .site-header:not(.is-scrolled) .nav-menu-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(47, 107, 47, 0.12);
  box-shadow: 0 12px 32px rgba(16, 21, 33, 0.06);
}

.light-hero-page .site-header:not(.is-scrolled) .nav-link {
  color: var(--ink);
}

.light-hero-page .site-header:not(.is-scrolled) .nav-link:hover,
.light-hero-page .site-header:not(.is-scrolled) .nav-link.active {
  color: var(--deep-green);
  background: var(--soft-green);
}

.light-hero-page .site-header:not(.is-scrolled) .navbar-toggler {
  border-color: rgba(16, 21, 33, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.light-hero-page .site-header:not(.is-scrolled) .nav-phone {
  box-shadow: 0 16px 36px rgba(47, 107, 47, 0.20);
}

/* Universal family testimonials section */
.family-testimonials-section {
  background: var(--cream);
}

.family-testimonial-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 21, 33, 0.08);
  box-shadow: var(--shadow-card);
}

.family-testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.family-testimonial-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep-green);
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(47, 107, 47, 0.18);
}

.family-testimonial-label {
  color: var(--ink);
  font-weight: 900;
  font-size: 0.92rem;
}

.family-testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.75;
}

.family-testimonial-green {
  background: #EEF9E9;
}

.family-testimonial-blue {
  background: #EAF5FC;
}

.family-testimonial-yellow {
  background: #FFFBE0;
}

.family-testimonial-red {
  background: #FFF0F1;
}

.family-testimonial-blue .family-testimonial-avatar {
  background: var(--brand-navy);
}

.family-testimonial-yellow .family-testimonial-avatar {
  background: #756e00;
}

.family-testimonial-red .family-testimonial-avatar {
  background: #9c1f24;
}

@media (max-width: 767.98px) {
  .family-testimonials-scroll > [class*="col-"] {
    flex-basis: 86%;
    max-width: 86%;
  }

  .family-testimonial-card {
    padding: 24px;
  }
}