:root {
  --mauve: #6d3c5e;
  --mauve-100: #ead7e3;
  --text: #222;
}

.page-header {
  padding: 3.5rem 0 1.5rem;
  text-align: center;
}
.page-header h1 {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--mauve);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.subhead {
  font-weight: 700;
  color: #4a2a42;
  opacity: 0.9;
}
.section {
  padding: 1.25rem 0 2.25rem;
}

.section h2 {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--mauve);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

 p {
  font-family: 'Lato', sans-serif;
  font-weight: 300; /* Light but still readable */
  line-height: 1.65; /* comfortable spacing */
  color: var(--text-color);
  font-size: clamp(1rem, 1.2vw + 0.8rem, 1.25rem); 
  /* min: 16px, scales a bit, max: ~20px */
}
.accent-rule {
  width: 100px;
  height: 4px;
  background: var(--mauve);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
/* “image strip” like Maple’s page */
.image-strip img {
  object-fit: cover;
  width: 100%;
  height: 220px;
  border-radius: 0.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
/* info cards */
.card-mauve {
  border: 1px solid var(--mauve-100);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
}
.card-mauve .card-header {
  background: linear-gradient(
    0deg,
    rgba(109, 60, 94, 0.06),
    rgba(109, 60, 94, 0.06)
  );
  border-bottom: 1px solid var(--mauve-100);
  color: var(--mauve);
  font-weight: 900;
}
.logo {
  max-height: 56px;
  width: auto;
}
.badge-hours {
  background: var(--mauve);
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--mauve);
  font-size: 0.9rem;
}

body {
  --bs-body-font-family: 'Lato', sans-serif;
  font-size: 1.10rem;
  line-height: 1.5;
  color: #212529;
  background-color: #f2eef5;
}

/* Breadcrumbs (scoped) */
    .disclaimer-breadcrumbs {
      background: #fff;
      border: 1px solid #eee;
      border-left: 4px solid var(--clinic-purple);
      border-radius: .5rem;
      padding: .5rem .75rem;
      margin-bottom: 1rem;
    }
    .disclaimer-breadcrumbs .breadcrumb { margin: 0; }
    .disclaimer-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: #888; }
    .disclaimer-breadcrumbs a { color: var(--clinic-purple); text-decoration: none; }
    .disclaimer-breadcrumbs a:hover { text-decoration: underline; }

    .purple {
      color: rgb(109,60,94);
    }