/* ============================================
   SOUND THERAPY SESSION PAGE — All Styles
   ============================================ */

/* --- Global overflow fix --- */
html, body {
  overflow-x: hidden;
}

/* ============================================
   CENTERED HERO (consistent with other pages)
   ============================================ */
.st-hero-centered {
  min-height: 80vh;
  background-color: #fffaf7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}

.st-hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.st-hero-centered .st-hero-title {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
  color: #8b4f4f;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.25;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.st-hero-centered .st-hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: #b46746;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

.st-hero-subtitle--mobile { display: none; }

@media (max-width: 900px) {
  .st-hero-subtitle--desktop { display: none; }
  .st-hero-subtitle--mobile {
    display: block;
    font-size: 19px;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
  }
  .st-hero-centered { min-height: 85vh; }
}

/* Sound wave ripples */
.st-wave {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  width: 10px;
  height: 10px;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  opacity: 0;
}

.st-wave--1 { animation: st-wave-out 14s ease-out 0s infinite; }
.st-wave--2 { animation: st-wave-out 18s ease-out 5s infinite; }
.st-wave--3 { animation: st-wave-out 16s ease-out 10s infinite; }

@keyframes st-wave-out {
  0% { width: 10px; height: 10px; opacity: 0; border: 2px solid rgba(180, 103, 70, 0.2); }
  8% { opacity: 0.5; }
  40% { opacity: 0.2; }
  100% { width: 900px; height: 900px; opacity: 0; border: 1px solid rgba(180, 103, 70, 0.02); }
}

/* Scroll hint */
.st-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.st-scroll-hint span {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b46746;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.st-scroll-arrow {
  animation: st-scroll-bounce 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes st-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   SCROLL REVEAL TEXT
   ============================================ */
.st-scroll-section {
  padding: 100px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.st-scroll-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.st-scroll-text p {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  color: #d0c4ba;
  margin: 0;
}

.st-scroll-text .scroll-word {
  display: inline;
  color: #d0c4ba;
  transition: color 0.2s ease;
}

.st-scroll-text .scroll-word.revealed {
  color: #5a4a40;
}

/* ============================================
   INTRO SPLIT (benefits + image)
   ============================================ */
.st-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.st-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.st-section-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #8b4f4f;
  text-align: center;
  margin: 0 0 20px;
}

.st-section-intro {
  font-size: 16px;
  color: #5a4a40;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.st-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.st-intro-content p {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  margin-bottom: 16px;
}

.st-intro-content strong {
  color: #8b4f4f;
}

.st-intro-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Buttons */
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.st-btn--primary {
  background: linear-gradient(135deg, #b46746, #8b4f4f);
  color: white;
  box-shadow: 0 6px 20px rgba(180, 103, 70, 0.3);
}

.st-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.4);
  color: white;
}

.st-btn--outline {
  background: transparent;
  color: #b46746;
  border: 1.5px solid rgba(180, 103, 70, 0.3);
}

.st-btn--outline:hover {
  background: #b46746;
  color: white;
  transform: translateY(-2px);
}

/* Glass card image */
.st-intro-image { position: relative; }

.st-intro-aura {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(217, 175, 120, 0.18), rgba(220, 160, 140, 0.1));
  filter: blur(50px);
  border-radius: 50%;
  animation: st-aura-breathe 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes st-aura-breathe {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.06); opacity: 0.4; }
}

.st-intro-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 10px;
  animation: st-card-float 6s ease-in-out infinite;
}

@keyframes st-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.st-intro-img-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 4/5;
}

.st-intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s ease;
}

.st-intro-glass:hover .st-intro-img-wrap img {
  transform: scale(1.1);
}

/* Floating tags */
.st-intro-tag {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 500;
  color: #57534e;
  animation: st-card-float 6s ease-in-out infinite;
}

.st-intro-tag--1 { right: -10px; top: 60px; animation-delay: 1s; }
.st-intro-tag--2 { left: -10px; bottom: 100px; animation-delay: 2s; }

@media (max-width: 900px) {
  .st-intro-split { grid-template-columns: 1fr; gap: 30px; }
  .st-intro-content { text-align: center; }
  .st-intro-content .st-section-title { text-align: center !important; }
  .st-intro-buttons { justify-content: center; }
  .st-intro-image { max-width: 400px; margin: 0 auto; }
  .st-intro-tag--1 { right: 5px; top: 30px; }
  .st-intro-tag--2 { left: 5px; bottom: 60px; }
}

/* ============================================
   SOUND THERAPY ON LOCATION
   ============================================ */
.st-location-offer {
  display: flex;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.1);
  border: 1px solid #f0ddd0;
}

