/* ============================================
   Gia Health Coach - Spiritual Wellness Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Questrial&family=Tenor+Sans&family=Raleway:wght@200;300;400&family=Quicksand:wght@300;400&family=Poppins:wght@200;300;400&family=Lato:wght@100;300;400&display=swap');

:root {
  --cream: #EDE8E4;
  --soft-sage: #E2E6E0;
  --muted-lavender: #E6E2EA;
  --warm-sand: #EAE6E0;
  --gentle-rose: #EAE2E4;
  --text-dark: #2A1E26;
  --text-light: #4A3442;
  --accent-gold: #B8873E;
  --accent-sage-dark: #8B5E7A;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Questrial', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ============================================
   Spiritual Symbols & Decorative Elements
   ============================================ */

.lotus-symbol {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.mandala-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.sacred-geometry {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

/* Floating particles for meditative effect */
.particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-100px) translateX(20px); opacity: 0.5; }
  50% { transform: translateY(-50px) translateX(-20px); opacity: 0.3; }
  75% { transform: translateY(-150px) translateX(10px); opacity: 0.4; }
}

/* ============================================
   Navigation
   ============================================ */

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background: transparent;
  transition: var(--transition);
}

.nav-container.scrolled {
  background: rgba(210, 208, 214, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  opacity: 1;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-left {
  justify-content: flex-start;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
  flex: 1;
}

.nav-left a,
.nav-right a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3E2845;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A04A, transparent);
  transition: width 0.35s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #8B6914;
  text-shadow: 0 0 8px rgba(212, 160, 74, 0.15);
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

.nav-left a.active,
.nav-right a.active {
  color: #8B6914;
}

.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

.menu-trigger {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Questrial', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
}

.menu-trigger .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-trigger .hamburger-icon span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-dark);
}


/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 3rem;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--soft-sage) 50%, var(--muted-lavender) 100%);
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-symbol {
  width: 120px;
  height: 120px;
  margin-bottom: -1rem;
  opacity: 0.9;
  animation: breathe 4s infinite ease-in-out;
  object-fit: contain;
  border-radius: 12px;
}

img.section-symbol {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #4A3050;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero .btn {
  animation: gentlePulse 2.5s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover {
  color: #4A3050;
}

.btn:hover::before {
  width: 100%;
}

.btn-light {
  border: none;
  color: #4A3050;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-left: 0;
}

.btn-light::after {
  content: ' →';
}

.btn-light::before {
  display: none;
}

.btn-light:hover {
  color: #2A1A30;
}

/* ============================================
   Section Styles
   ============================================ */

section {
  padding: 2.5rem 4rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-symbol {
  width: 50px;
  height: 50px;
  margin-bottom: 2rem;
  opacity: 0.5;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #4A3050;
}

.section-header .divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 1.5rem auto;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   Page Hero (for inner pages)
   ============================================ */

.page-hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  position: relative;
}

.page-hero.about-hero {
  background: linear-gradient(135deg, var(--soft-sage) 0%, var(--cream) 100%);
}

.page-hero.services-hero {
  background: linear-gradient(135deg, var(--muted-lavender) 0%, var(--cream) 100%);
}

.page-hero.writings-hero {
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--cream) 100%);
}

.page-hero.journey-hero {
  background: linear-gradient(135deg, var(--gentle-rose) 0%, var(--cream) 100%);
}

.page-hero.contact-hero {
  background: linear-gradient(135deg, var(--soft-sage) 0%, var(--muted-lavender) 100%);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4A3050;
  margin-bottom: 0;
}

.page-hero .page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  opacity: 0.7;
  margin-top: -0.5rem;
}

/* ============================================
   About Page Styles
   ============================================ */

.about-intro {
  background: var(--cream);
  padding: 3.5rem 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--soft-sage), var(--muted-lavender));
  border-radius: 200px 200px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder svg {
  width: 150px;
  height: 150px;
  opacity: 0.3;
}

.about-image .about-photo {
  width: 100%;
  border-radius: 200px 200px 100px 100px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: #4A3050;
  margin-bottom: 2rem;
}

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

.philosophy-section {
  background: var(--soft-sage);
  padding: 3.5rem 4rem;
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.philosophy-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 2rem 0;
  padding: 2rem;
  border-left: 2px solid var(--accent-gold);
  text-align: left;
}

