/* Execu-Care Coaching & Consulting — 2026 refresh
   Palette drawn from the original logo green. */
:root {
  --green: #2f6b52;
  --green-dark: #24523f;
  --green-pale: #e8f0ec;
  --ink: #24292b;
  --muted: #5c6663;
  --bg: #fbfaf7;
  --card: #ffffff;
  --rule: #e3e0d8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--green-dark); line-height: 1.25; }
h1 { font-size: 2.1rem; margin-bottom: .6rem; }
h2 { font-size: 1.55rem; margin: 2.2rem 0 .8rem; }
h3 { font-size: 1.2rem; margin: 1.6rem 0 .5rem; }
p { margin-bottom: 1rem; }
a { color: var(--green); }
a:hover { color: var(--green-dark); }
ul { margin: 0 0 1rem 1.4rem; }
li { margin-bottom: .35rem; }
img { max-width: 100%; height: auto; }

/* Header / nav */
header {
  background: var(--card);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 10;
}
.header-inner {
  max-width: 960px; margin: 0 auto; padding: .7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.brand img { height: 54px; width: auto; display: block; }
nav a {
  margin-left: 1.1rem; text-decoration: none; font-weight: 600; font-size: .95rem;
  color: var(--ink);
}
nav a:hover, nav a.active { color: var(--green); }

/* Layout */
main { max-width: 960px; margin: 0 auto; padding: 2.5rem 1.2rem 3rem; }
.hero { text-align: center; padding: 2.5rem 0 1.5rem; }
.hero img.logo { max-width: 360px; margin: 0 auto 1.2rem; display: block; }
.tagline { font-family: Georgia, serif; font-style: italic; font-size: 1.35rem; color: var(--green-dark); }
.lede { font-size: 1.08rem; max-width: 760px; margin: 1.4rem auto; text-align: left; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin: 2rem 0; }
.card {
  background: var(--card); border: 1px solid var(--rule); border-radius: 10px;
  padding: 1.4rem 1.3rem; text-decoration: none; color: var(--ink);
  transition: box-shadow .15s ease, transform .15s ease;
}
.card:hover { box-shadow: 0 6px 18px rgba(47,107,82,.14); transform: translateY(-2px); }
.card h3 { margin: 0 0 .5rem; color: var(--green); }
.card p { margin: 0; font-size: .95rem; color: var(--muted); }

.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.two-col .side img { border-radius: 10px; border: 1px solid var(--rule); }
.side .caption { font-size: .85rem; color: var(--muted); margin-top: .4rem; text-align: center; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } .side { order: -1; max-width: 320px; margin: 0 auto; } }

.panel {
  background: var(--green-pale); border-radius: 10px; padding: 1.3rem 1.5rem; margin: 1.6rem 0;
}
.panel h3 { margin-top: 0; }
.btn {
  display: inline-block; background: var(--green); color: #fff !important; text-decoration: none;
  padding: .65rem 1.3rem; border-radius: 6px; font-weight: 600; margin: .4rem 0;
}
.btn:hover { background: var(--green-dark); }
.service { border-bottom: 1px solid var(--rule); padding-bottom: 1.2rem; }
.service:last-of-type { border-bottom: none; }

/* Footer */
footer { background: var(--green-dark); color: #e9f1ed; margin-top: 3rem; }
.footer-inner { max-width: 960px; margin: 0 auto; padding: 2rem 1.2rem; text-align: center; font-size: .95rem; }
footer a { color: #cfe4da; }
.footer-nav { margin-top: .6rem; }
.footer-nav a { margin: 0 .6rem; text-decoration: none; }
.fineprint { margin-top: .8rem; font-size: .8rem; color: #9dbcae; }
