/* CareBridge conversion rebuild */
:root {
  --sage: #8BA888;
  --sage-light: #C4D4C2;
  --sage-pale: #EBF0EA;
  --navy: #1C2B3A;
  --navy-mid: #2D4054;
  --sand: #F5F0E8;
  --sand-dark: #E8DFD0;
  --white: #FDFCFA;
  --text: #2A2A2A;
  --text-soft: #5A6272;
  --accent: #B5825A;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.topbar {
  background: var(--navy);
  color: rgba(253,252,250,.82);
  font-size: .78rem;
  padding: 9px 24px;
  text-align: center;
}
.topbar a { color: var(--sage-light); text-decoration: none; font-weight: 600; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(253,252,250,.96);
  border-bottom: 1px solid rgba(139,168,136,.18);
  backdrop-filter: blur(12px);
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  text-decoration: none;
  color: var(--navy);
  white-space: nowrap;
}
.logo span { color: var(--sage); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-links a { text-decoration: none; color: var(--text-soft); }
.nav-links a:hover { color: var(--sage); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--accent); }
.btn-secondary { border-color: rgba(28,43,58,.28); color: var(--navy); background: transparent; }
.btn-secondary:hover { background: var(--sage-pale); border-color: var(--sage); }
.btn-light { border-color: rgba(253,252,250,.32); color: var(--white); background: transparent; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: 620px;
  background: var(--sand);
}
.hero-copy {
  padding: clamp(72px, 9vw, 118px) clamp(24px, 6vw, 72px);
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--sage-light);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.12;
}
.hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 4.65rem);
}
.hero p {
  margin: 0 0 28px;
  color: rgba(253,252,250,.72);
  max-width: 620px;
  font-size: 1.02rem;
}
.hero-actions, .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  min-height: 440px;
  background: var(--sand-dark);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.price-card {
  position: absolute;
  left: clamp(18px, 4vw, 40px);
  right: clamp(18px, 4vw, 40px);
  bottom: 28px;
  padding: 22px;
  background: rgba(253,252,250,.94);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(28,43,58,.18);
}
.price-card strong { display: block; color: var(--navy); font-size: 1.45rem; }
.price-card span { color: var(--text-soft); font-size: .86rem; }

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--sand-dark);
}
.trust-strip span {
  color: var(--text-soft);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section { padding: clamp(62px, 8vw, 100px) clamp(24px, 6vw, 72px); }
.section.sand { background: var(--sand); }
.section.navy { background: var(--navy); color: var(--white); }
.section.navy h2, .section.navy h3 { color: var(--white); }
.section.navy p, .section.navy li { color: rgba(253,252,250,.7); }
.container { max-width: 1180px; margin: 0 auto; }
.narrow { max-width: 820px; margin: 0 auto; }
.section-header { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-header h2 { margin: 0 0 14px; font-size: clamp(2rem, 3.4vw, 3.1rem); }
.section-header p { margin: 0; color: var(--text-soft); }
.section.navy .section-header p { color: rgba(253,252,250,.68); }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid rgba(139,168,136,.22);
  border-radius: 8px;
  padding: 28px;
}
.card h3 { margin: 0 0 10px; font-size: 1.42rem; }
.card p, .card li { color: var(--text-soft); font-size: .92rem; }
.card ul { margin: 16px 0 0; padding-left: 20px; }
.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sage);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

.package {
  border-top: 4px solid var(--sage);
}
.package .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  margin: 8px 0 8px;
}
.case-card {
  background: #fffbf5;
  border-left: 4px solid var(--accent);
}
.case-card blockquote {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.25;
}
.disclaimer {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(181,130,90,.09);
  border: 1px solid rgba(181,130,90,.24);
  border-radius: 6px;
  color: var(--text-soft);
  font-size: .83rem;
}
.section.navy .disclaimer {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: rgba(253,252,250,.68);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.split h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin: 0 0 18px; }
.split p { color: var(--text-soft); }
.split img { border-radius: 8px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

.form-box {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--sand-dark);
}
.form-box input, .form-box select, .form-box textarea {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(28,43,58,.18);
  border-radius: 6px;
  font: inherit;
}
.form-box label { color: var(--navy); font-size: .85rem; font-weight: 600; }

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sand-dark);
}

footer {
  background: #0F1A24;
  color: rgba(253,252,250,.55);
  padding: 56px clamp(24px, 6vw, 72px) 34px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
footer a { color: rgba(253,252,250,.68); text-decoration: none; display: block; margin: 8px 0; font-size: .88rem; }
footer h4 { color: var(--white); font-family: "DM Sans", sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-note {
  max-width: 1180px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  font-size: .78rem;
}

@media (max-width: 920px) {
  .hero, .split { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; gap: 12px; }
  .hero-copy { padding-top: 70px; }
  .price-card { position: static; margin: 18px; }
  .hero-media { min-height: auto; }
  .hero-media img { height: 360px; }
}

@media (max-width: 560px) {
  .nav-links a:not(.btn) { display: none; }
  .btn { width: 100%; }
  .hero-actions, .cta-row { flex-direction: column; }
  .trust-strip { justify-content: flex-start; }
}
