/* Best Is Life -- shared stylesheet */

:root {
  --purple-deep: #4a2c5e;
  --purple: #6b3f8c;
  --purple-light: #9c6bb8;
  --lavender: #f3ecf7;
  --green-accent: #8fb339;
  --cream: #faf7fb;
  --text-dark: #2e2233;
  --text-muted: #6b5f72;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(74, 44, 94, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-deep); }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee2f0;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--purple-deep);
}
.brand img { height: 44px; width: auto; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
nav.main-nav a { color: var(--text-dark); }
nav.main-nav a.active, nav.main-nav a:hover { color: var(--purple); }

.btn {
  display: inline-block;
  background: var(--purple);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--purple-deep); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white) !important;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
  padding: 90px 24px;
  text-align: center;
}
.hero h1, .hero p { color: var(--white); }
.hero .subtitle {
  color: var(--green-accent);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-bottom: 1em;
}
.hero-inner { max-width: 760px; margin: 0 auto; }

/* Sections */
section { padding: 70px 24px; }
section.alt { background: var(--lavender); }
.eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5em;
}

.grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #f0e7f4;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2em;
}
.badge {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.quote-card {
  background: var(--white);
  border-left: 4px solid var(--green-accent);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote-card cite {
  display: block;
  margin-top: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--purple);
}

.list-check { list-style: none; padding: 0; margin: 1em 0; }
.list-check li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: bold;
}

form.contact-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
form.contact-form label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddc9e5;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }

.cta-band {
  background: var(--purple-deep);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}
.cta-band h2, .cta-band p { color: var(--white); }

footer.site-footer {
  background: var(--text-dark);
  color: #d9cbe0;
  padding: 50px 24px 30px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
}
footer.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
footer.site-footer h4 { color: var(--white); }
footer.site-footer a { color: #d9cbe0; }
footer.site-footer a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: #a893b3;
}

.img-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  h1 { font-size: 2rem; }
}