.st-location-offer-left {
  flex: 0 0 55%;
  background: linear-gradient(135deg, #b46746, #8b4f4f);
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st-location-offer-left h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 26px;
  color: white;
  font-weight: 600;
  margin: 0 0 16px;
}

.st-location-offer-left > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 24px;
}

.st-location-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st-location-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.st-location-features li svg {
  flex-shrink: 0;
}

.st-location-btn {
  display: inline-block;
  background: white;
  color: #b46746;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.st-location-btn:hover {
  background: #fff8f4;
  color: #8b4f4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.st-location-offer-right {
  flex: 0 0 45%;
  overflow: hidden;
}

.st-location-offer-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.st-location-offer:hover .st-location-offer-right img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .st-location-offer {
    flex-direction: column;
  }

  .st-location-offer-left {
    text-align: center;
    padding: 35px 25px;
  }

  .st-location-btn {
    align-self: center;
  }

  .st-location-features {
    align-items: center;
  }

  .st-location-offer-right {
    height: 250px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.st-testimonials {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.st-testimonials-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
  padding: 40px 32px;
}

.st-testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.st-testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.st-testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.st-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.st-testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  border: 1px solid #f0ddd0;
  position: relative;
}

.st-testimonial-quote {
  font-size: 50px;
  color: #f0ddd0;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
  font-family: Georgia, serif;
}

.st-testimonial-card p {
  color: #5a4a40;
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.st-testimonial-author {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #b46746;
  margin-top: 15px;
  text-align: right;
}

.st-testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b27d6a;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(180, 103, 70, 0.3);
  transition: background 0.3s;
}

.st-testimonial-arrow:hover { background: #8b4f4f; }
.st-testimonial-prev { left: 5px; }
.st-testimonial-next { right: 5px; }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.st-section-title {
  font-size: 30px;
  color: #8b4f4f;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}

.st-section-intro {
  text-align: center;
  font-size: 17px;
  color: #5a4a40;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   1. HERO — Two Column Layout
   ============================================ */
.st-hero {
  padding: 120px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* --- Left: Warm Card --- */
.st-hero-text {
  position: relative;
}

.st-hero-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 20px;
  padding: 45px 40px;
  border: 1px solid #f0ddd0;
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.1);
}

.st-hero-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 12px;
  line-height: 1.25;
}

.st-hero-subtitle {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  color: #b46746;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 1.5;
}

.st-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.st-hero-benefits li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240, 221, 208, 0.5);
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.st-hero-benefits li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.st-benefit-marker {
  color: #b46746;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.st-hero-benefits li strong {
  display: block;
  color: #8b4f4f;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.st-hero-benefits li p {
  color: #5a4a40;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* --- Right: Glass Card Image --- */
.st-hero-visual {
  position: relative;
  perspective: 1000px;
}

.st-hero-aura {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 175, 120, 0.35), rgba(220, 160, 140, 0.3), rgba(160, 200, 160, 0.2));
  filter: blur(60px);
  border-radius: 50%;
  animation: st-auraBreathe 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes st-auraBreathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.5; }
}

.st-hero-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.5rem;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(120, 90, 60, 0.04);
  animation: st-glassFloat 6s ease-in-out infinite;
  transition: transform 0.7s ease;
}

.st-hero-glass:hover {
  transform: rotate(1deg);
}

@keyframes st-glassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.st-hero-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 4/5;
}

.st-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s ease;
}

.st-hero-glass:hover .st-hero-img-wrap img {
  transform: scale(1.1);
}

/* --- Floating Tags --- */
.st-float-tag {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.15);
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8b4f4f;
  white-space: nowrap;
}

.st-float-tag--top {
  top: 8%;
  right: -10px;
  animation: st-floatBadge1 4s ease-in-out infinite;
}

.st-float-tag--bottom {
  bottom: 12%;
  left: -10px;
  animation: st-floatBadge2 5s ease-in-out infinite;
}

@keyframes st-floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes st-floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   2. SESSION DESCRIPTION
   ============================================ */
.st-description {
  padding: 40px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.st-description-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid #f0ddd0;
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.08);
}

.st-description-card h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 20px;
}

.st-description-card p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.8;
  margin: 0 0 16px;
}

.st-description-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   3. EXPERIENCE CARDS — 3 column grid
   ============================================ */
/* Experience Cards (with images) */
.st-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.st-exp-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid #f0ddd0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(180, 103, 70, 0.1);
}

.st-exp-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
}

.st-exp-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.st-exp-card h3 {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 10px;
}

