/* Human To Human Care LLC — matches original theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Quicksand:wght@400;500;600;700&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
  --color-teal: #004d56;
  --color-teal-dark: #004d56;
  --color-teal-nav: #004d56;
  --color-teal-footer: #004d56;
  --color-teal-banner: rgba(0, 77, 86, 0.88);
  --color-green: #b4d444;
  --color-green-dark: #9fc03a;
  --color-form-overlay: linear-gradient(135deg, rgba(79, 184, 193, 0.88) 0%, rgba(0, 77, 86, 0.82) 100%);
  --color-gold: #d4af37;
  --color-white: #ffffff;
  --color-off-white: #f5f8f7;
  --color-text: #1a1a1a;
  --color-muted: #5a7070;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --font-banner: 'Playfair Display', Georgia, serif;
  --color-vision-green: #1a6b55;
  --wrapper: 1200px;
  --topbar-h: 80px;
  --nav-h: 72px;
  --radius-pill: 55px;
  --radius-input: 10px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Accessibility widget removed from clone */
#userwayAccessibilityWidget,
.uwy,
.userway_p5 { display: none !important; }
html { scroll-behavior: smooth; font-size: 62.5%; }
body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.85; }
ul { list-style: none; }
address { font-style: normal; }

.wrapper {
  width: 100%;
  max-width: var(--wrapper);
  margin: 0 auto;
  padding: 0 20px;
}

.comp { color: var(--color-green); font-weight: 700; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.2s ease, box-shadow 0.2s ease, opacity var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn--nav:hover,
.btn--nav:active {
  transform: none;
}
.btn--nav:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--green {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
.btn--green:hover { background: var(--color-green-dark); border-color: var(--color-green-dark); opacity: 1; }

.btn--find-more {
  background: var(--color-green);
  color: var(--color-text);
  border-color: var(--color-green);
  font-weight: 800;
}
.btn--find-more:hover { background: var(--color-green-dark); opacity: 1; }

.btn--white {
  background: var(--color-white);
  color: var(--color-teal);
  border-color: var(--color-white);
}
.btn--white:hover { opacity: 0.92; }

.btn--white-green {
  background: var(--color-white);
  color: var(--color-green);
  border-color: var(--color-white);
  font-weight: 800;
}
.btn--white-green:hover { opacity: 0.92; background: rgba(255, 255, 255, 0.95); }

.btn--white-gold {
  background: var(--color-white);
  color: var(--color-gold);
  border-color: var(--color-white);
  font-weight: 800;
}
.btn--white-gold:hover { opacity: 0.92; }

.btn--nav {
  padding: 16px 36px;
  font-size: 1.6rem;
  font-weight: 800;
}

.btn--submit {
  min-width: 180px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  padding: 16px 44px;
}
.btn--green.btn--submit:hover,
.page-form .btn--submit:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  opacity: 1;
}

.btn:focus-visible,
.nav__search-btn:focus-visible,
.hamburger:focus-visible,
.drawer-link:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline-white:hover { background: var(--color-white); color: var(--color-teal); opacity: 1; }

.link-green { color: var(--color-green); font-weight: 700; }
.link-green:hover { text-decoration: underline; opacity: 1; }

/* ---- Topbar ---- */
.topbar {
  background: var(--color-teal);
  font-family: var(--font-heading); /* Raleway */
  color: var(--color-white);
  min-height: var(--topbar-h);
  padding: 8px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 110;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  width: 100%;
}

.topbar__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.25;
}

.topbar__question {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.topbar__call {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topbar__divider {
  width: 2px;
  height: 36px;
  background: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__phone-icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topbar__contact-info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.topbar__phone-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition);
}
.topbar__phone-num:hover { color: var(--color-green); opacity: 1; }

.topbar__email-addr {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition);
}
.topbar__email-addr:hover { color: var(--color-green); opacity: 1; }

/* ---- Site header ---- */
.site-header { position: relative; z-index: 100; }

.site-header--hero {
  position: absolute;
  top: calc(var(--topbar-h) + 20px);
  left: 0;
  right: 0;
  background: transparent;
}

.site-header--inner {
  background: var(--color-teal-nav);
  padding: 14px 0;
}

.site-header--hero .nav {
  align-items: center;
  padding: 0;
  min-height: var(--nav-h);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  padding: 12px 0;
  gap: 24px;
  position: relative;
}

.nav--inner { justify-content: center; position: relative; }

.nav__brand {
  position: relative;
  z-index: 120;
  flex-shrink: 0;
  line-height: 0;
}

.site-header--hero .nav__brand {
  align-self: flex-start;
}

.site-header--hero .nav__brand img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin-bottom: -90px;
}

.nav__brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.nav__cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Center buttons absolutely in the transparent hero nav */
.site-header--hero .nav__cta-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-header--inner .nav__tools {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav__search-btn,
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition), opacity var(--transition);
}
.nav__search-btn:hover,
.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.nav__search-btn {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 1.4rem;
}

.hamburger {
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: auto;
  min-height: 44px;
  position: relative;
  z-index: 1;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger__label {
  display: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  line-height: 1;
  margin-top: 8px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile chrome helpers — hidden on desktop */
.mobile-logo-bar,
.mobile-search-row {
  display: none;
}

.nav__links { display: none; }

/* Sticky inner header on scroll */
.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---- Mobile drawer — desktop: full-height slide-in; mobile: hamburger dropdown ---- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: var(--color-teal-nav);
  z-index: 251;
  border-radius: 0;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--color-white);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 77, 86, 0.95);
  flex-shrink: 0;
}

