/* WeCare — Editorial homecare site */
:root {
  --bg: #FAF6F1;
  --bg-warm: #F5EDE7;
  --bg-deep: #EFE5DB;
  --ink: #1A1D1C;
  --ink-soft: #3A3F3D;
  --muted: #8B857E;
  --rule: #D9D0C4;
  --accent: #1F5A55;
  --accent-deep: #143F3B;
  --accent-soft: #6E9B96;
  --blush: #E8D5C8;
  --cream: #FBF6EE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  display: block;
}
.eyebrow.no-rule::before { display: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ——— NAV ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--bg-warm);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--accent);
}
.logo-mark-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.logo b { font-weight: 600; }
.logo span { font-weight: 400; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-pill {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.phone-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6AB47A;
  box-shadow: 0 0 0 4px rgba(106,180,122,.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .15s, background .15s, color .15s, box-shadow .15s;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover { background: var(--accent-deep); }

/* ——— HERO ——— */
.hero {
  padding: 80px 0 40px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 24px 0 8px;
}
.hero h1 .italic {
  display: block;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  margin-top: 4px;
}
.hero-lede {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 18px;
  margin: 32px 0 40px;
}
.hero-lede em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}
.pill-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  max-width: 560px;
}
.pill-row .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 14px;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}
.pill-row .tag:first-child { padding-left: 0; }
.pill-row .tag:last-child { border-right: none; }

/* Hero visual — portrait card with stats */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}
.portrait {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,63,59,0) 50%, rgba(20,63,59,0.55) 100%),
    url('assets/hero-site.jpg') center 25% / cover no-repeat,
    linear-gradient(160deg, var(--bg-warm), var(--blush));
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.portrait::after { display: none; }
.portrait-caption {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  line-height: 1.25;
  max-width: 280px;
  text-shadow: 0 1px 10px rgba(20,63,59,0.5);
}
.stat-card {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 20px 22px;
  border-radius: 6px;
  box-shadow: 0 24px 60px -24px rgba(20,63,59,0.25);
}
.stat-card.tl {
  top: -24px; left: -48px;
  width: 200px;
}
.stat-card.br {
  bottom: 48px; right: -44px;
  width: 220px;
}
.stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-card .num sup { font-size: 18px; top: -14px; }
.stat-card .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.stat-card .lbl strong { color: var(--ink); font-weight: 600; }

/* ——— MARQUEE TRUST STRIP ——— */
.trust {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-badges {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.trust-badges span { opacity: 0.75; }

/* ——— SECTION HEADER PATTERN ——— */
.section { padding: 120px 0; position: relative; }
.section.warm { background: var(--bg-warm); }
.section.deep { background: var(--accent-deep); color: var(--cream); }
.section.deep .eyebrow { color: var(--blush); }
.section.deep .eyebrow::before { background: var(--blush); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 18px;
  max-width: 640px;
}
.section-head h2 .italic { font-style: italic; color: var(--accent); font-weight: 400; }
.section.deep .section-head h2 .italic { color: var(--blush); }
.section-head .aside {
  color: var(--ink-soft);
  max-width: 400px;
}
.section.deep .section-head .aside { color: rgba(251,246,238,0.72); }

/* ——— SERVICES GRID ——— */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.service {
  background: var(--bg);
  padding: 36px 32px;
  grid-column: span 4;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s;
  cursor: pointer;
  position: relative;
}
.service:hover { background: var(--cream); }
.service.featured {
  grid-column: span 6;
  background: var(--accent);
  color: var(--cream);
}
.service.featured:hover { background: var(--accent-deep); }
.service.featured .svc-num,
.service.featured .svc-desc { color: rgba(251,246,238,0.7); }
.service.wide { grid-column: span 6; }

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.svc-glyph {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0.7;
}
.service.featured .svc-glyph { border-color: var(--blush); color: var(--blush); opacity: 1; }
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.svc-title .italic { font-style: italic; color: var(--accent); font-weight: 400; }
.service.featured .svc-title .italic { color: var(--blush); }
.svc-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 320px;
}
.svc-arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .2s;
}
.service:hover .svc-arrow { gap: 14px; }
.service.featured .svc-arrow { color: var(--blush); }