.st-exp-card p {
  font-size: 15px;
  color: #5a4a40;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.st-exp-price {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #b46746;
  background: rgba(180, 103, 70, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ============================================
   4. PRICING SECTION
   ============================================ */
.st-pricing {
  padding: 50px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.st-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.st-price-card {
  background: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.st-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.15);
}

.st-price-card--featured {
  border-color: #b46746;
  border-width: 2px;
  box-shadow: 0 12px 35px rgba(180, 103, 70, 0.15);
}

.st-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a574, #b46746);
  color: white;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.st-price-card h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 16px;
}

.st-price-amount {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  color: #b46746;
  margin-bottom: 24px;
}

.st-price-amount span {
  font-size: 18px;
  font-weight: 400;
  color: #8b4f4f;
}

.st-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.st-price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #5a4a40;
  padding: 8px 0;
  border-bottom: 1px solid rgba(240, 221, 208, 0.4);
}

.st-price-list li:last-child {
  border-bottom: none;
}

.st-price-list li svg {
  flex-shrink: 0;
}

.st-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #8b4f4f;
  border: 1.5px solid rgba(180, 103, 70, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.st-price-btn:hover {
  transform: translateY(-3px);
  border-color: #b46746;
  background: #b46746;
  color: white;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.25);
}

.st-price-btn--primary {
  background: linear-gradient(135deg, #d4a574, #b46746, #c27d60);
  animation: st-gradientShift 6s ease infinite;
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
}

.st-price-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 103, 70, 0.4);
  color: white;
}

@keyframes st-gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.st-pricing-note {
  text-align: center;
  font-size: 15px;
  color: #8b4f4f;
  font-style: italic;
  margin-top: 24px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   5. WHAT TO EXPECT — Timeline / Schedule
   ============================================ */
.st-expect {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.st-schedule {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  padding: 30px 35px;
  box-shadow: 0 8px 24px rgba(180, 103, 70, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.st-schedule-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0ddd0;
  align-items: flex-start;
}

.st-schedule-item:last-child {
  border-bottom: none;
}

.st-schedule-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
  width: 320px;
  min-width: 320px;
}

.st-schedule-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b46746, #c27d60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.st-schedule-header h3 {
  color: #8b4f4f;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  padding-top: 5px;
}

.st-schedule-body {
  flex: 1;
}

.st-schedule-body p {
  color: #5a4a40;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   6. FAQ — White bg, warm border (matches sound-healing-page.css)
   ============================================ */
.st-faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.st-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.st-faq-item {
  background-color: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.st-faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  color: #8b4f4f;
  gap: 15px;
}

.st-faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.st-faq-toggle::before,
.st-faq-toggle::after {
  content: '';
  position: absolute;
  background-color: #8b4f4f;
}

.st-faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.st-faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.st-faq-item.active .st-faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.st-faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  color: #5a4a40;
  font-size: 15px;
  line-height: 1.7;
}

.st-faq-item.active .st-faq-answer {
  padding: 0 28px 22px;
  max-height: 500px;
}

/* ============================================
   7. RELATED PAGES
   ============================================ */
.st-related {
  padding: 40px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.st-related-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid #f0ddd0;
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.08);
}

.st-related-card h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 30px;
  text-align: center;
}

.st-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.st-related-blogs h3,
.st-related-services h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 16px;
}

.st-related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #5a4a40;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 221, 208, 0.5);
  transition: color 0.3s ease;
}

.st-related-link:last-child {
  border-bottom: none;
}

.st-related-link:hover {
  color: #b46746;
}

.st-related-link svg {
  flex-shrink: 0;
}

.st-related-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.st-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #f0ddd0;
  color: #8b4f4f;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(180, 103, 70, 0.06);
}

.st-pill:hover {
  background: #b46746;
  color: white;
  border-color: #b46746;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180, 103, 70, 0.2);
}

/* ============================================
   8-9. MEET TYAS & LOCATION — shared from sound-healing-page.css
   These classes are identical: tyas-hero-unique, location-showcase, etc.
   They are loaded from sound-healing-page.css or style.css.
   Below are fallback definitions if needed standalone.
   ============================================ */

