* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif; background: #FFF8F0; color: #2A2A2A; line-height: 1.6; overflow-x: hidden;
}
.serif { font-family: 'Cormorant Garamond', serif; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; width: 100%; }

/* Welcome Modal */
.welcome-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; z-index: 10000; padding: 20px; animation: fadeIn 0.4s ease;
}
.welcome-modal.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  background: white; max-width: 750px; width: 100%; border-radius: 28px; padding: 70px 60px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4); text-align: center; animation: slideUp 0.5s ease;
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-logo { font-size: 88px; margin-bottom: 28px; }
.modal-title {
  font-size: 42px; font-weight: 600; margin-bottom: 16px;
  background: linear-gradient(135deg, #8B73A8, #D4AF6E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2;
}
.modal-subtitle { font-size: 18px; color: #8B73A8; margin-bottom: 48px; font-weight: 500; }
.modal-messages { margin-bottom: 56px; text-align: left; }
.modal-message { padding: 24px 0; border-bottom: 1.5px solid #E8D5F2; }
.modal-message:last-child { border-bottom: none; }
.message-lang {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: #B8A4CC; margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.message-text { font-size: 19px; line-height: 1.75; color: #4A4A4A; font-weight: 300; }
.modal-lang-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.modal-lang-btn {
  padding: 22px 20px; border: 2.5px solid #B8A4CC; background: transparent; color: #8B73A8;
  font-size: 17px; font-weight: 700; border-radius: 60px; cursor: pointer; transition: all 0.35s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-lang-btn:hover {
  background: linear-gradient(135deg, #B8A4CC, #9B86B5); color: white;
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(184,164,204,0.45);
}

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  padding: 22px 0; z-index: 1000; box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 23px; font-weight: 600; background: linear-gradient(135deg, #8B73A8, #D4AF6E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.lang-switcher { display: flex; gap: 8px; background: rgba(255,255,255,0.95); padding: 7px; border-radius: 60px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.lang-btn { padding: 11px 22px; border: none; background: transparent; color: #6A6A6A; font-weight: 700; font-size: 14px; cursor: pointer; border-radius: 60px; transition: all 0.3s ease; }
.lang-btn:hover { color: #8B73A8; }
.lang-btn.active { background: linear-gradient(135deg, #B8A4CC, #9B86B5); color: white; box-shadow: 0 4px 14px rgba(184,164,204,0.35); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 40px 100px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,248,240,0.95), rgba(255,248,240,0.85), transparent); z-index: 2; }
.hero-content { position: relative; z-index: 10; max-width: 65%; }
.hero h1 { font-size: clamp(56px, 9vw, 110px); line-height: 1.05; font-weight: 300; margin-bottom: 48px; text-shadow: 0 2px 20px rgba(255,255,255,0.9); }
.hero-box { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); padding: 44px; border-radius: 18px; margin-bottom: 52px; box-shadow: 0 10px 40px rgba(0,0,0,0.09); }
.hero-box p { font-size: 27px; color: #4A4A4A; font-weight: 300; line-height: 1.65; }
.btn-primary { display: inline-block; background: linear-gradient(135deg, #B8A4CC, #9B86B5); color: white; padding: 22px 52px; font-size: 18px; font-weight: 600; border-radius: 60px; text-decoration: none; box-shadow: 0 10px 28px rgba(184,164,204,0.4); transition: all 0.35s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(184,164,204,0.5); }
.btn-secondary { display: inline-block; background: transparent; color: #9B86B5; padding: 20px 48px; font-size: 17px; font-weight: 600; border: 2.5px solid #B8A4CC; border-radius: 60px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; margin-left: 20px; }
.btn-secondary:hover { background: linear-gradient(135deg, #B8A4CC, #9B86B5); color: white; transform: translateY(-2px); }

/* Sections */
section { padding: 120px 0; }
.section-title { font-size: clamp(50px, 7vw, 84px); font-weight: 300; text-align: center; margin-bottom: 28px; line-height: 1.1; }
.section-subtitle { text-align: center; font-size: 22px; color: #8B73A8; font-weight: 500; margin-bottom: 16px; }
.divider { width: 110px; height: 3px; background: linear-gradient(to right, #D4AF6E, #B8A4CC); margin: 0 auto 70px; border-radius: 2px; }
.bg-white { background: white; }
.bg-lavender { background: linear-gradient(160deg, #E8D5F2 0%, #F5E6F8 30%, #FFF8F0 60%, #FFE9E0 100%); }
.bg-sunset { background: linear-gradient(135deg, #FFE9E0, #F5E6F8, #E8D5F2); }
.bg-cream { background: #FFF8F0; }

/* Expandable */
.expandable { max-height: 0; overflow: hidden; transition: max-height 0.6s ease; }
.expandable.active { max-height: 8000px; }
.expand-btn { display: inline-flex; align-items: center; gap: 12px; margin: 48px 0; }
.chevron { transition: transform 0.3s ease; display: inline-block; font-size: 18px; }
.chevron.rotated { transform: rotate(180deg); }

/* About */
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; max-width: 1400px; margin: 0 auto; }
.photo-janet { aspect-ratio: 3/4; position: sticky; top: 120px; border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,0.15); overflow: hidden; width: 100%; }
.photo-janet img { width: 100%; height: 100%; object-fit: cover; }
.about-text { padding-right: 60px; }

/* Journey MINIMALIST */
.journey-intro { text-align: center; max-width: 900px; margin: 0 auto 80px; padding: 60px; background: linear-gradient(135deg, rgba(232,213,242,0.3), rgba(255,233,224,0.3)); border-radius: 20px; border: 2px solid rgba(212,175,110,0.3); }
.journey-progress { display: flex; justify-content: center; align-items: center; gap: 16px; margin: 60px 0 80px; }
.progress-dot { width: 16px; height: 16px; border-radius: 50%; background: #E8D5F2; transition: all 0.3s ease; }
.progress-dot.active { background: linear-gradient(135deg, #B8A4CC, #D4AF6E); box-shadow: 0 4px 12px rgba(184,164,204,0.4); transform: scale(1.3); }
.progress-line { width: 60px; height: 2px; background: #E8D5F2; }
.journey-step { max-width: 1000px; margin: 0 auto 80px; padding: 50px 0; border-bottom: 1px solid #E8D5F2; }
.journey-step:last-child { border-bottom: none; }
.step-header { display: flex; align-items: center; gap: 40px; margin-bottom: 30px; }
.step-number { font-size: 18px; font-weight: 700; color: #B8A4CC; min-width: 50px; }
.step-title-group { flex: 1; }
.step-title { font-size: 38px; font-weight: 300; margin-bottom: 8px; color: #2A2A2A; }
.step-duration { font-size: 16px; color: #8B73A8; display: flex; align-items: center; gap: 8px; }
.step-toggle { background: transparent; border: 2px solid #B8A4CC; color: #8B73A8; padding: 12px 28px; border-radius: 60px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 10px; }
.step-toggle:hover { background: #B8A4CC; color: white; }
.step-content { padding-left: 90px; }
.step-content-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.step-description { font-size: 18px; line-height: 1.8; color: #4A4A4A; margin-bottom: 30px; }
.step-checklist { list-style: none; padding: 0; }
.step-checklist li { padding: 12px 0; border-bottom: 1px solid #F5F5F5; display: flex; align-items: center; gap: 12px; font-size: 16px; color: #6A6A6A; }
.step-checklist li:last-child { border-bottom: none; }
.step-image { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.step-image img { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-top: 60px; }
.service-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); transition: all 0.3s ease; border-top: 4px solid #E8D5F2; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-top-color: #B8A4CC; }
.service-icon { font-size: 48px; margin-bottom: 20px; }

/* Testimonials SINGLE */
.testimonial-section { max-width: 1200px; margin: 0 auto; }
.testimonial-single { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.testimonial-image { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.12); }
.testimonial-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-text { background: white; padding: 56px; border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.08); border-left: 5px solid #D4AF6E; }
.testimonial-quote { font-size: 22px; line-height: 1.8; color: #4A4A4A; margin-bottom: 24px; font-style: italic; }
.testimonial-author { font-size: 18px; font-weight: 600; color: #8B73A8; }

footer { padding: 80px 0 50px; background: white; text-align: center; border-top: 1px solid #E8D5F2; }

@media (max-width: 968px) {
  .modal-content { padding: 50px 32px; }
  .modal-lang-buttons { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-right: 0; }
  .photo-janet { position: relative; top: 0; }
  .step-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .step-content { padding-left: 0; }
  .step-content-grid { grid-template-columns: 1fr; }
  .testimonial-single { grid-template-columns: 1fr; }
  .journey-progress { gap: 8px; }
  .progress-line { width: 30px; }
}

/* Hide step numbers completely - only show dots */
.step-number { display: none !important; }

/* Adjust step header without step-number */
.step-header { 
  display: flex; 
  align-items: center; 
  gap: 40px; 
  margin-bottom: 30px;
}

/* Emotional Story Sections */
.step-story {
  background: linear-gradient(135deg, rgba(248,245,252,0.8), rgba(255,248,240,0.8));
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.9;
  color: #4A4A4A;
  font-weight: 300;
  font-style: italic;
  border-left: 4px solid #B8A4CC;
  box-shadow: 0 4px 16px rgba(184,164,204,0.15);
}

.step-story::before {
  content: '"';
  font-size: 60px;
  color: #B8A4CC;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 968px) {
  .step-story {
    padding: 30px 24px;
    font-size: 17px;
  }
}

/* Enhanced About Section for emotional content */
.about-text p {
  transition: all 0.3s ease;
}

.about-text p:last-of-type {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #8B73A8 !important;
  padding: 24px;
  background: linear-gradient(135deg, rgba(248,245,252,0.5), rgba(255,248,240,0.5));
  border-radius: 12px;
  border-left: 4px solid #B8A4CC;
}

@media (max-width: 968px) {
  .about-text p {
    font-size: 17px !important;
  }
  .about-text p:first-of-type {
    font-size: 21px !important;
  }
}