.credentials {
  background: var(--cream);
  padding: 3rem 4rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.credential-item {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.credential-item svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.credential-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.credential-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   Services Page Styles
   ============================================ */

.services-intro {
  background: var(--cream);
  padding: 2rem 4rem 2.5rem;
  text-align: center;
}

.services-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.services-grid {
  background: var(--cream);
  padding: 0 4rem 3rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(240, 236, 232, 0.6);
  padding: 3rem;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-sage-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(74, 69, 67, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.service-card .btn {
  padding-left: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  animation: none;
}

.service-card .btn::after {
  content: ' →';
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-details {
  list-style: none;
  margin-bottom: 2rem;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-details li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: #4A3050;
  font-size: 0.7rem;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--accent-sage-dark);
  margin-bottom: 1.5rem;
}

.approach-section {
  background: var(--muted-lavender);
  padding: 2rem 4rem;
}

.approach-content {
  max-width: 900px;
  margin: 0 auto;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.approach-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--accent-gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.approach-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.approach-step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   Writings Page Styles
   ============================================ */

.writings-intro {
  background: var(--cream);
  padding: 2rem 4rem;
  text-align: center;
}

.writings-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.writings-grid {
  background: var(--cream);
  padding: 4rem;
}

.writings-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.writing-card {
  background: rgba(100, 90, 130, 0.18);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.writing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(74, 69, 67, 0.12);
}

.writing-image {
  height: 200px;
  background: linear-gradient(135deg, #7E5C8C, #5E4070);
  display: flex;
  align-items: center;
  justify-content: center;
}

.writing-image svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

.writing-content {
  padding: 2rem;
}

.writing-category {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-sage-dark);
  margin-bottom: 0.8rem;
}

.writing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.writing-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.read-more {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--text-dark);
}

.featured-writing {
  background: var(--warm-sand);
  padding: 3.5rem 4rem;
}

.featured-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-content .writing-category {
  margin-bottom: 1.5rem;
}

.featured-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.featured-content .excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ============================================
   Journey/Testimonials Page Styles
   ============================================ */

.journey-intro {
  background: var(--cream);
  padding: 4rem 4rem 6rem;
  text-align: center;
}

.journey-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.testimonials-section {
  background: var(--gentle-rose);
  padding: 3.5rem 4rem;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(230, 226, 234, 0.6);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--accent-gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-sage), var(--muted-lavender));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.author-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.transformation-stories {
  background: var(--cream);
  padding: 3.5rem 4rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--soft-sage), transparent);
  border-radius: 20px;
}

.story-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.story-card p {
  color: var(--text-light);
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-content {
  background: var(--cream);
  padding: 3.5rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

.contact-details {
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.contact-item span {
  color: var(--text-light);
}

.contact-form {
  background: rgba(236, 232, 238, 0.6);
  padding: 3rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  font-family: 'Questrial', sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  font-family: 'Questrial', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  background: var(--text-dark);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
}

.submit-btn:hover {
  background: var(--accent-gold);
}

.schedule-section {
  background: var(--soft-sage);
  padding: 3.5rem 4rem;
  text-align: center;
}

.schedule-content {
  max-width: 600px;
  margin: 0 auto;
}

.schedule-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.schedule-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: #BBBCC2;
  color: #1A1A1A;
  padding: 5rem 4rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand .logo {
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #3A3A3A;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-column h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul a {
  color: #3A3A3A;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-column ul a:hover {
  color: #1A1A1A;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: #1A1A1A;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.footer-bottom p {
  color: #4A4A4A;
  font-size: 0.85rem;
}

/* ============================================
   Home Page Sections
   ============================================ */

.home-about {
  background: var(--cream);
}

.about-photo {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(44, 36, 38, 0.15);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.home-services {
  background: var(--soft-sage);
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.home-service-card {
  background: rgba(238, 232, 228, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 69, 67, 0.1);
}

.home-service-card svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.home-service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.home-service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.home-testimonial {
  background: var(--muted-lavender);
}

.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-featured blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.home-cta {
  background: linear-gradient(135deg, var(--warm-sand), var(--gentle-rose));
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: normal;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* ============================================
   Responsive Design — Preserve Desktop Layout
   ============================================
   The viewport is set to width=1200, so the browser
   scales the full desktop composition to fit any screen.
   No grid restructuring, no element hiding, no stacking.
   ============================================ */

/* Mobile touch-device overrides */
@media (pointer: coarse) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-trigger {
    display: flex;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
  }

  .menu-trigger .hamburger-icon span {
    width: 30px;
    height: 2.5px;
  }

  .nav-container {
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 5rem 2rem 2rem;
  }

  .hero-side-text {
    display: none !important;
  }

  .page-hero {
    padding: 4rem 2rem 1.5rem !important;
    min-height: auto !important;
  }

  .about-intro {
    padding-top: 3rem !important;
  }

  .about-photo {
    max-width: 100% !important;
    width: 100% !important;
  }

  section {
    padding: 2rem 1.5rem;
  }

  .menu-close {
    right: 1.5rem;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 40, 50, 0.97);
  backdrop-filter: blur(30px);
  z-index: 1001;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu-overlay a:hover {
  color: #D4A04A;
  letter-spacing: 0.3em;
}

.menu-close {
  position: absolute;
  top: 2rem;
  right: 4rem;
  font-family: 'Questrial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.menu-close:hover {
  color: #D4A04A;
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ============================================
   Event Card - Side by Side Layout
   ============================================ */

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
  background: rgba(236, 232, 240, 0.6);
  border-radius: 16px;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 69, 67, 0.1);
}

.event-hero {
  position: relative;
  flex-shrink: 0;
  width: 320px;
}

.event-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.event-date-overlay {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  text-align: center;
  padding: 0.5rem 0.7rem;
  background: rgba(240, 236, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.event-date-overlay .month {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.event-date-overlay .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-dark);
}

.event-date-overlay .year {
  font-size: 0.6rem;
  color: var(--text-light);
}

.event-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.35rem 0.7rem;
  background: rgba(240, 236, 234, 0.9);
  color: var(--text-dark);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.event-card .event-details {
  flex: 1;
  padding: 0.5rem 0;
}

.event-card .event-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

/* Event cards preserve side-by-side layout at all sizes */

/* ============================================
   Mobile Styles
   ============================================ */

@media (max-width: 768px) {

  /* --- Navigation --- */
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .logo {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }

  .logo-symbol {
    width: 36px;
    height: 36px;
  }

  /* --- Hero Sections --- */
  .hero {
    padding: 6rem 1.5rem 2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }

  .hero .subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .hero-symbol {
    width: 80px;
    height: 80px;
  }

  /* Override inline logo width in hero/page-hero */
  .hero img[style*="width: 320px"],
  .hero img[style*="width:320px"],
  .page-hero img[style*="width: 320px"],
  .page-hero img[style*="width:320px"] {
    width: 180px !important;
  }

  .page-hero {
    min-height: auto !important;
    padding: 4rem 1.2rem 1rem !important;
    margin-top: 0 !important;
  }

  .page-hero img[src="logo.png"] {
    width: 180px !important;
    margin-bottom: 0.3rem !important;
  }

  .page-hero h1 {
    font-size: 1.5rem;
    margin-top: 0;
    letter-spacing: 0.1em;
  }

  .page-hero .page-subtitle {
    margin-top: 0;
    font-size: 1.1rem;
  }

  /* --- Sections General --- */
  section {
    padding: 1.5rem 1.2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }

  /* --- Hide Decorative Elements --- */
  .hero-side-text,
  .sacred-geometry,
  .mandala-bg,
  .particle {
    display: none !important;
  }

  /* --- Images --- */
  img {
    max-width: 100%;
    height: auto;
  }

  /* --- Home Page Grids --- */
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* --- About Page --- */
  .about-intro {
    padding: 1.2rem 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .philosophy-section {
    padding: 1.2rem 1.2rem;
  }

  .philosophy-content blockquote {
    font-size: 1.1rem;
    padding: 1rem;
    margin: 1rem 0;
  }

  .credentials {
    padding: 1.2rem 1.2rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* --- Services Page --- */
  .services-intro {
    padding: 0.8rem 1.2rem;
  }

  .services-grid {
    padding: 0 1.2rem 1.2rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card::before {
    display: none;
  }

  .approach-section {
    padding: 1.2rem 1.2rem;
  }

  .approach-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* --- Writings Page --- */
  .writings-intro {
    padding: 0.8rem 1.2rem;
  }

  .writings-grid {
    padding: 1.2rem 1.2rem;
  }

  .writings-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-writing {
    padding: 1.2rem 1.2rem;
  }

  .featured-content h3 {
    font-size: 1.6rem;
  }

  .featured-content .excerpt {
    font-size: 1.1rem;
  }

  /* --- Events Page --- */
  .event-card {
    flex-direction: column;
  }

  .event-hero {
    width: 100%;
  }

  /* --- Contact Page --- */
  .contact-content {
    padding: 1.2rem 1.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .schedule-section {
    padding: 1.2rem 1.2rem;
  }

  /* --- Journey / Testimonials --- */
  .journey-intro {
    padding: 1.2rem 1.2rem;
  }

  .testimonials-section {
    padding: 1.2rem 1.2rem;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
    padding-left: 1rem;
  }

  .testimonial-author {
    padding-left: 1rem;
  }

  .transformation-stories {
    padding: 1.2rem 1.2rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* --- Footer --- */
  footer {
    padding: 2rem 1.2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-brand .logo {
    font-size: 1.8rem;
  }

  /* --- Home CTA & Testimonial --- */
  .home-cta,
  .home-testimonial {
    padding: 1.2rem 1.2rem;
  }

  .section-header {
    margin-bottom: 1rem;
  }

  .section-symbol {
    margin-bottom: 0.5rem;
  }

  .about-text h3 {
    margin-bottom: 1rem;
  }

  .about-text p {
    margin-bottom: 0.8rem;
  }

  .testimonial-featured blockquote {
    font-size: 1.2rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}