/* Meet Tyas */
.tyas-hero-unique {
  width: 100%;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

.tyas-bg-unique {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.1);
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.tyas-content-unique {
  display: flex;
  min-height: 500px;
  width: 100%;
}

.tyas-text-unique {
  width: 50%;
  padding: 60px;
  position: relative;
  z-index: 5;
}

.tyas-media-unique {
  width: 50%;
  position: relative;
  overflow: visible;
}

.tyas-video-wrap-unique {
  position: absolute;
  top: -50px;
  bottom: -50px;
  right: -20px;
  width: 350px;
  height: calc(100% + 100px);
  border-top-left-radius: 200px;
  overflow: hidden;
  box-shadow: -10px 10px 40px rgba(180, 103, 70, 0.15);
}

.tyas-video-unique {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.tyas-overlay-unique {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  right: -20px;
  background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  z-index: 2;
  border-top-left-radius: 200px;
}

.tyas-label-unique {
  display: inline-block;
  background-color: rgba(180, 103, 70, 0.1);
  color: #b46746;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.tyas-heading-unique {
  font-size: 54px;
  font-weight: 600;
  color: #8b4f4f;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tyas-paragraph-unique {
  font-size: 17px;
  color: #4a2d25;
  margin-bottom: 30px;
  line-height: 1.8;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.tyas-deco-unique {
  position: absolute;
  background-color: rgba(194, 125, 96, 0.15);
  border-radius: 50%;
  z-index: 1;
}

.tyas-deco-1-unique { top: -30px; left: 10%; width: 140px; height: 140px; }
.tyas-deco-2-unique { bottom: -40px; left: 35%; width: 80px; height: 80px; background-color: rgba(139, 79, 79, 0.1); }
.tyas-deco-3-unique { top: 20%; right: 40%; width: 60px; height: 60px; background-color: rgba(139, 79, 79, 0.1); }

.tyas-quote-unique {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.tyas-quote-mark-unique {
  font-size: 120px;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(180, 103, 70, 0.1);
  font-family: Georgia, serif;
}

.tyas-quote-text-unique {
  font-size: 20px;
  line-height: 1.8;
  color: #8b4f4f;
  font-style: italic;
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tyas-quote-author-unique {
  margin-top: 20px;
  font-weight: 600;
  color: #b46746;
  font-size: 16px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.tyas-heart-indicator-unique {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  animation: st-tyas-bounce 2s infinite;
}

@keyframes st-tyas-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.tyas-heart-indicator-unique svg {
  width: 40px;
  height: 40px;
  fill: #b46746;
  opacity: 0.6;
}

/* Location */
.location-showcase {
  position: relative;
  height: 100%;
  min-height: 900px;
  overflow: hidden;
  color: #8c5c5c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-showcase .yoga-bg-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.location-showcase #loc-shape1 {
  width: 300px; height: 300px;
  border-radius: 31% 69% 20% 80% / 60% 31% 69% 40%;
  background: rgba(230, 213, 203, 0.6);
  top: 10%; left: 5%; opacity: 0.5;
  animation: st-loc-float1 15s infinite alternate ease-in-out;
  max-width: 40%;
}

.location-showcase #loc-shape2 {
  width: 400px; height: 400px;
  border-radius: 69% 31% 54% 46% / 28% 50% 50% 72%;
  background: rgba(230, 213, 203, 0.3);
  bottom: 2%; right: 5%; opacity: 0.5;
  animation: st-loc-float2 12s infinite alternate-reverse ease-in-out;
  max-width: 50%;
}

.location-showcase #loc-circle1 {
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(230, 213, 203, 0.3);
  top: -250px; left: -100px;
  animation: st-loc-pulse1 8s infinite alternate ease-in-out;
  max-width: 60%;
}

@keyframes st-loc-float1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(5deg); }
  100% { transform: translate(-20px, -10px) rotate(-5deg); }
}

@keyframes st-loc-float2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, 10px) rotate(-3deg); }
  100% { transform: translate(15px, -15px) rotate(3deg); }
}

@keyframes st-loc-pulse1 {
  0% { transform: scale(0.9); opacity: 0.2; }
  100% { transform: scale(1.1); opacity: 0.4; }
}

.location-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(140, 92, 92, 0.2);
  border: 1px solid rgba(178, 125, 106, 0.3);
}

.location-eyebrow {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 26px;
  display: block;
  margin-bottom: 15px;
  color: #b27d6a;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.location-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto 20px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.location-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 20px;
  color: #8c5c5c;
  position: relative;
  display: inline-block;
}

.location-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b27d6a;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.location-feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  background: rgba(230, 213, 203, 0.3);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(140, 92, 92, 0.1);
  border: 1px solid rgba(178, 125, 106, 0.2);
  text-align: center;
}

.location-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(140, 92, 92, 0.15);
  background: rgba(230, 213, 203, 0.5);
}

.feature-image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(140, 92, 92, 0.2);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-feature h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #8c5c5c;
}

.location-feature p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.location-contact {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  text-align: left;
  align-items: flex-start;
}

.address-column {
  flex: 1;
  padding: 30px;
}

