﻿/*
Theme Name: Green Haven Hospice
Theme URI: https://greenhavenhpc.com
Author: Green Haven Hospice & Palliative Care
Description: Lightweight WordPress theme for Green Haven Hospice & Palliative Care. Built for affordable shared hosting.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: greenhaven
*/

:root {
  --gh-green: #1f4d3a;
  --gh-green-mid: #2f6b50;
  --gh-green-dark: #183d2f;
  --gh-deep: #10271f;
  --gh-sage: #c8cfcb;
  --gh-sage-soft: #eef5f1;
  --gh-cream: #faf7ef;
  --gh-gold: #c8a96a;
  --gh-ink: #2c3e37;
  --gh-muted: #60706b;
  --gh-white: #ffffff;
  --gh-border: rgba(74, 124, 89, 0.22);
  --gh-shadow: 0 18px 45px rgba(16, 39, 31, 0.12);
  --gh-card-shadow: 0 12px 30px rgba(16, 39, 31, 0.08);
  --gh-radius: 10px;
  --gh-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gh-ink);
  background: var(--gh-cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: var(--gh-green);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--gh-white);
  border-bottom: 1px solid rgba(31, 77, 58, 0.16);
  box-shadow: 0 8px 26px rgba(16, 39, 31, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner,
.section-inner {
  width: min(var(--gh-max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.topbar {
  color: var(--gh-white);
  background: var(--gh-green);
}

.topbar-inner {
  min-height: 34px;
  justify-content: flex-start;
  gap: 22px;
}

.topbar a {
  color: var(--gh-white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.topbar span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gh-green-dark);
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  width: 68px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.15;
  font-size: 20px;
}

.brand-text small {
  color: #6b4423;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-text em {
  color: var(--gh-green);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}

.nav a,
.nav-dropdown-toggle {
  color: var(--gh-ink);
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--gh-green);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 190px;
  display: none;
  padding: 10px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  background: var(--gh-sage-soft);
}

.nav .nav-cta,
.button {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(16, 39, 31, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--gh-white);
  background: var(--gh-green);
  border: 0;
  border-radius: var(--gh-radius);
  box-shadow: 0 8px 18px rgba(47, 93, 80, 0.18);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button.secondary {
  color: var(--gh-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  background: var(--gh-white);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gh-green-dark);
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--gh-white);
  background: var(--gh-deep);
}

.hero .section-inner {
  position: relative;
  z-index: 2;
  padding: 112px 0;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.03);
  animation: ghHeroFade 15s infinite;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.hero-slide-1 {
  opacity: 1;
}

.hero-slide-2 {
  animation-delay: 5s;
}

.hero-slide-3 {
  animation-delay: 10s;
}

.hero-overlay {
  z-index: 1;
  background: rgba(0, 50, 30, 0.6);
}

@keyframes ghHeroFade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  5%,
  28% {
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 28px 20px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gh-sage);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 980px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.48);
}

h1 span {
  display: block;
  color: var(--gh-gold);
  font-size: 0.72em;
}

h2 {
  color: var(--gh-green-dark);
  font-size: clamp(31px, 4vw, 48px);
}

h3 {
  color: var(--gh-green-dark);
  font-size: 23px;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 30px;
  margin-left: auto;
  margin-right: auto;
  color: #f5fbf7;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-availability {
  max-width: 680px;
  margin: -10px auto 28px;
  color: #f7f2e6;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.quick-info {
  color: var(--gh-white);
  background: linear-gradient(90deg, var(--gh-green), var(--gh-green-mid));
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 28px 0;
}

.quick-info-grid div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.quick-info span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.quick-info a,
.quick-info strong {
  display: block;
  color: var(--gh-white);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.wp-page-content {
  background: var(--gh-white);
}

.wp-page-content .section-inner {
  padding: 0;
}

.wp-page-content .section-inner:empty {
  display: none;
}

.mission-card,
.availability-card,
.why-grid article,
.comparison-grid article {
  padding: 28px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: 0 8px 24px rgba(24, 61, 53, 0.07);
}

.mission-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  background: var(--gh-green-dark);
  color: var(--gh-white);
}

.mission-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
}

.mission-card p {
  margin: 14px 0 0;
  color: #dfeae5;
}

.availability-grid,
.why-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.availability-card.highlight {
  color: var(--gh-white);
  background: linear-gradient(135deg, var(--gh-green-dark), var(--gh-green));
}

.availability-card.highlight h3 {
  color: var(--gh-white);
}

.availability-card.highlight p {
  color: #eef5f1;
}