.drawer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.drawer-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.drawer-close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.drawer-close-icon::before,
.drawer-close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.drawer-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Drawer navigation */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  flex: 1;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  opacity: 0;
  transform: translateX(24px);
  transition: background 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}

.mobile-drawer.open .drawer-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.open .drawer-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.open .drawer-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-drawer.open .drawer-link:nth-child(3) { transition-delay: 0.18s; }
.mobile-drawer.open .drawer-link:nth-child(4) { transition-delay: 0.22s; }
.mobile-drawer.open .drawer-link:nth-child(5) { transition-delay: 0.26s; }
.mobile-drawer.open .drawer-link:nth-child(6) { transition-delay: 0.30s; }

.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.drawer-link.active {
  background: rgba(180, 212, 68, 0.15);
  border-left: 4px solid var(--color-green);
}

.drawer-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-green);
  transition: transform 0.2s ease;
}

.drawer-link:hover .drawer-link__icon {
  transform: scale(1.1);
}

.drawer-link__icon svg {
  width: 20px;
  height: 20px;
}

.drawer-link__text {
  flex: 1;
}

.drawer-arrow {
  color: var(--color-white);
  font-size: 1.2rem;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.drawer-link:hover .drawer-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Drawer footer */
.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 77, 86, 0.95);
  flex-shrink: 0;
}

.drawer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.drawer-contact:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  color: var(--color-white);
}

.drawer-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.drawer-contact__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.drawer-contact__text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.drawer-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 1.5rem;
  text-align: center;
}

body.drawer-is-open {
  overflow: hidden;
}

body.drawer-is-open .site-chrome,
body.drawer-is-open .site-header {
  z-index: auto;
}

.mobile-drawer:not(.open) .drawer-link {
  pointer-events: none;
}

/* ---- Hero (home) ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: flex-start;
  padding-top: 330px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 77, 86, 0.72) 0%, rgba(0, 77, 86, 0.28) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__bg,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0;
  color: var(--color-white);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.45);
  max-width: 650px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-green);
  font-weight: 800;
}

.hero-accent {
  color: var(--color-green);
  font-weight: 800;
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  max-width: 560px;
}

.hero .btn--find-more {
  padding: 16px 40px;
  font-size: 1.6rem;
  font-weight: 800;
}

/* ---- Inner page banner ---- */
.page-banner {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.page-banner__logo {
  position: absolute;
  top: 24px;
  left: 20px;
  z-index: 3;
}

.page-banner__logo img { width: 200px; height: 200px; object-fit: contain; }

.page-banner__title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-teal-banner);
  padding: 18px 20px;
  text-align: center;
}

.page-banner__title-bar h1 {
  font-family: var(--font-banner);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.page-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.page-content--full { max-width: 100%; }

/* ---- Page content ---- */
.page-content {
  padding: 32px 0 56px;
  animation: fadeSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-content__intro {
  font-size: 1.7rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #ccc;
}

.page-content .intro-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-teal);
  border-bottom: 4px solid var(--color-teal);
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.page-content p { color: var(--color-muted); margin-bottom: 18px; line-height: 1.75; font-size: 1.6rem; }
.page-content h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-teal); margin: 28px 0 14px; }
.page-content ul.bullet { list-style: disc; padding-left: 24px; margin-bottom: 20px; color: var(--color-muted); }
.page-content ul.bullet li { margin-bottom: 6px; }

.breadcrumb {
  font-size: 1.4rem;
  color: var(--color-teal);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #ccc;
}
.breadcrumb a { color: var(--color-teal); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; opacity: 1; }

.content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

/* ---- Page sidebar ---- */
.page-sidebar {
  position: relative;
}

.page-sidebar__card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 77, 86, 0.1);
  border: 1px solid rgba(0, 77, 86, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}

.page-sidebar__card:hover {
  box-shadow: 0 8px 32px rgba(0, 77, 86, 0.14);
}

.page-sidebar__header {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.page-sidebar__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sidebar__header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 77, 86, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.page-sidebar__badge {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.page-sidebar__body {
  padding: 24px 22px 28px;
}

.page-sidebar__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-teal);
  margin-bottom: 6px;
}

.page-sidebar__areas {
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.page-sidebar__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.2;
}

.page-sidebar__action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.page-sidebar__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.page-sidebar__action--primary {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.page-sidebar__action--primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.page-sidebar__action--secondary {
  background: var(--color-white);
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.page-sidebar__action--secondary:hover {
  background: var(--color-off-white);
}

.page-sidebar__contact {
  list-style: none;
  margin: 0 0 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(0, 77, 86, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-sidebar__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--color-off-white);
  border-radius: 10px;
  color: var(--color-teal);
}

.page-sidebar__icon svg {
  width: 18px;
  height: 18px;
}

.page-sidebar__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.page-sidebar__contact a,
.page-sidebar__contact span,
.page-sidebar__contact address {
  font-size: 1.35rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.page-sidebar__contact a {
  color: var(--color-teal);
  font-weight: 600;
}

.page-sidebar__contact a:hover {
  color: var(--color-green);
  text-decoration: underline;
  opacity: 1;
}

.page-sidebar__nav-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-sidebar__nav a {
  display: block;
  padding: 9px 14px;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.page-sidebar__nav a:hover {
  background: var(--color-off-white);
  color: var(--color-teal);
  opacity: 1;
  padding-left: 18px;
}

.page-sidebar__nav a.is-active {
  background: rgba(180, 212, 68, 0.15);
  color: var(--color-teal);
  font-weight: 700;
  border-left: 3px solid var(--color-green);
  padding-left: 14px;
}

@media (min-width: 901px) {
  .page-sidebar {
    position: sticky;
    top: calc(var(--topbar-h) + var(--nav-h) + 24px);
    align-self: start;
  }
}

@media (max-width: 900px) {
  .content-sidebar {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    order: -1;
  }

  .page-sidebar__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-sidebar__action {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }

  .page-sidebar__nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .page-sidebar__actions {
    flex-direction: column;
  }

  .page-sidebar__action {
    flex: 1 1 100%;
  }

  .page-sidebar__nav ul {
    grid-template-columns: 1fr;
  }
}

/* ---- Section utilities ---- */
.section { padding: 60px 0; }
.section-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}
.text-center { text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-28px);
}
.reveal--left.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.96);
}
.reveal--scale.visible {
  transform: scale(1);
}

