/* ========================================
   Lisa Richmond – Soul Alignment
   Brand Website Styles
   ======================================== */

:root {
  --indigo: #5C4B8A;
  --indigo-dark: #3F3460;
  --gold: #C9A84C;
  --gold-light: #E0C878;
  --teal: #5BA8A0;
  --teal-light: #7BC4BC;
  --cream: #F8F4ED;
  --cream-dark: #EFE9DE;
  --charcoal: #2C2A2E;
  --rose: #D4A5A5;
  --white: #FFFFFF;
  --text: #2C2A2E;
  --text-light: #5A575C;
  --shadow: 0 10px 40px rgba(92, 75, 138, 0.08);
  --shadow-hover: 0 15px 50px rgba(92, 75, 138, 0.15);
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--indigo-dark);
  text-transform: uppercase;
}

a {
  color: var(--indigo);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(92, 75, 138, 0.08);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--indigo-dark);
  font-weight: 600;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 30px;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(92, 75, 138, 0.08);
  color: var(--indigo);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(92, 75, 138, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92, 75, 138, 0.35);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #B8943A);
  color: white;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--indigo);
  color: var(--indigo);
}

.btn-outline:hover {
  background: var(--indigo);
  color: white;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--indigo);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(165deg, var(--cream) 0%, #F0EBF5 45%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 168, 160, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 18px;
  color: var(--indigo-dark);
}

.hero-content .tagline {
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(92, 75, 138, 0.15));
}

/* ========== SECTIONS ========== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ========== ABOUT PREVIEW ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.about-text .btn {
  margin-top: 12px;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(92, 75, 138, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(92, 75, 138, 0.12), rgba(91, 168, 160, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  color: var(--indigo);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--indigo-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.98rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.service-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  color: white;
  padding: 70px 0;
  text-align: center;
}

.cta-band h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.contact-details {
  list-style: none;
  margin-bottom: 30px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-details strong {
  color: var(--indigo);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.98rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(165deg, var(--cream) 0%, #F0EBF5 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== ABOUT PAGE ========== */
.about-full {
  max-width: 760px;
  margin: 0 auto;
}

.about-full p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.08rem;
}

.about-full h2 {
  margin: 40px 0 18px;
  font-size: 1.7rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    max-width: 280px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px;
    border-bottom: 1px solid rgba(92, 75, 138, 0.1);
    box-shadow: var(--shadow);
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 50px 0 70px;
  }

  .section {
    padding: 60px 0;
  }

  .service-card {
    padding: 28px 24px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