.address-icon {
  color: #b27d6a;
  margin-bottom: 15px;
}

.address-column h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #8c5c5c;
  margin-bottom: 10px;
}

.address-column address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #b27d6a;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.directions-link:hover {
  color: #8c5c5c;
}

.map-column {
  flex: 1.5;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(140, 92, 92, 0.15);
  border: 1px solid rgba(178, 125, 106, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

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

  .st-hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .st-hero-card {
    padding: 35px 28px;
  }

  .st-hero-title {
    font-size: 28px;
  }

  .st-usp-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .st-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 30px auto 0;
  }

  .st-related-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .st-description-card {
    padding: 35px 28px;
  }

  /* Meet Tyas responsive */
  .tyas-content-unique {
    flex-direction: column;
    min-height: auto;
  }

  .tyas-text-unique {
    width: 100%;
    padding: 40px 30px;
    text-align: center;
  }

  .tyas-media-unique {
    width: 100%;
    height: 300px;
  }

  .tyas-video-wrap-unique {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 300px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .tyas-overlay-unique {
    top: 0;
    bottom: 0;
    border-top-left-radius: 0;
  }

  .tyas-heading-unique {
    font-size: 36px !important;
  }

  /* Location responsive */
  .location-showcase {
    min-height: auto;
    padding: 40px 15px;
  }

  .location-eyebrow {
    font-size: 18px;
  }

  .location-contact {
    flex-direction: column;
  }

  .address-column {
    padding: 20px 0;
    text-align: center;
  }

  .map-column {
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .st-hero {
    padding: 100px 15px 40px;
  }

  .st-hero-card {
    padding: 28px 22px;
  }

  .st-hero-benefits li {
    padding: 12px 0;
  }

  .st-hero-benefits li strong {
    font-size: 15px;
  }

  .st-hero-benefits li p {
    font-size: 14px;
  }

  .st-section-title {
    font-size: 26px;
  }

  .st-description-card h2 {
    font-size: 26px;
  }

  .st-schedule-item {
    flex-direction: column;
    gap: 8px;
  }

  .st-schedule-header {
    width: auto;
    min-width: auto;
  }

  .st-schedule-body {
    padding-left: 46px;
  }

  .st-faq-question {
    padding: 18px 22px;
    font-size: 0.95rem;
  }

  .st-faq-answer {
    font-size: 14px;
  }

  .st-faq-item.active .st-faq-answer {
    padding: 0 22px 18px;
  }

  .location-feature {
    min-width: 200px;
  }

  .st-float-tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .st-exp-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    gap: 16px;
  }

  .st-exp-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 16px;
  }

  .st-exp-img {
    width: 70px;
    height: 70px;
    margin: 0;
    flex-shrink: 0;
  }

  .st-exp-card h3 {
    font-size: 15px;
    margin: 0 0 6px;
  }

  .st-exp-card p {
    font-size: 13px;
    text-align: left;
    line-height: 1.5;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .st-hero {
    padding: 90px 12px 30px;
  }

  .st-hero-card {
    padding: 24px 18px;
  }

  .st-hero-title {
    font-size: 24px;
  }

  .st-hero-subtitle {
    font-size: 16px;
  }

  .st-hero-benefits li {
    gap: 10px;
  }

  .st-description-card {
    padding: 28px 20px;
  }

  .st-description-card p {
    font-size: 15px;
  }

  .st-price-card {
    padding: 32px 22px;
  }

  .st-price-amount {
    font-size: 36px;
  }

  .st-schedule-header {
    padding: 14px 18px;
  }

  .st-schedule-body {
    padding: 14px 18px 14px 50px;
  }

  .st-schedule-body p {
    font-size: 15px;
  }

  .st-related-card {
    padding: 30px 22px;
  }

  .st-related-card h2 {
    font-size: 24px;
  }

  .st-pill {
    padding: 8px 16px;
    font-size: 13px;
  }

  .st-section-title {
    font-size: 24px;
  }

  .st-section-intro {
    font-size: 15px;
  }

  .tyas-bg-unique {
    width: 95%;
  }

  .tyas-text-unique {
    padding: 30px 20px;
  }

  .tyas-heading-unique {
    font-size: 28px !important;
  }

  .tyas-paragraph-unique {
    font-size: 15px;
  }

  .tyas-quote-text-unique {
    font-size: 17px;
  }

  .location-content {
    padding: 40px 20px;
  }

  .location-eyebrow {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .location-feature {
    min-width: 100%;
  }

  .st-float-tag--top {
    right: 0;
  }

  .st-float-tag--bottom {
    left: 0;
  }
}
