/* ================================================
   SPIRIT MENTOR — Wellness Retreat Coach Site
   ================================================ */

:root {
  --deep:    #1a0a2e;
  --purple:  #2e1157;
  --mid:     #4a2d6f;
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --cream:   #f8f4ef;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #6b6680;
  --border:  rgba(201,168,76,0.25);
}

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

html { scroll-behavior: smooth; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
.highlight { color: var(--gold); font-style: italic; }
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-bottom: 3rem; }
.section-title.light, .section-subtitle.light, p.section-eyebrow.light { color: rgba(255,255,255,0.9); }
.section-title.light .highlight { color: var(--gold-lt); }
.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ---- LAYOUT ---- */
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary  { background: var(--gold); color: var(--deep); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--deep); }
.btn-large    { padding: 1.1rem 2.75rem; font-size: 0.95rem; }
.btn-full     { width: 100%; text-align: center; }

/* ================================================
   NAV
   ================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 1.4rem 2rem;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(26,10,46,0.97);
  padding: 0.9rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); text-decoration: none; letter-spacing: 0.05em; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--deep) !important; padding: 0.5rem 1.2rem !important; border-radius: 2px; }
.nav-cta:hover { background: var(--gold-lt) !important; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=90&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,46,0.72) 0%, rgba(26,10,46,0.5) 50%, rgba(26,10,46,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.hero-headline {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-headline .highlight { font-size: inherit; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:.45;transform:translateX(-50%) translateY(0)} 50%{opacity:.9;transform:translateX(-50%) translateY(6px)} }

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar { background: var(--deep); padding: 2.5rem 0; }
.trust-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.trust-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.2); }

/* ================================================
   ABOUT
   ================================================ */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; box-shadow: 0 20px 60px rgba(26,10,46,0.2); }
.about-badge {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: var(--gold); color: var(--deep);
  padding: 1rem 1.25rem; text-align: center;
  font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.about-bio { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.02rem; }
.about-creds { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.about-creds li { font-size: 0.9rem; color: var(--mid); font-weight: 700; }

/* ================================================
   SERVICES
   ================================================ */
#services { background: var(--deep); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.featured-card { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.featured-tag {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--gold); color: var(--deep);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.75rem; font-weight: 600; }
.service-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.service-features { list-style: none; margin-bottom: 1.75rem; }
.service-features li { font-size: 0.85rem; color: rgba(255,255,255,0.75); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.service-features li::before { content: '✦  '; color: var(--gold); font-size: 0.6rem; }
.service-price { margin-bottom: 1.5rem; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.price-per { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ================================================
   RETREATS
   ================================================ */
#retreats { background: var(--cream); }
.retreats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.retreat-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 30px rgba(26,10,46,0.08); transition: transform 0.25s, box-shadow 0.25s; }
.retreat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(26,10,46,0.15); }
.retreat-img-wrap { position: relative; }
.retreat-img-wrap img { width: 100%; height: 240px; object-fit: cover; display: block; }
.retreat-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--deep);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 2px;
}
.retreat-info { padding: 1.75rem; }
.retreat-date { font-size: 0.82rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.retreat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 0.3rem; }
.retreat-location { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.retreat-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }
.retreat-footer { display: flex; align-items: center; justify-content: space-between; }
.retreat-price span { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--deep); }
.retreat-price small { display: block; font-size: 0.7rem; color: var(--muted); }

/* ================================================
   TESTIMONIALS
   ================================================ */
.section-cream { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(26,10,46,0.06);
  border-top: 3px solid transparent;
  transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.featured-testimonial { border-top-color: var(--gold); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--mid); color: var(--white); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--muted); }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  position: relative;
  padding: 8rem 2rem;
  background: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=1600&q=85&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(26,10,46,0.82); }
.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1rem; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; }

/* ================================================
   CONTACT
   ================================================ */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-intro { font-size: 1.02rem; color: var(--muted); margin-bottom: 2rem; }
.contact-details { list-style: none; margin-bottom: 2rem; }
.contact-details li { padding: 0.5rem 0; font-size: 0.95rem; color: var(--text); border-bottom: 1px solid rgba(26,10,46,0.06); }
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-pill {
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid); text-decoration: none;
  transition: all 0.2s;
}
.social-pill:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26,10,46,0.15);
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.25rem; }

/* ================================================
   FOOTER
   ================================================ */
footer { background: var(--deep); padding: 4rem 2rem; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 2rem; }
.footer-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 1rem; }
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .retreats-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 2rem; }
  .trust-divider { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--deep); padding: 1rem 2rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