.availability-card p,
.why-grid p,
.comparison-grid p {
  margin: 12px 0 0;
  color: var(--gh-muted);
}

.comparison-grid p strong {
  color: var(--gh-green-dark);
}

.core-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-area-ticker {
  overflow: hidden;
  padding: 82px 0;
  color: var(--gh-white);
  background: var(--gh-green-dark);
}

.ticker-heading {
  width: min(var(--gh-max), calc(100% - 40px));
  margin: 0 auto 28px;
  text-align: center;
}

.ticker-heading h2 {
  color: var(--gh-white);
}

.ticker-track {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ticker-content {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 0;
  animation: ghTicker 32s linear infinite;
}

.ticker-content span {
  min-width: max-content;
  padding: 12px 22px;
  color: var(--gh-green-dark);
  background: var(--gh-white);
  border-radius: 999px;
  font-weight: 800;
  scroll-snap-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.service-area-ticker:hover .ticker-content {
  animation-play-state: paused;
}

@keyframes ghTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 96px 0;
  background: var(--gh-cream);
}

.section.white {
  background: var(--gh-white);
}

.section.sage {
  background: var(--gh-sage-soft);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--gh-muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.care-note {
  padding: 28px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-left: 6px solid var(--gh-gold);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
}

.care-note p {
  margin: 0;
  color: var(--gh-muted);
}

.care-note ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.care-note li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--gh-muted);
}

.care-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--gh-gold);
  border-radius: 50%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  background: var(--gh-sage-soft);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
}

.stat strong {
  display: block;
  color: var(--gh-green-dark);
  font-size: 24px;
  line-height: 1;
}

.stat span {
  color: var(--gh-muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-grid.core-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: 12px;
  box-shadow: var(--gh-card-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 39, 31, 0.13);
}

.service-card p {
  margin: 12px 0 0;
  color: var(--gh-muted);
  line-height: 1.65;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--gh-green-dark);
  background: var(--gh-sage-soft);
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 50%;
  font-weight: 800;
}

.clinical-note {
  max-width: 780px;
  margin: 28px auto 0;
  padding: 24px;
  text-align: center;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
}

.clinical-note p {
  margin: 10px 0 0;
  color: var(--gh-muted);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.area-list li {
  padding: 14px 16px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  color: var(--gh-green-dark);
  font-weight: 700;
}

.contact-panel,
.contact-form {
  padding: 28px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--gh-green-dark);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}

