
/* Bespoke Personal Home Care — Sketch Theme (non-destructive) */
:root{
  --bg: #f6fbf8;
  --card: rgba(255,255,255,.86);
  --ink: #183a2b;
  --muted: #4a6a5b;
  --accent: #2d7a63;
  --accent2:#1f5d4b;
  --border: rgba(19,56,40,.12);
  --shadow: 0 10px 28px rgba(20,40,30,.08);
  --radius: 18px;
}

html,body{background:var(--bg)!important;color:var(--ink)!important;}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.65;
}

a{color:var(--accent2);}
a:hover{color:var(--accent);}

main, .container, .content, .page, .wrapper{
  /* allow existing layout to remain */
}

.bphc-card, section, .section, .service, .feature, .content-section{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

h1,h2,h3{color:var(--ink);}
h1{letter-spacing:-.2px;}
p, li{color:var(--muted);}

button, .btn, .button, input[type="submit"]{
  background: var(--accent)!important;
  border: none!important;
  border-radius: 12px!important;
  padding: 12px 18px!important;
  color: #fff!important;
  box-shadow: 0 8px 18px rgba(45,122,99,.18);
}
button:hover, .btn:hover, .button:hover, input[type="submit"]:hover{
  background: var(--accent2)!important;
}

}

/* soften headers/nav without breaking existing */
header, .header, .topbar, nav{
  background: rgba(255,255,255,.75)!important;
  border-bottom: 1px solid var(--border)!important;
  backdrop-filter: blur(6px);
}


/* Illustration placement — clean and consistent */
figure.bphc-figure{
  margin: 14px 0 18px 0;
  padding: 0;
}
figure.bphc-figure img.bphc-illus{
  display:block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(20,40,30,.08);
  margin: 0 auto;
}
figure.bphc-figure figcaption{
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* Hero illustration (top-of-page) */
img.bphc-hero{
  display:block;
  width: 100%;
  max-width: 920px;
  height:auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(20,40,30,.10);
  margin: 18px auto 24px auto;
}