/* ---- Welcome ---- */
.welcome-section { padding: 64px 0; text-align: left; }

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 56px;
  align-items: center;
}

.welcome-grid__image {
  display: flex;
  justify-content: center;
}

.welcome-grid__image {
  position: relative;
}

.welcome-grid__image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: min(100%, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 12px solid transparent;
  border-top-color: var(--color-green);
  border-left-color: var(--color-green);
  border-bottom-color: var(--color-green);
  transform: rotate(-30deg);
  z-index: 0;
}

.welcome-grid__image img {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}
.welcome-grid__image:hover img { transform: scale(1.03); }

.welcome-grid__text .section-label {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.welcome-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.welcome-heading__logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}

.welcome-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1.15;
}

.welcome-heading h2 span { color: var(--color-green); }

.welcome-grid__text p {
  color: var(--color-muted);
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ---- Services grid (overlay tiles) ---- */
.services-section { padding: 50px 0 60px; background: var(--color-white); }

.services-section__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
  color: var(--color-muted);
  font-size: 1.6rem;
}
.services-section__intro a { color: var(--color-green); font-weight: 700; transition: opacity var(--transition), color var(--transition); }
.services-section__intro a:hover { opacity: 1; color: var(--color-green-dark); text-decoration: underline; }

.services-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  min-height: 260px;
}
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-tile:hover img { transform: scale(1.04); opacity: 1; }

.service-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 77, 86, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
  transition: background var(--transition);
}

.service-tile:hover .service-tile__overlay {
  background: rgba(0, 77, 86, 0.82);
}

.service-tile h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  text-shadow: none;
}

/* ---- Mission block ---- */
.mission-block {
  background: var(--color-teal-dark);
  color: var(--color-white);
  padding: 56px 0;
}

.mission-block__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.mission-block__text .section-label { color: var(--color-white); font-size: 1.6rem; margin-bottom: 8px; }

.mission-block__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.mission-block__text .section-title { color: var(--color-white); margin-bottom: 20px; }

.mission-block__text p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.95;
}

.mission-block__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-card {
  background: var(--color-white);
  padding: 28px 24px;
  text-align: center;
  border-radius: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 1.4rem;
  color: var(--color-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ---- Team block ---- */
.team-block { padding: 60px 0; background: var(--color-white); }

.team-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.team-block__photo {
  position: relative;
  padding: 24px 0 0 24px;
}

.team-block__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  background: var(--color-green);
  z-index: 0;
}

.team-block__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-block__photo:hover img { transform: scale(1.03); }

.team-block__text .section-title { margin-bottom: 16px; }
.team-block__text p { color: var(--color-muted); margin-bottom: 14px; font-size: 1.6rem; line-height: 1.7; }

/* ---- Testimonials ---- */
.testimonials-section { padding: 56px 0; background: var(--color-off-white); }

.testimonial-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.testimonial-card blockquote {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.65;
}

.stars { color: #ea0; font-size: 1.8rem; letter-spacing: 3px; margin-bottom: 14px; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial-author span { font-weight: 700; color: var(--color-teal); font-size: 1.6rem; }

.swiper-pagination-bullet-active { background: var(--color-teal) !important; }

/* ---- Contact form (home) ---- */
.form-section {
  position: relative;
  padding: 70px 0;
  color: var(--color-white);
  overflow: hidden;
}

.form-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
}

.form-section__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-form-overlay);
  background-color: rgba(79, 184, 193, 0.78);
}

.form-section .wrapper { position: relative; z-index: 1; }

.form-section .section-label { color: var(--color-white); text-align: center; font-size: 1.6rem; }
.form-section .section-title { color: var(--color-white); text-align: center; margin-bottom: 8px; }

