:root {
  --sage-50: #F5F7F4;
  --sage-100: #E6ECE3;
  --sage-300: #C9D7CD;
  --navy: #1C2D3B;
  --gold: #E7B74C;
  --ink: #2A3642;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(to bottom, #ffffff 0%, #e9efe9 100%);
  line-height: 1.65;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.header {
  background: rgba(230, 236, 227, 0.96);
  border-bottom: 1px solid #e0e6df;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 14px;
}

.logo-wrap img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
}

.nav a:hover {
  background: #eef3ef;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  font-size: 0.86rem;
  color: var(--navy);
  text-align: right;
}

.header-cta .phone {
  font-weight: 800;
}

.header-cta .sub {
  font-style: italic;
  color: #3c5a51;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  filter: brightness(0.95);
}

/* HERO */

.hero {
  padding: 26px 0 34px 0;
  border-bottom: 1px solid #e0e7e1;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(18, 34, 28, 0.12);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* SECTIONS */

.section {
  padding: 42px 0;
}

.section h2 {
  font-size: clamp(1.4rem, 1.9vw, 1.9rem);
  margin: 0 0 18px 0;
  color: var(--navy);
  display: inline-block;
  border-bottom: 3px solid var(--sage-300);
  padding-bottom: 6px;
}

.section p {
  margin: 0 0 16px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 26px;
}

.section-bg {
  background: var(--sage-100);
  border-radius: 26px;
  padding: 26px 24px;
}

/* SUPPORT IMAGE CARD */

.support-card {
  background: #fff;
  border: 1px solid #edf2ee;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 26px rgba(24, 38, 33, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* SIGNATURE */

.signature {
  margin-top: 8px;
  text-align: right;
}

.signature .name {
  font-family: "Great Vibes", cursive;
  font-size: 1.6rem;
  color: #2f4f4f;
  letter-spacing: 0.02em;
}

/* SERVICES & PAYMENT */

.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.bullets li {
  list-style: disc;
  margin-left: 18px;
}

.bullets strong {
  display: block;
  margin-bottom: 2px;
}

.payments ul {
  margin: 0 0 14px 0;
  padding-left: 18px;
}

.payments li {
  margin: 6px 0;
}

.inline-btn {
  margin-top: 10px;
}

/* CONTACT */

.contact-text strong {
  font-weight: 700;
}

/* FOOTER */

.footer {
  background: #f7f8f5;
  border-top: 1px solid #e8eee9;
  margin-top: 16px;
}

.footer-inner {
  padding: 20px 0 24px;
  text-align: center;
  color: #3c5a51;
  font-size: 0.95rem;
}

.footer b {
  color: var(--navy);
}

.footer em {
  font-style: italic;
  color: #5a746b;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-cta {
    align-items: flex-start;
    text-align: left;
  }

  .logo-wrap img {
    height: 58px;
  }

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

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

  .section-bg {
    padding: 20px 16px;
    border-radius: 18px;
  }
}
#about .signature {
  text-align: left;
}
/* ===== ANCHOR OFFSET for sticky header ===== */
:root {
  --header-offset: 130px; /* desktop starting point */
}

html {
  scroll-padding-top: var(--header-offset);
}

#about,
#services,
#payments,
#careers,
#contact,
#request-care {
  scroll-margin-top: var(--header-offset);
}

/* Mobile: header is taller because it stacks */
@media (max-width: 900px) {
  :root {
    --header-offset: 190px; /* adjust 180–220 if needed */
  }
}

/* ===== REQUEST CARE MODAL: HARD RESET ===== */
#request-care-modal {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0,0,0,.55) !important;
  z-index: 9999 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
}

#request-care-modal.is-open {
  display: flex !important;
}

#request-care-modal .request-care-modal-inner {
  position: relative !important;
  width: min(640px, 100%) !important;
  max-height: 85vh !important;
  overflow: auto !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

#request-care-modal input,
#request-care-modal select,
#request-care-modal textarea,
#request-care-modal button {
  width: 100% !important;
  box-sizing: border-box !important;
}