.contact-method svg {
  width: 20px;
  height: 20px;
  stroke: var(--gh-green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.contact-details {
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px solid var(--gh-border);
}

.contact-details h3 {
  margin-top: 18px;
  font-size: 19px;
}

.contact-details p {
  margin: 7px 0 0;
  color: var(--gh-muted);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--gh-green-dark);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  color: var(--gh-ink);
  background: var(--gh-cream);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: var(--gh-radius);
  font-weight: 700;
}

.form-message.success {
  color: #174536;
  background: #dff1e8;
}

.form-message.error {
  color: #6b2d25;
  background: #fae5df;
}

.site-footer {
  color: #dfeae5;
  background: var(--gh-deep);
}

.footer-inner {
  width: min(var(--gh-max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(150px, 0.45fr);
  gap: 42px;
  align-items: start;
  margin: 0 auto;
  padding: 46px 0 28px;
}

.footer-inner a {
  color: var(--gh-white);
}

.license {
  color: var(--gh-gold);
  display: inline-block;
  margin: 8px 0 4px;
  font-weight: 800;
}

.footer-areas,
.footer-copy {
  width: min(var(--gh-max), calc(100% - 40px));
  margin: 0 auto;
  color: #c8cfcb;
  font-size: 13px;
}

.footer-areas {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}

.footer-copy {
  padding: 0 0 24px;
}

.page-content {
  padding: 72px 0;
  background: var(--gh-white);
}

.page-content .section-inner {
  max-width: 850px;
}

.legal-page .section-inner {
  max-width: 980px;
}

.legal-page h1 {
  color: var(--gh-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 58px);
  text-shadow: none;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-page h3 {
  margin-top: 22px;
  font-size: 20px;
}

.legal-page p,
.legal-page li {
  color: var(--gh-muted);
}

.legal-page ul {
  padding-left: 22px;
}

.legal-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border: 1px solid var(--gh-border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--gh-white);
  background: var(--gh-green-dark);
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid.core-service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .availability-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 78px;
  }

  .topbar-inner {
    min-height: 48px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 126px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--gh-cream);
    border-bottom: 1px solid var(--gh-border);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .nav-dropdown {
    padding: 12px 0;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
  }

  .nav .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero .section-inner {
    padding: 74px 0 86px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
  }

  .hero-overlay {
    background: rgba(0, 50, 30, 0.68);
  }

  .hero-actions .button {
    width: 100%;
  }

  .brand-logo {
    width: 48px;
    height: 40px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-text small,
  .brand-text em {
    font-size: 10px;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .area-list,
  .stats {
    grid-template-columns: 1fr;
  }

  .quick-info a,
  .quick-info strong {
    font-size: 19px;
  }

  .mission-card,
  .availability-card,
  .why-grid article,
  .comparison-grid article,
  .service-card,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .ticker-content {
    animation-duration: 26s;
  }

  .ticker-content span {
    padding: 10px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NEW V2 ADDITIONS
   ============================================================ */

/* Topbar icons */
.topbar-inner {
  display: flex;
  align-items: center;
}

.topbar-icon {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-right: 5px;
  flex: 0 0 auto;
}

/* Nav CTA button */
.nav .nav-cta {
  font-size: 14px;
  min-height: 40px;
  padding: 0 16px;
}

/* Button with SVG icon */
.button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  margin-right: 7px;
}

/* Gold button variant */
.button.gold-btn {
  background: var(--gh-gold);
  color: var(--gh-green-dark);
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.38);
}

.button.gold-btn:hover {
  background: #b8952e;
}

/* Outline white button variant */
.button.outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--gh-white);
  box-shadow: none;
}

.button.outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Inline icon (in hero text) */
.inline-icon {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-right: 4px;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 18px;
  background: rgba(200, 169, 106, 0.18);
  border: 1px solid rgba(200, 169, 106, 0.4);
  border-radius: 999px;
  color: var(--gh-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Service card SVG icons */
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gh-green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stats / Trust bar */
.stats-bar {
  background: var(--gh-white);
  border-bottom: 1px solid var(--gh-border);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 36px 0;
}

.stats-bar-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--gh-border);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-num {
  display: block;
  color: var(--gh-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.stats-bar-label {
  display: block;
  margin-top: 8px;
  color: var(--gh-muted);
  font-size: 13px;
}

/* Medicare / Insurance Section */
.medicare-section {
  padding: 96px 0;
  color: var(--gh-white);
  background: var(--gh-green-dark);
}

.medicare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.medicare-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 18px;
  background: var(--gh-gold);
  border-radius: 999px;
  color: var(--gh-green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.medicare-intro {
  color: #c0dbd0;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.medicare-cards {
  display: grid;
  gap: 14px;
}

.medicare-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.medicare-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--gh-gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

.medicare-card h3 {
  color: var(--gh-white);
  font-size: 17px;
  margin-bottom: 6px;
}

.medicare-card p {
  margin: 0;
  color: #b8d4c8;
  font-size: 14px;
  line-height: 1.6;
}

/* About trust badges */
.about-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--gh-sage-soft);
  border: 1px solid var(--gh-border);
  border-radius: 999px;
  color: var(--gh-green-dark);
  font-size: 13px;
  font-weight: 700;
}

.about-trust span svg {
  width: 15px;
  height: 15px;
  stroke: var(--gh-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

/* Steps / Get Started Section */
.steps-section {
  padding: 96px 0;
  background: var(--gh-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  padding: 36px 28px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: 14px;
  box-shadow: var(--gh-card-shadow);
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  background: var(--gh-green-dark);
  color: var(--gh-white);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--gh-muted);
  line-height: 1.65;
}

/* Mission Quote Section */
.quote-section {
  padding: 80px 0;
  background: var(--gh-sage-soft);
  text-align: center;
}

.blockquote {
  max-width: 780px;
  margin: 0 auto;
}

.blockquote blockquote {
  margin: 0 0 20px;
}

.blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--gh-green-dark);
  line-height: 1.55;
  margin: 0;
}

.blockquote figcaption {
  color: var(--gh-muted);
  font-size: 15px;
}

/* Why Us â€” icons */
.why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--gh-sage-soft);
  border: 1px solid var(--gh-border);
  border-radius: 12px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gh-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Referral CTA Section */
.referral-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gh-green-dark), var(--gh-green));
  color: var(--gh-white);
}

.referral-cta h2 {
  color: var(--gh-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.referral-body {
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.7;
}

.referral-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
  padding: 96px 0;
  background: var(--gh-white);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gh-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--gh-green-dark);
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--gh-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gh-green-dark);
  border-radius: 50%;
  flex: 0 0 auto;
  color: var(--gh-green-dark);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gh-green-dark);
  color: var(--gh-white);
  border-color: var(--gh-green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--gh-muted);
  line-height: 1.75;
  margin: 0;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* Page hero banner for inner pages */