.form-section__sub {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-form { max-width: 900px; margin: 0 auto; }

.contact-form--home {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.contact-form--home .form-group label {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form--home .form-group input,
.contact-form--home .form-group textarea {
  border: none;
  padding: 14px 18px;
}

.contact-form--home .form-checkbox {
  color: var(--color-white);
  font-size: 1.2rem;
}

.contact-form--home .form-checkbox a {
  color: var(--color-white);
  text-decoration: underline;
}

.contact-form--home .btn--submit {
  background: var(--color-white);
  color: var(--color-teal);
  border-color: var(--color-white);
  font-weight: 800;
  text-transform: capitalize;
}

.contact-form--home .btn--submit:hover {
  background: var(--color-off-white);
  opacity: 1;
}

.contact-form--home .form-success {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: var(--color-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-white);
}

.form-section .form-group input,
.form-section .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-input);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.5rem;
}

.form-section .form-group textarea { min-height: 140px; resize: vertical; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 24px;
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox input { width: auto; margin-top: 4px; accent-color: var(--color-green); }
.form-checkbox a { color: var(--color-gold); font-weight: 700; text-decoration: underline; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.form-success {
  display: none;
  background: rgba(14, 95, 111, 0.08);
  border: 2px solid var(--color-green);
  color: var(--color-teal);
  padding: 14px 20px;
  border-radius: var(--radius-input);
  text-align: center;
  margin-top: 16px;
  font-size: 1.4rem;
}
.form-success.show { display: block; }

/* Inner page forms */
.page-form .form-group label { color: var(--color-text); font-size: 1.2rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; }
.page-form .form-group input,
.page-form .form-group select,
.page-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-input);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.5rem;
}
.page-form .form-group textarea { min-height: 120px; resize: vertical; }

.form-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px;
  margin-top: 28px;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
.form-box:focus-within {
  box-shadow: 0 6px 28px rgba(0, 77, 86, 0.1);
}

.form-box__required { color: #c00; font-size: 1.3rem; margin-bottom: 20px; }

.form-box__section {
  background: #e8e8e8;
  text-align: center;
  padding: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin: 24px 0 16px;
  color: var(--color-text);
}

.form-row--3 { grid-template-columns: repeat(3, 1fr); }

.form-fieldset {
  border: none;
  margin: 8px 0 20px;
  padding: 0;
}

.form-fieldset legend {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--color-text);
}

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
}

.form-actions--page {
  justify-content: flex-end;
  margin-top: 8px;
}

.form-group--file input[type="file"] {
  padding: 10px 0;
  border: none;
  font-size: 1.4rem;
}

.referral-entry { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed #ddd; }
.referral-entry:last-of-type { border-bottom: none; }

/* ---- Services page ---- */
.services-intro-band {
  background: var(--color-teal-dark);
  color: var(--color-white);
  text-align: center;
  padding: 48px 40px;
  margin-bottom: 40px;
}

.services-intro-band h2 {
  font-family: var(--font-banner);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 16px;
}

.services-intro-band p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.75;
  opacity: 0.95;
  color: var(--color-white);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  margin-top: 8px;
}

.service-page-card {
  transition: transform var(--transition);
}
.service-page-card:hover {
  transform: translateY(-3px);
}
.service-page-card a {
  display: block;
  text-align: center;
  color: inherit;
}
.service-page-card a:hover { opacity: 1; }

.service-page-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
}
.service-page-card:hover img { transform: scale(1.04); }

.service-page-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-page-card p {
  font-size: 1.35rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.service-page-card:nth-child(9) { grid-column: 2; }
.service-page-card:nth-child(10) { grid-column: 3; }

/* ---- Resources ---- */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.resource-card {
  display: block;
  padding: 20px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: var(--color-white);
  transition: border-color var(--transition), transform 0.25s ease, box-shadow 0.25s ease;
}
.resource-card:hover {
  border-color: var(--color-teal);
  opacity: 1;
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0, 77, 86, 0.1);
}

.resource-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 6px;
  line-height: 1.4;
}

.resource-url {
  font-size: 1.35rem;
  color: var(--color-muted);
}

/* ---- About ---- */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}

.about-mission h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.about-mission img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.about-vision {
  background: var(--color-vision-green);
  color: var(--color-white);
  padding: 56px 0;
  margin: 0;
}

.about-vision__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-vision__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.about-vision__text p {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--color-white);
  opacity: 0.95;
}

.about-vision img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* About page — teal intro box */
.about-intro-box {
  background: var(--color-teal-dark);
  color: var(--color-white);
  text-align: center;
  padding: 48px 40px;
  margin: 0 0 48px;
}

.about-intro-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 20px;
}

.about-intro-box p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--color-white);
  opacity: 0.95;
}

/* About page — full-width (no sidebar) layout */
.about-fullwidth {
  display: block;
}

.about-fullwidth .about-mission,
.about-fullwidth .about-vision {
  gap: 48px;
  margin: 56px 0;
}

.about-fullwidth .about-mission h2,
.about-fullwidth .about-vision h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

