* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mauve: #7d3f4e;
  --mauve-light: #a0566a;
  --mauve-dark: #5c2d3a;
  --cream: #faf8f5;
  --grey-light: #f2f0ed;
  --grey: #e8e4e0;
  --text-dark: #2e2828;
  --text-mid: #5a5050;
  --text-light: #888;
  --green: #5a8a6a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: white;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-bottom-color: var(--grey);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--mauve-dark);
}
.nav-logo img { height: 46px; width: auto; }

#nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
#nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 30px;
  transition: color 0.2s, background 0.2s;
}
#nav-links a:hover { color: var(--mauve-dark); background: var(--grey-light); }
.nav-cta {
  background: var(--mauve) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  margin-left: 10px;
  box-shadow: 0 4px 14px rgba(125,63,78,0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--mauve-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(125,63,78,0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--mauve-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
}
.nav-toggle span:nth-child(2) { width: 70%; }
.nav-toggle.open span { width: 100%; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 78px;
  padding: 60px 24px;
  gap: 60px;
}

.hero-content { flex: 1; }
.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.hero-bullets li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-mid);
  font-size: 1rem;
}
.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.hero-image {
  flex: 1;
  max-width: 480px;
}
.hero-image img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--mauve);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--mauve-dark); }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--mauve);
  color: var(--mauve);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--mauve); color: white; }

.btn-small {
  display: inline-block;
  background: var(--mauve);
  color: white;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-small:hover { background: var(--mauve-dark); }

.link-secondary {
  color: var(--mauve);
  text-decoration: underline;
  font-size: 0.9rem;
}

/* ===== INTRO BANNER ===== */
.intro-banner {
  background: var(--grey-light);
  padding: 40px 60px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 2;
  border-top: 3px solid var(--mauve);
}
.intro-banner p { margin-bottom: 6px; }
.intro-banner p:first-child { font-size: 1.2rem; color: var(--text-dark); }
.intro-banner a { color: var(--mauve); font-weight: 700; }
.guide-link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey);
  font-size: 0.95rem;
}

/* ===== PRODUCTS ===== */
#products {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
#products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--grey-light);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.product-img-placeholder {
  font-size: 2.5rem;
  text-align: center;
  padding: 16px 0;
}
.product-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
}
.product-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  flex: 1;
}
.product-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* ===== ENERGY HEALING ===== */
#energy-healing {
  background: var(--grey-light);
  padding: 80px 24px;
}
.healing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
#energy-healing h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 48px;
  font-size: 0.95rem;
}

.healing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.healing-card {
  background: white;
  border-radius: 10px;
  padding: 28px;
}
.healing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--mauve);
}
.healing-card p { font-size: 0.92rem; color: var(--text-mid); }

.disclaimer-box {
  background: white;
  border-left: 4px solid var(--mauve);
  padding: 20px 24px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  text-align: left;
}
#schedule .disclaimer-box {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}
#schedule .disclaimer-box strong { color: white; }
.btn-large {
  font-size: 1.3rem;
  padding: 20px 52px;
}

.certs {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.certs img { height: 200px; }
.cert-badge {
  background: var(--mauve);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.6;
}

/* ===== FAQ TEASER ===== */
.faq-teaser {
  text-align: center;
  background: var(--cream);
  padding: 22px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-top: 1px solid var(--grey);
}
.faq-teaser a {
  color: var(--mauve);
  font-weight: 700;
  text-decoration: underline;
}
.faq-teaser a:hover { color: var(--mauve-dark); }

/* ===== SCHEDULE ===== */
#schedule {
  padding: 80px 24px;
  background: var(--mauve-dark);
  color: white;
  text-align: center;
}
.schedule-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#schedule h2 {
  font-size: 2rem;
  color: white;
}
.session-price {
  font-size: 1.15rem;
  opacity: 0.9;
}
#schedule p { font-size: 0.92rem; opacity: 0.85; }
.schedule-note { font-size: 0.82rem; opacity: 0.7; }
#schedule .btn-primary {
  background: white;
  color: var(--mauve-dark);
  font-size: 1.1rem;
  padding: 16px 40px;
}
#schedule .btn-primary:hover { background: var(--cream); }
#schedule .btn-secondary {
  border-color: rgba(255,255,255,0.6);
  color: white;
}
#schedule .btn-secondary:hover { background: rgba(255,255,255,0.1); color: white; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
#testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--grey-light);
  border-radius: 10px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.stars { color: #b8972a; font-size: 1.1rem; margin-bottom: 10px; }
.testimonial-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.testimonial-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ===== FAQ ===== */
#faq {
  background: var(--grey-light);
  padding: 80px 24px;
}
#faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-item summary {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--mauve); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

/* ===== ABOUT ===== */
#about {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 2rem; margin-bottom: 8px; }
.about-text h3 { font-size: 1.3rem; color: var(--mauve); margin-bottom: 20px; }
.about-text p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 16px; }
.about-text .btn-primary { margin-top: 8px; }

.about-image { width: 340px; flex-shrink: 0; }
.about-image img {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== PRACTITIONER ===== */
#practitioner {
  background: var(--grey-light);
  padding: 70px 24px;
  text-align: center;
}
.practitioner-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#practitioner h2 {
  font-size: 2rem;
  color: var(--text-dark);
}
.practitioner-subtitle {
  font-size: 1.1rem;
  color: var(--mauve);
  font-weight: 700;
}
.practitioner-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.practitioner-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.practitioner-point {
  background: white;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
}
.footer-logo img {
  height: 90px;
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 10px 20px;
}
.footer-logo span { color: white; font-style: italic; font-size: 1.4rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-links a:hover { color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 78px; right: -100%;
    width: min(78vw, 300px);
    height: calc(100vh - 78px);
    background: white;
    padding: 28px 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    gap: 6px;
    transition: right 0.3s ease;
  }
  #nav-links.open { right: 0; }
  #nav-links a {
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  #hero {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
  }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-image { max-width: 100%; }

  .products-grid { grid-template-columns: 1fr; }
  .healing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-inner { flex-direction: column; }
  .about-image { width: 100%; }
}