.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--gh-green-dark), var(--gh-green));
  color: var(--gh-white);
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  color: var(--gh-white);
  text-shadow: none;
  margin: 0;
}

.page-hero .eyebrow {
  color: var(--gh-gold);
}

/* Responsive additions */
@media (max-width: 980px) {
  .medicare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .stats-bar-item {
    padding: 20px 16px;
    border-bottom: 1px solid var(--gh-border);
  }

  .stats-bar-item:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 760px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .referral-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .referral-cta-actions .button {
    justify-content: center;
  }

  .step-card .button {
    font-size: 15px;
  }

  .faq-question {
    font-size: 16px;
  }

  .medicare-section {
    padding: 68px 0;
  }

  .steps-section,
  .faq-section,
  .quote-section {
    padding: 68px 0;
  }

  .about-trust {
    gap: 8px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-height: 48px;
    justify-content: center;
  }

  .nav .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT SECTION IMAGE
   ============================================================ */

.about-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: var(--gh-shadow);
  background: #f2ede4;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CARE STRIP (4-image horizontal band)
   ============================================================ */

.care-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
}

.care-strip-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.care-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 500ms ease;
}

.care-strip-item:hover img {
  transform: scale(1.06);
}

/* ============================================================
   PAGE CARE IMAGE (inner pages: About, Services)
   ============================================================ */

.page-care-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--gh-shadow);
  background: #f2ede4;
}

.page-care-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   FOOTER CREDIT LINE
   ============================================================ */

.footer-copy a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--gh-white);
}

.footer-credit {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  padding: 96px 0;
  background: var(--gh-sage-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: 14px;
  box-shadow: var(--gh-card-shadow);
}

.testimonial-stars {
  color: var(--gh-gold);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.testimonial-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 0.8;
  color: var(--gh-gold);
  margin-bottom: 14px;
}

.testimonial-text {
  flex: 1;
  margin: 0 0 20px;
  color: var(--gh-muted);
  font-style: italic;
  line-height: 1.8;
  font-size: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gh-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gh-green-dark);
  border-radius: 50%;
  color: var(--gh-white);
  font-weight: 800;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
  flex: 0 0 auto;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gh-green-dark);
  font-size: 15px;
}

.testimonial-location {
  color: var(--gh-muted);
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .care-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .care-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-strip-item {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   FOOTER SCROLLING TICKER
   ============================================================ */

.footer-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}

.footer-ticker-content {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ghTicker 36s linear infinite;
}

.footer-ticker-wrap:hover .footer-ticker-content {
  animation-play-state: paused;
}

.footer-ticker-content span {
  padding: 4px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

/* ============================================================
   FOOTER LAYOUT (wider for addresses)
   ============================================================ */

.footer-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(180px, 0.55fr);
}

.footer-inner a {
  color: #c8dfd5;
}

.footer-inner strong {
  color: var(--gh-white);
}

.footer-name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--gh-white);
  line-height: 1.35;
  margin-bottom: 6px;
}

.footer-tagline {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--gh-gold);
  letter-spacing: 0.06em;
}

.footer-site-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(200, 215, 205, 0.7);
  text-decoration: none;
  word-break: break-all;
}

.footer-site-link:hover {
  color: var(--gh-white);
}

.footer-col-heading {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gh-gold);
  margin-bottom: 14px;
}

.footer-col-contact p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #c8dfd5;
}

.footer-col-contact p a {
  color: #c8dfd5;
  text-decoration: none;
}

.footer-col-contact p a:hover {
  color: var(--gh-white);
}

.footer-col-links nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.footer-col-links nav a {
  font-size: 14px;
  color: #c8dfd5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links nav a:hover {
  color: var(--gh-white);
}

.footer-hours {
  font-size: 13px;
  color: #c8cfcb;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  margin-top: 4px;
}

.footer-24 {
  display: inline-block;
  margin-top: 4px;
  color: var(--gh-gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-credit {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(200, 215, 205, 0.55);
}

.footer-credit strong {
  color: rgba(200, 215, 205, 0.8);
}

/* About Us — closing signature block */
.about-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--gh-gold);
}

.about-owned-by-nurses {
  margin: 0 0 18px;
  padding-left: 18px;
  border-left: 4px solid var(--gh-gold);
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--gh-green-dark);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.about-license-badge {
  display: inline-block;
  padding: 7px 16px;
  background: var(--gh-sage-soft);
  border: 1px solid var(--gh-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gh-green-dark);
  letter-spacing: 0.03em;
}