.about-fullwidth .about-mission .comp,
.about-fullwidth .about-vision .comp {
  color: var(--color-green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Map ---- */
.map-embed { margin-top: 28px; border-radius: 6px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 360px; border: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--color-teal-footer); color: var(--color-white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0 36px;
}

.footer-grid h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-grid p, .footer-grid address { font-size: 1.4rem; line-height: 1.7; opacity: 0.92; }
.footer-brand {
  text-align: center;
}
.footer-brand .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

.footer-grid mark { background: none; font-weight: 700; color: var(--color-green); }
.footer-grid a { color: var(--color-white); }
.footer-logo { width: 90px; margin-bottom: 16px; }

/* Footer contact detail rows with icons */
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer-contact-row .footer-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-row strong {
  display: block;
  font-weight: 700;
}

.footer-contact-row span {
  opacity: 0.92;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 1.4rem;
}
.footer-nav a:hover {
  text-decoration: underline;
  opacity: 1;
}
.footer-nav a::after { content: '→'; color: var(--color-white); margin-left: auto; opacity: 0.85; }

.footer-nav ul { display: flex; flex-direction: column; gap: 2px; }
.footer-nav li a { text-decoration: none; }

body[data-active-page] .footer-nav a[href],
body[data-active-page] .drawer-link {
  text-decoration: none;
}

.drawer-link.active,
.footer-nav a.active {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.footer-map iframe { width: 100%; height: 180px; border: 0; border-radius: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.85;
}
.footer-bottom a { text-decoration: underline; }

/* ---- Photo Gallery (Homepage) ---- */
.photo-gallery {
  padding: 56px 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.photo-gallery .section-label { text-align: center; }
.photo-gallery .section-title { text-align: center; margin-bottom: 8px; }
.photo-gallery__subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.5rem;
  margin-bottom: 36px;
}

.photo-gallery__track {
  display: flex;
  gap: 16px;
  animation: scrollGallery 40s linear infinite;
  width: max-content;
}

.photo-gallery__track:hover { animation-play-state: paused; }

.photo-gallery__item {
  flex-shrink: 0;
  width: 280px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-gallery__item:hover img { transform: scale(1.08); }

.photo-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 95, 111, 0.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-gallery__item:hover::after { opacity: 1; }

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Home page reference layout ---- */
body[data-active-page="index.html"] {
  --wrapper: 1400px;
  --topbar-h: 88px;
}

body[data-active-page="index.html"] .topbar {
  min-height: var(--topbar-h);
  padding: 10px 0;
}

body[data-active-page="index.html"] .topbar__inner {
  gap: 36px;
}

body[data-active-page="index.html"] .site-header--hero {
  top: calc(var(--topbar-h) + 18px);
}

body[data-active-page="index.html"] .site-header--hero .nav__brand img {
  width: 238px;
  height: 238px;
}

body[data-active-page="index.html"] .hero {
  min-height: 872px;
  padding-top: 286px;
}

body[data-active-page="index.html"] .hero::after {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.30) 36%, rgba(0, 0, 0, 0.06) 72%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, transparent 42%);
}

body[data-active-page="index.html"] .hero__video {
  object-position: center center;
}

body[data-active-page="index.html"] .hero h1 {
  max-width: 540px;
  font-size: 5.9rem;
  line-height: 1.06;
  margin-bottom: 34px;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.44);
}

body[data-active-page="index.html"] .hero h1 em {
  color: var(--color-green);
  font-weight: 800;
}

body[data-active-page="index.html"] .hero p {
  max-width: 505px;
  font-size: 1.35rem;
  line-height: 1.55;
  margin-bottom: 26px;
}

body[data-active-page="index.html"] .hero .btn--find-more {
  min-width: 235px;
  padding: 17px 36px;
  color: var(--color-white);
}

body[data-active-page="index.html"] .welcome-section {
  padding: 84px 0 68px;
}

body[data-active-page="index.html"] .welcome-grid {
  grid-template-columns: 430px 1fr;
  gap: 145px;
}

body[data-active-page="index.html"] .welcome-grid__image {
  justify-content: flex-start;
}

body[data-active-page="index.html"] .welcome-grid__image::before {
  top: -4px;
  left: -4px;
  width: 398px;
  border-width: 22px;
}

body[data-active-page="index.html"] .welcome-grid__image img {
  width: 398px;
  border-width: 0;
  box-shadow: none;
}

body[data-active-page="index.html"] .welcome-grid__text .section-label {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

body[data-active-page="index.html"] .welcome-heading {
  gap: 16px;
  margin-bottom: 26px;
}

body[data-active-page="index.html"] .welcome-heading__logo {
  width: 96px;
  height: 96px;
}

body[data-active-page="index.html"] .welcome-heading h2 {
  max-width: 640px;
  font-size: 5.2rem;
  line-height: 0.94;
  color: #050505;
}

body[data-active-page="index.html"] .welcome-heading h2 span {
  color: var(--color-green);
}

body[data-active-page="index.html"] .welcome-grid__text p {
  max-width: 760px;
  font-size: 1.35rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

body[data-active-page="index.html"] .services-section {
  min-height: auto;
  padding: 86px 0 60px;
}

body[data-active-page="index.html"] .services-section .section-label {
  font-size: 2rem;
  margin-bottom: 6px;
}

body[data-active-page="index.html"] .services-section .section-title {
  font-size: 5.3rem;
  line-height: 1.05;
  color: #050505;
  margin-bottom: 26px;
}

body[data-active-page="index.html"] .services-section__intro {
  max-width: 830px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

body[data-active-page="index.html"] .services-tiles {
  margin-top: 8px;
}

body[data-active-page="index.html"] .mission-block {
  min-height: 652px;
  padding: 104px 0 78px;
}

body[data-active-page="index.html"] .mission-block__grid {
  grid-template-columns: 590px 390px;
  gap: 205px;
  align-items: start;
}

body[data-active-page="index.html"] .mission-block__text .section-label {
  font-size: 2rem;
  line-height: 1.2;
}

body[data-active-page="index.html"] .mission-block__rule {
  max-width: 510px;
  margin-bottom: 14px;
}

body[data-active-page="index.html"] .mission-block__text .section-title {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 42px;
}

body[data-active-page="index.html"] .mission-block__text p {
  font-size: 1.45rem;
  line-height: 1.62;
  margin-bottom: 0;
}

body[data-active-page="index.html"] .mission-block__text .btn {
  min-width: 235px;
  margin-top: 32px !important;
}

body[data-active-page="index.html"] .mission-block__cards {
  position: relative;
  min-height: 420px;
  padding-top: 56px;
  align-items: stretch;
}

body[data-active-page="index.html"] .mission-card {
  width: 390px;
  max-width: 100%;
  border-radius: 0;
  padding: 48px 34px 38px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body[data-active-page="index.html"] .mission-card--areas {
  margin-left: auto;
  margin-right: 48px;
  transform: translateY(40px);
  z-index: 2;
  background: var(--color-white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

body[data-active-page="index.html"] .mission-card--areas h3 {
  color: var(--color-teal); /* High contrast dark teal title */
}

body[data-active-page="index.html"] .mission-card--areas::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 86px;
  background: var(--color-green);
  border-radius: 0 0 28px 28px;
  z-index: -1;
}

body[data-active-page="index.html"] .mission-card--insurance {
  margin-left: auto;
  margin-top: -20px;
  z-index: 3;
  background: rgba(0, 77, 86, 0.85); /* High contrast dark teal glassmorphism background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

body[data-active-page="index.html"] .mission-card--insurance h3 {
  color: var(--color-green); /* High contrast bright green title */
}

body[data-active-page="index.html"] .mission-card--insurance p {
  color: rgba(255, 255, 255, 0.96);
}

body[data-active-page="index.html"] .mission-card--areas:hover {
  transform: translateY(36px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

body[data-active-page="index.html"] .mission-card--insurance:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  background: rgba(0, 77, 86, 0.92);
}

body[data-active-page="index.html"] .mission-card h3 {
  font-size: 2.4rem;
  line-height: 1.05;
}

/* Premium Slide-in from Right entry animations for Mission Cards */
body[data-active-page="index.html"] .mission-card.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-active-page="index.html"] .mission-card--areas.reveal {
  transform: translate(60px, 40px);
}

body[data-active-page="index.html"] .mission-card--areas.reveal.visible {
  opacity: 1;
  transform: translate(0, 40px);
}

body[data-active-page="index.html"] .mission-card--insurance.reveal {
  transform: translateX(60px);
}

body[data-active-page="index.html"] .mission-card--insurance.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

body[data-active-page="index.html"] .team-block {
  padding: 48px 0 68px;
}

body[data-active-page="index.html"] .team-block__grid {
  grid-template-columns: 630px 1fr;
  gap: 82px;
}

body[data-active-page="index.html"] .team-block__photo {
  padding: 30px 0 0 44px;
}

body[data-active-page="index.html"] .team-block__accent {
  width: 82%;
  height: 76%;
}

body[data-active-page="index.html"] .team-block__photo img {
  height: 350px;
  object-fit: cover;
  object-position: center 57%;
}

body[data-active-page="index.html"] .team-block__text .section-title {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 36px;
  color: #050505;
}

body[data-active-page="index.html"] .team-block__text p {
  max-width: 650px;
  font-size: 1.35rem;
  line-height: 1.62;
  margin-bottom: 18px;
}

body[data-active-page="index.html"] .team-block__text .btn {
  min-width: 235px;
  margin-top: 22px;
}

body[data-active-page="index.html"] .form-section {
  min-height: 780px;
  padding: 132px 0 112px;
}

body[data-active-page="index.html"] .form-section__bg {
  background-position: center 45%;
  filter: none;
  opacity: 0.48;
}

body[data-active-page="index.html"] .form-section__overlay {
  background: rgba(64, 181, 193, 0.86);
}

body[data-active-page="index.html"] .form-section .section-label {
  font-size: 2rem;
  line-height: 1.2;
}

body[data-active-page="index.html"] .form-section .section-title {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

body[data-active-page="index.html"] .form-section__sub {
  font-size: 1.25rem;
  margin-bottom: 34px;
}

body[data-active-page="index.html"] .contact-form {
  max-width: 1140px;
}

body[data-active-page="index.html"] .contact-form--home .form-group label {
  display: none;
}

body[data-active-page="index.html"] .contact-form--home .form-group input,
body[data-active-page="index.html"] .contact-form--home .form-group textarea {
  border-radius: 8px;
  font-size: 1.35rem;
}

body[data-active-page="index.html"] .contact-form--home .form-group input {
  height: 44px;
  padding: 0 17px;
}

body[data-active-page="index.html"] .contact-form--home .form-group textarea {
  min-height: 96px;
  padding: 17px;
}

body[data-active-page="index.html"] .contact-form--home .form-checkbox {
  max-width: 1080px;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 2px auto 16px;
}

body[data-active-page="index.html"] .form-actions--page {
  justify-content: center;
  gap: 18px;
}

.captcha-mock {
  width: 235px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #f8f8f8;
  border: 1px solid #d5d5d5;
  color: #222;
  font-size: 1.1rem;
}

.captcha-mock__box {
  width: 22px;
  height: 22px;
  border: 2px solid #777;
  background: #fff;
}

.captcha-mock__text {
  flex: 1;
}

.captcha-mock__badge {
  width: 48px;
  color: #777;
  font-size: 0.9rem;
  text-align: center;
}

body[data-active-page="index.html"] .contact-form--home .btn--submit {
  min-width: 278px;
  height: 58px;
  border-radius: 55px;
  color: var(--color-green);
}

body[data-active-page="index.html"] .site-footer {
  padding-top: 0;
}

body[data-active-page="index.html"] .footer-grid {
  grid-template-columns: 1.05fr 0.75fr 0.95fr;
  gap: 70px;
  padding: 84px 0 48px;
}

body[data-active-page="index.html"] .footer-grid h2 {
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 36px;
}

body[data-active-page="index.html"] .footer-logo {
  width: 138px;
  margin: 0 auto 28px;
}

body[data-active-page="index.html"] .footer-map iframe {
  height: 170px;
  width: 100%;
  border-radius: 0;
}

body[data-active-page="index.html"] .footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- Community Photos Grid (About & Meet Our Team) ---- */
.community-photos {
  padding: 48px 0;
}

.community-photos .section-label { text-align: center; }
.community-photos .section-title { text-align: center; margin-bottom: 12px; }
.community-photos__subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.photo-mosaic__item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-mosaic__item:hover img { transform: scale(1.06); }

.photo-mosaic__item--wide { grid-column: span 2; }
.photo-mosaic__item--tall { grid-row: span 2; }

.photo-mosaic__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 95, 111, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.photo-mosaic__item:hover::after { opacity: 1; }

/* ---- Team Photo Grid ---- */
.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.team-photo-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.team-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-photo-card:hover img { transform: scale(1.05); }

.team-photo-card--featured img {
  height: 360px;
}

.team-photo-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(14, 95, 111, 0.85) 0%, transparent 100%);
  color: var(--color-white);
  padding: 40px 16px 14px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ---- Service page inline photo ---- */
.service-detail-photo {
  float: right;
  width: 320px;
  margin: 0 0 20px 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-detail-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ---- Training/Events banner ---- */
.training-banner {
  background: var(--color-teal-dark);
  padding: 48px 0;
  overflow: hidden;
}

.training-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.training-banner__text {
  color: var(--color-white);
}

.training-banner__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
}

.training-banner__text p {
  font-size: 1.5rem;
  line-height: 1.75;
  opacity: 0.95;
  color: var(--color-white);
  margin-bottom: 14px;
}

.training-banner__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.training-banner__photos img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.training-banner__photos img:hover { transform: scale(1.04); }

/* ---- Search overlay ---- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.search-overlay__panel {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 24px;
  width: min(480px, 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-20px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.search-overlay.open .search-overlay__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search-overlay__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
}
.search-overlay__close:hover { color: var(--color-teal); opacity: 1; }
.search-overlay__panel h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-teal);
  margin-bottom: 16px;
}
.search-overlay__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-input);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.search-overlay__list {
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
}
.search-overlay__list a {
  display: block;
  padding: 10px 8px;
  color: var(--color-teal);
  font-weight: 600;
  border-bottom: 1px solid #eee;
}
.search-overlay__list a:hover {
  background: rgba(14, 95, 111, 0.06);
  opacity: 1;
  text-decoration: none;
}

/* ---- Privacy ---- */
.privacy-content__h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-teal);
  margin: 28px 0 10px;
  font-weight: 700;
}

.content-main {
  min-width: 0;
}

/* ---- WordPress parity polish ---- */
.service-tile {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.mission-block__text .btn--white:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-teal);
  opacity: 1;
}

.btn--green:hover {
  filter: brightness(0.96);
}

.site-header--inner {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.page-content .privacy-content__h2:first-of-type {
  margin-top: 0;
}

.map-embed {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map-embed:hover {
  box-shadow: 0 8px 24px rgba(0, 77, 86, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .services-tiles { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page-card:nth-child(9),
  .service-page-card:nth-child(10) { grid-column: auto; }
  .welcome-grid,
  body[data-active-page="index.html"] .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .welcome-grid__image img, 
  body[data-active-page="index.html"] .welcome-grid__image img,
  body[data-active-page="index.html"] .welcome-grid__image::before { max-width: 100%; height: auto; }
  .mission-block__grid,
  body[data-active-page="index.html"] .mission-block__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-map { grid-column: 1 / -1; }
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .team-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .training-banner__inner { grid-template-columns: 1fr; }

  /* WordPress-style mobile chrome */
  .mobile-logo-bar,
  .mobile-search-row {
    display: flex;
  }

  .site-chrome {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "mob-logo mob-menu"
      "topbar topbar"
      "ctas ctas"
      "search search";
    position: relative;
    z-index: 110;
  }

  .mobile-logo-bar {
    grid-area: mob-logo;
    background: var(--color-green);
    align-items: center;
    padding: 10px 16px 8px;
  }

  .mobile-logo-bar__brand {
    line-height: 0;
  }

  .mobile-logo-bar__brand img {
    width: 118px;
    height: 118px;
    object-fit: contain;
  }

  .site-header {
    display: contents;
  }

  .site-header .wrapper.nav {
    display: contents;
  }

  .nav__brand {
    display: none;
  }

  .nav__tools {
    grid-area: mob-menu;
    background: var(--color-green);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
    padding: 10px 14px 8px;
    position: static;
    transform: none;
    z-index: 253;
  }

  body.drawer-is-open .nav__tools {
    position: relative;
    z-index: 253;
    background: transparent;
  }
 
  .nav__search-btn--header {
    display: none;
  }
 
  .menu-toggle.hamburger {
    flex-direction: column;
    width: auto;
    height: auto;
    min-width: 52px;
    padding: 4px 6px;
    border-radius: 4px;
    color: var(--color-teal);
  }
 
  .menu-toggle.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-teal);
  }
 
  .menu-toggle.hamburger.open span {
    background: var(--color-white);
  }
 
  .menu-toggle.hamburger.open .hamburger__label {
    color: var(--color-white);
  }
 
  .menu-toggle.hamburger.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
 
  .menu-toggle.hamburger.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
 
  .hamburger__label {
    display: block;
    margin-top: 8px;
  }

  .topbar {
    grid-area: topbar;
    background: var(--color-teal);
    min-height: 0;
    padding: 14px 0 10px;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
  }

  .topbar__divider {
    display: none;
  }

  .topbar__left {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }

  .topbar__right {
    padding: 0;
  }

  .nav__cta-group {
    grid-area: ctas;
    background: var(--color-teal);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    padding: 4px 16px 14px;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    white-space: normal;
  }

  .site-header--hero .nav__cta-group,
  .site-header--inner .nav__cta-group {
    position: static;
    transform: none;
    left: auto;
    top: auto;
  }

  .site-header--inner .nav__tools {
    position: static;
    transform: none;
    right: auto;
    top: auto;
  }

  .nav__cta-group .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.5rem;
  }

  .mobile-search-row {
    grid-area: search;
    background: var(--color-teal);
    padding: 0 16px 14px;
  }

  .mobile-search-row__btn {
    width: 100%;
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-input);
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 1.5rem;
    cursor: pointer;
    transition: box-shadow var(--transition);
  }

  .mobile-search-row__btn:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    opacity: 1;
  }

  .mobile-search-row__icon {
    font-size: 1.6rem;
    line-height: 1;
  }

  .mobile-search-row__text {
    font-weight: 500;
  }

  .site-header--hero,
  .site-header--inner {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-header--sticky {
    position: static;
  }

  /* Hamburger-anchored slide-in panel (WordPress-style ~280px) */
  .mobile-drawer {
    top: 0;
    right: 0;
    left: auto;
    width: 280px;
    max-width: calc(100vw - 20px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    transform: translateX(110%);
    transform-origin: top right;
    opacity: 1;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
    border-radius: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.28);
    will-change: transform;
  }

  .mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-drawer nav {
    padding: 20px 0 12px;
  }

  .drawer-link {
    font-size: 1.7rem;
    padding: 15px 22px;
  }

  .drawer-arrow {
    font-size: 1.2rem;
  }

  body[data-active-page="index.html"] .hero {
    padding-top: 0;
    min-height: 62vh;
  }

  body[data-active-page="index.html"] .site-header--hero {
    top: auto;
  }

  body.has-hero-header .hero {
    margin-top: 0;
    padding-top: 48px;
  }

  body[data-active-page="index.html"] .team-block__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body[data-active-page="index.html"] .team-block__photo {
    padding: 20px 0 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }

  body[data-active-page="index.html"] .team-block__photo img {
    height: auto;
    aspect-ratio: 4/3;
  }

  body[data-active-page="index.html"] .team-block__text {
    text-align: center;
  }

  body[data-active-page="index.html"] .team-block__text .section-title {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    margin-bottom: 20px;
  }

  body[data-active-page="index.html"] .team-block__text p {
    margin: 0 auto 14px;
  }

  /* About Us page sections layout collapse on tablet/mobile */
  .about-mission,
  .about-vision__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-mission figure,
  .about-vision figure {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-mission figure img,
  .about-vision figure img {
    width: 100%;
    height: auto;
  }
  
  /* Welcome Section (Homepage About Us section) styling overrides */
  body[data-active-page="index.html"] .welcome-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body[data-active-page="index.html"] .welcome-grid__image {
    justify-content: center;
  }
  body[data-active-page="index.html"] .welcome-grid__image img,
  body[data-active-page="index.html"] .welcome-grid__image::before {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    left: 0;
    top: 0;
  }
  body[data-active-page="index.html"] .welcome-grid__image::before {
    display: none;
  }
  body[data-active-page="index.html"] .welcome-heading {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  body[data-active-page="index.html"] .welcome-heading__logo {
    width: 72px;
    height: 72px;
    margin: 0 auto;
  }
  body[data-active-page="index.html"] .welcome-heading h2 {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin: 0 auto;
  }
  body[data-active-page="index.html"] .welcome-grid__text p {
    margin: 0 auto 16px;
  }
}

@media (max-width: 768px) {
  .nav__cta-group { gap: 10px; }

  .page-banner__logo img { width: 120px; height: 120px; }

  .btn--nav { padding: 12px 22px; font-size: 1.3rem; }

  .hero { min-height: 70vh; padding-top: 0; }
  .hero__content { padding: 48px 0; }

  .team-block__grid,
  .about-mission,
  .about-vision__inner,
  .content-sidebar { grid-template-columns: 1fr; }

  .services-tiles { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }

  .form-row,
  .form-row--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .welcome-visual .fg-img { position: relative; width: 100%; right: 0; bottom: 0; margin-top: 16px; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .photo-mosaic__item--wide { grid-column: span 1; }
  .photo-mosaic__item--tall { grid-row: span 1; }
  .team-photo-grid { grid-template-columns: 1fr; }
  .team-photo-card img { height: 220px; }
  .team-photo-card--featured img { height: 260px; }
  .photo-gallery__item { width: 220px; height: 180px; }
  .service-detail-photo { float: none; width: 100%; margin: 0 0 20px 0; }
  .service-detail-photo img { height: 220px; }
  .training-banner__photos img { height: 150px; }
}

@media (max-width: 480px) {
  .mobile-logo-bar__brand img {
    width: 100px;
    height: 100px;
  }
}