/* ——— HOW IT WORKS ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 32px; right: 32px;
  height: 1px;
  background: var(--rule);
}
.step {
  position: relative;
  padding-top: 18px;
}
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1.5px solid var(--accent);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.step.deep .step-dot { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ——— CAREGIVERS ——— */
.caregivers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cg-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(251,246,238,0.1);
}
.section.deep .cg-card { background: rgba(251,246,238,0.05); border-color: rgba(251,246,238,0.12); }
.cg-photo {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, rgba(31,90,85,0.08) 0 2px, transparent 2px 14px),
    linear-gradient(170deg, var(--bg-warm), var(--blush));
  position: relative;
}
.section.deep .cg-photo {
  background:
    repeating-linear-gradient(135deg, rgba(251,246,238,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(170deg, rgba(251,246,238,0.08), rgba(232,213,200,0.15));
}
.cg-photo::after {
  content: attr(data-label);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(31,90,85,0.55);
  letter-spacing: 0.08em;
  position: absolute;
  bottom: 12px; left: 14px;
}
.section.deep .cg-photo::after { color: rgba(251,246,238,0.5); }
.cg-body { padding: 20px 22px 24px; }
.cg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 2px;
}
.cg-role {
  font-size: 12px;
  color: var(--accent-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section.deep .cg-role { color: var(--blush); }
.cg-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.section.deep .cg-meta { color: rgba(251,246,238,0.6); border-top-color: rgba(251,246,238,0.12); }

/* ——— TESTIMONIALS ——— */
.testimonials {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.testimonial {
  background: var(--cream);
  padding: 48px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.testimonial.feature {
  background: var(--accent);
  color: var(--cream);
  border-color: transparent;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 8px;
}
.testimonial.feature .quote-mark { color: var(--blush); opacity: 0.8; }
.quote-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.005em;
  flex: 1;
}
.quote-body em { font-style: italic; color: var(--accent); }
.testimonial.feature .quote-body em { color: var(--blush); }
.quote-by {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.testimonial.feature .quote-by { border-top-color: rgba(251,246,238,0.2); }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blush);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--accent-deep);
  font-weight: 500;
}
.quote-name { font-size: 15px; font-weight: 500; }
.quote-rel { font-size: 13px; color: var(--muted); margin-top: 2px; }
.testimonial.feature .quote-rel { color: rgba(251,246,238,0.65); }

/* ——— PRICING ——— */
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  position: relative;
}
.plan.featured .eyebrow { color: var(--blush); }
.plan.featured .eyebrow::before { background: var(--blush); }
.plan-flag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 4px;
}
.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  margin: 16px 0 6px;
  letter-spacing: -0.01em;
}
.plan-name .italic { font-style: italic; color: var(--accent); font-weight: 400; }
.plan.featured .plan-name .italic { color: var(--blush); }
.plan-tag {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  min-height: 44px;
}
.plan.featured .plan-tag { color: rgba(251,246,238,0.7); }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.plan.featured .plan-price { border-bottom-color: rgba(251,246,238,0.15); }
.plan-price .cur { font-size: 20px; color: var(--muted); }
.plan-price .amt { font-size: 56px; letter-spacing: -0.02em; line-height: 1; }
.plan-price .per { font-size: 14px; color: var(--muted); font-family: 'Work Sans', sans-serif; margin-left: 4px; }
.plan.featured .plan-price .per,
.plan.featured .plan-price .cur { color: rgba(251,246,238,0.6); }

.plan-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.plan-list li {
  padding: 10px 0;
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}
.plan.featured .plan-list li { color: rgba(251,246,238,0.82); }
.plan-list li::before {
  content: '';
  width: 16px; height: 16px;
  flex: none;
  margin-top: 3px;
  background: var(--accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.plan.featured .plan-list li::before { background: var(--blush); }
.plan-list li.off { opacity: 0.4; }
.plan-list li.off::before { background: var(--muted); }

/* ——— FAQ ——— */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 500;
  transition: color .15s;
}
.faq-item:hover .faq-q { color: var(--accent); }
.faq-toggle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--accent);
  flex: none;
  transition: transform .25s;
  line-height: 1;
  margin-top: 6px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 640px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}

/* ——— CTA / CALL BAND ——— */
.call-band {
  padding: 120px 0;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.call-band::before, .call-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.4;
  filter: blur(60px);
}
.call-band::before { top: -100px; left: -100px; }
.call-band::after { bottom: -100px; right: -100px; background: rgba(31,90,85,0.2); }
.call-band .inner { position: relative; }
.call-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0;
}
.call-band h2 .italic { font-style: italic; color: var(--accent); font-weight: 400; }
.phone-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  color: var(--accent-deep);
  letter-spacing: -0.02em;
  margin: 20px 0 28px;
  display: inline-block;
  position: relative;
}
.phone-big::before {
  content: 'CALL TODAY';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-weight: 600;
}
.call-sub { color: var(--ink-soft); max-width: 520px; margin: 0 auto 36px; }

/* ——— FOOTER ——— */
.footer {
  background: var(--ink);
  color: rgba(251,246,238,0.8);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251,246,238,0.12);
}
.footer .logo { color: var(--cream); }
.footer .logo-mark { background: rgba(251,246,238,0.08); color: var(--blush); }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 7px 0; font-size: 14px; }
.footer-col a:hover { color: var(--cream); }
.footer-tag {
  margin-top: 18px;
  color: rgba(251,246,238,0.55);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.6;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 36px;
  font-size: 12px;
  color: rgba(251,246,238,0.4);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bot .links { display: flex; gap: 24px; }

/* ——— SECONDARY BITS ——— */
.split-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.split-quote .big-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.split-quote .big-q .italic { font-style: italic; color: var(--accent); font-weight: 400; }
.split-quote .meta {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.split-quote .meta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}

/* ——— TWEAKS PANEL ——— */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 280px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  padding: 20px;
  font-family: 'Work Sans', sans-serif;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.4);
  z-index: 100;
  display: none;
  font-size: 13px;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweak-row { margin-bottom: 14px; }
.tweak-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 8px;
}
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.on { border-color: var(--cream); }

/* tablet — tighten stat-card offsets so they don't crash into text */
@media (max-width: 1180px) and (min-width: 1081px) {
  .hero-grid { gap: 48px; }
  .stat-card.tl { left: -24px; }
  .stat-card.br { right: -20px; }
}

/* stack earlier to avoid hero overlap */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hero-grid, .section-head, .split-quote, .testimonials { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 100%; margin: 40px 0 0; }
  .stat-card.tl, .stat-card.br { position: static; width: auto; margin-bottom: 12px; }
  .services, .caregivers, .steps, .plans { grid-template-columns: 1fr; }
  .service, .service.featured, .service.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }
}
