/* ===== Dr. Shawn Joseph — clean static rebuild ===== */
:root {
  --purple: #422e59;
  --purple-light: #f7dfaf;
  --gold: #f7dc79;
  --gold-text: #f7e6b4;
  --text: #7a7a7a;
  --heading: #422e59;
  --white: #ffffff;
  --maxw: 1140px;
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--purple); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--purple);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-title a {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
}
.main-nav ul { list-style: none; display: flex; gap: 8px; }
.main-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 18px;
  display: block;
  transition: color .15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  border-bottom: 6px solid var(--gold);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--purple);
  opacity: .78;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 4% 4%; }
.hero h1 {
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--purple-light);
  margin-bottom: 24px;
}
.hero p {
  color: var(--gold-text);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease;
}
.btn:hover { transform: scale(1.06); }
.btn .arrow { font-size: 1rem; }

/* ===== Sections ===== */
.section { padding: 70px 0; }
.section-white { background: #fff; }
.section-light { background: #faf9fb; }
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0;
}
.divider {
  width: 10%;
  min-width: 80px;
  height: 0;
  border-top: 3px solid var(--gold);
  margin: 20px auto 30px;
}
.section-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: 1rem;
  color: #54595f;
}
.section-actions { text-align: center; margin-top: 10px; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: #341f47; }

/* ===== About / FAQ layout ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}
.about-photo {
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  background: #eee url("../images/about.jpg") center/cover no-repeat;
}

/* ===== FAQ toggles ===== */
.faq-item { border-bottom: 1px solid #e5e2ea; }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--purple);
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { color: var(--purple); transition: transform .25s ease; flex-shrink: 0; }
.faq-q.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 18px; color: #54595f; font-size: 0.97rem; }

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.testi-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(66, 46, 89, 0.06);
  text-align: center;
}
.testi-card .avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: #cfd4db center/cover no-repeat;
}
.testi-card .name { font-weight: 700; color: var(--purple); margin-bottom: 12px; }
.testi-card .quote { font-size: 0.95rem; color: #54595f; }

/* ===== Footer ===== */
.site-footer {
  background: var(--purple);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}
.site-footer p { font-size: 1.05rem; font-weight: 500; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--purple); padding: 10px 20px; }
  .main-nav.show { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 12px 0; }
  .header-inner { position: relative; }
  .hero { min-height: 95vh; background-attachment: scroll; }
  .hero h1 { font-size: 40px; line-height: 1.1; }
  .section { padding: 44px 0; }
  .section-title { font-size: 1.6rem; }
}
