/* ============================================
   YIN YOGA & SOUND BATH PAGE — All Styles
   ============================================ */

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

/* ============================================
   HERO SECTION
   ============================================ */
.yin-hero {
  min-height: 85vh;
  background-color: #fffaf7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  overflow: visible;
  color: #3a3a3a;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  padding: 100px 10px 80px;
}

/* --- Scattered Stars --- */
.yin-star {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: rgba(180, 103, 70, 0.35);
  line-height: 1;
}

.yin-star--1 {
  top: 18%;
  left: 12%;
  font-size: 18px;
  animation: yin-star-twinkle 4s ease-in-out infinite;
}

.yin-star--2 {
  top: 30%;
  right: 18%;
  font-size: 14px;
  color: rgba(180, 103, 70, 0.2);
  animation: yin-star-twinkle 5s ease-in-out infinite;
  animation-delay: 1s;
}

.yin-star--3 {
  bottom: 25%;
  left: 22%;
  font-size: 12px;
  animation: yin-star-twinkle 3.5s ease-in-out infinite;
  animation-delay: 2s;
}

.yin-star--4 {
  top: 22%;
  right: 35%;
  font-size: 10px;
  color: rgba(180, 103, 70, 0.18);
  animation: yin-star-twinkle 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

.yin-star--5 {
  bottom: 35%;
  right: 12%;
  font-size: 16px;
  animation: yin-star-twinkle 4.5s ease-in-out infinite;
  animation-delay: 3s;
}

.yin-star--6 {
  top: 45%;
  left: 6%;
  font-size: 22px;
  color: rgba(202, 157, 117, 0.15);
  animation: yin-star-twinkle 7s ease-in-out infinite;
  animation-delay: 1.5s;
}

.yin-star--7 {
  bottom: 18%;
  right: 28%;
  font-size: 20px;
  color: rgba(180, 103, 70, 0.12);
  animation: yin-star-twinkle 5.5s ease-in-out infinite;
  animation-delay: 2.5s;
}

.yin-star--8 {
  top: 12%;
  left: 38%;
  font-size: 16px;
  color: rgba(202, 157, 117, 0.18);
  animation: yin-star-twinkle 4s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes yin-star-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.4); }
}

/* --- Sound Wave Rings (always visible, gently pulsing) --- */
.yin-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;
}

.yin-wave--1 { animation: yin-wave-a 14s ease-out 0s infinite; }
.yin-wave--2 { animation: yin-wave-b 18s ease-out 3s infinite; }
.yin-wave--3 { animation: yin-wave-c 16s ease-out 7s infinite; }
.yin-wave--4 { animation: yin-wave-a 20s ease-out 11s infinite; }
.yin-wave--5 { animation: yin-wave-b 15s ease-out 14s infinite; }

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

@keyframes yin-wave-b {
  0% { width: 10px; height: 10px; opacity: 0; border: 1.5px solid rgba(202, 157, 117, 0.2); }
  6% { opacity: 0.35; }
  50% { opacity: 0.12; }
  100% { width: 700px; height: 700px; opacity: 0; border: 1px solid rgba(202, 157, 117, 0.01); }
}

@keyframes yin-wave-c {
  0% { width: 10px; height: 10px; opacity: 0; border: 2.5px solid rgba(180, 103, 70, 0.3); }
  4% { opacity: 0.6; }
  30% { opacity: 0.15; }
  100% { width: 1100px; height: 1100px; opacity: 0; border: 1px solid rgba(180, 103, 70, 0.01); }
}

/* --- Moon Phases --- */
.yin-moon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

/* Thin crescent (waxing) — top right */
.yin-moon--crescent-1 {
  top: 10%;
  right: 10%;
  width: 45px;
  height: 45px;
  box-shadow: 10px -5px 0 0 rgba(180, 103, 70, 0.25);
  animation: yin-celestial-drift 28s infinite ease-in-out alternate;
}

/* Thicker crescent — bottom left */
.yin-moon--half {
  bottom: 18%;
  left: 6%;
  width: 50px;
  height: 50px;
  box-shadow: 12px -6px 0 -2px rgba(180, 103, 70, 0.22);
  animation: yin-celestial-drift 32s infinite ease-in-out alternate-reverse;
}

/* Waning crescent — mid right */
.yin-moon--crescent-2 {
  top: 55%;
  right: 8%;
  width: 35px;
  height: 35px;
  box-shadow: -8px -4px 0 0 rgba(202, 157, 117, 0.2);
  animation: yin-celestial-drift2 25s infinite ease-in-out alternate;
}

/* Full moon — top left area */
.yin-moon--full {
  top: 25%;
  left: 15%;
  width: 28px;
  height: 28px;
  background: rgba(202, 157, 117, 0.15);
  box-shadow: 0 0 12px 4px rgba(202, 157, 117, 0.08);
  animation: yin-celestial-drift2 30s infinite ease-in-out alternate-reverse;
}

@keyframes yin-celestial-drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
  100% { transform: translate(-5px, 6px); }
}

@keyframes yin-celestial-drift2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -10px); }
  100% { transform: translate(4px, 8px); }
}

/* --- Planets with Rings (Saturn-like) --- */
.yin-planet {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.yin-planet--1 {
  bottom: 28%;
  right: 18%;
  animation: yin-celestial-drift 35s infinite ease-in-out alternate;
}

.yin-planet--1 .yin-planet-body {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(180, 103, 70, 0.18);
  position: relative;
}

.yin-planet--1 .yin-planet-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(65deg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(180, 103, 70, 0.15);
}

.yin-planet--2 {
  top: 38%;
  left: 30%;
  animation: yin-celestial-drift2 28s infinite ease-in-out alternate-reverse;
}

.yin-planet--2 .yin-planet-body {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(202, 157, 117, 0.15);
  position: relative;
}

.yin-planet--2 .yin-planet-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(15deg);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(202, 157, 117, 0.12);
}

/* Hero centered layout */
.yin-hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.yin-hero-title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
  color: #8b4f4f;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.25;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.yin-hero-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #b46746;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

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

@media (max-width: 900px) {
  .yin-hero-subtitle--desktop {
    display: none;
  }
  .yin-hero-subtitle--mobile {
    display: block;
    font-size: 20px;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
  }
  .yin-mobile-break {
    display: block;
  }
}

.yin-mobile-break {
  display: none;
}

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

.yin-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;
}

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

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

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

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

.yin-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;
}

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

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

/* ============================================
   SHARED SECTION & CONTAINER
   ============================================ */
.yin-section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.yin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  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;
}

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

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

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

.yin-btn--outline {
  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);
}

.yin-btn--outline:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 103, 70, 0.6);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.15);
  color: #8b4f4f;
}

/* ============================================
   INTRO SECTION (image + text)
   ============================================ */
.yin-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

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

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

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

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

.yin-intro-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: 2rem;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(120, 90, 60, 0.04);
  animation: yin-intro-float 6s ease-in-out infinite;
}

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

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

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

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

/* Floating tags */
.yin-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);
  -webkit-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: yin-intro-float 6s ease-in-out infinite;
}

.yin-intro-tag--1 {
  right: -10px;
  top: 60px;
  animation-delay: 1s;
}

.yin-intro-tag--2 {
  left: -10px;
  bottom: 100px;
  animation-delay: 2s;
}

@media (max-width: 900px) {
  .yin-intro-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .yin-intro-content {
    text-align: center;
  }

  .yin-intro-content .yin-section-title {
    text-align: center !important;
  }

  .yin-intro-buttons {
    justify-content: center;
  }

  .yin-intro-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .yin-intro-tag--1 {
    right: 5px;
    top: 30px;
  }

  .yin-intro-tag--2 {
    left: 5px;
    bottom: 60px;
  }
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.yin-two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}

.yin-two-col--reverse {
  flex-direction: row-reverse;
}

.yin-two-col-left,
.yin-two-col-right {
  flex: 1;
  min-width: 0;
}

/* ============================================
   GLASS CARD IMAGE CONTAINER
   ============================================ */
.yin-glass-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(180, 103, 70, 0.12);
  box-shadow:
    0 15px 35px rgba(180, 103, 70, 0.1),
    0 0 60px rgba(180, 103, 70, 0.06);
}

.yin-glass-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.yin-glass-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: #8b4f4f;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(180, 103, 70, 0.15);
  letter-spacing: 0.3px;
}

.yin-glass-tag--top {
  bottom: auto;
  top: 16px;
  left: auto;
  right: 16px;
}

.yin-glass-tag--bottom {
  bottom: 16px;
  left: auto;
  right: 16px;
}

/* ============================================
   SECTION CARD (warm gradient bg)
   ============================================ */
.yin-section-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
}

.yin-section-card .yin-section-title {
  margin-bottom: 20px;
}

.yin-section-card p {
  color: #5a4a40;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.yin-section-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   WHY LIST (bullet points in section card)
   ============================================ */
.yin-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.yin-why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.yin-why-bullet {
  color: #b46746;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.yin-why-item strong {
  color: #8b4f4f;
  font-size: 17px;
  display: block;
  margin-bottom: 5px;
}

.yin-why-item p {
  color: #5a4a40;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   WHO IS THIS FOR — 3-col grid
   ============================================ */
.yin-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.yin-who-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #f0ddd0;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.yin-who-card:hover {
  transform: translateY(-5px);
}

.yin-who-icon {
  margin: 0 auto 20px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(180, 103, 70, 0.15);
}

.yin-who-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.yin-who-card h3 {
  color: #8b4f4f;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.yin-who-card p {
  color: #5a4a40;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}

/* ============================================
   SIMPLE LOCATION SECTION
   ============================================ */
.yin-location-simple {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
}

.yin-location-badge {
  display: inline-block;
  background: rgba(180, 103, 70, 0.1);
  color: #b46746;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.yin-location-simple .yin-section-title {
  text-align: center;
}

.yin-location-text {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 30px;
}

.yin-location-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.yin-location-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #5a4a40;
}

.yin-location-divider {
  width: 1px;
  height: 20px;
  background: rgba(180, 103, 70, 0.3);
  flex-shrink: 0;
}

/* ============================================
   OFFERINGS — 2-col grid
   ============================================ */
.yin-offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.yin-offering-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0ddd0;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.yin-offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.15);
}

.yin-offering-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.yin-offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yin-offering-card:hover .yin-offering-image img {
  transform: scale(1.05);
}

.yin-offering-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yin-offering-content h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 10px;
}

.yin-offering-desc {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.6;
  margin: 0 0 18px;
}

.yin-offering-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

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

.yin-offering-includes li:last-child {
  border-bottom: none;
}

.yin-offering-includes li svg {
  flex-shrink: 0;
}

.yin-offering-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid #f0ddd0;
}

.yin-offering-amount {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #b46746;
}

.yin-offering-people {
  font-size: 15px;
  color: #8b4f4f;
  font-weight: 500;
}

.yin-offering-content .yin-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.yin-offering-local {
  font-size: 13px;
  color: #8b4f4f;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.yin-offering-local a {
  color: #b46746;
  text-decoration: underline;
}

.yin-offering-local a:hover {
  color: #8b4f4f;
}

/* --- Group Inquiry Banner --- */
.yin-group-inquiry {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #b46746, #c27d60);
  padding: 22px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.2);
}

.yin-group-inquiry-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yin-group-inquiry-text {
  flex: 1;
}

.yin-group-inquiry-text strong {
  display: block;
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.yin-group-inquiry-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.yin-group-inquiry-btn {
  flex-shrink: 0;
  background: white;
  color: #b46746;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  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;
  white-space: nowrap;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.yin-faq-section {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

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

.yin-faq-item {
  background-color: #FEF4EF;
  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;
}

.yin-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  color: #8b4f4f;
  position: relative;
}

.yin-faq-toggle {
  width: 20px;
  height: 20px;
  border: 0px solid #8b4f4f;
  position: relative;
  transition: transform 0.3s ease;
  color: #8b4f4f !important;
  flex-shrink: 0;
}

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

.yin-faq-toggle::before {
  width: 10px;
  height: 2px;
  top: 8px;
  left: 4px;
}

.yin-faq-toggle::after {
  width: 2px;
  height: 10px;
  top: 4px;
  left: 8px;
  transition: transform 0.3s ease;
}

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

.yin-faq-answer {
  padding: 0 30px;
  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: #8b4f4f;
  font-size: 0.95rem;
  line-height: 1.6;
}

.yin-faq-item.active .yin-faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.yin-cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.yin-cta-deco {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.yin-cta-deco--1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(180, 103, 70, 0.08), transparent 70%);
  top: -60px;
  right: -40px;
}

.yin-cta-deco--2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 79, 79, 0.06), transparent 70%);
  bottom: -30px;
  left: -20px;
}

.yin-cta-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #8b4f4f;
  margin-bottom: 12px;
}

.yin-cta-text {
  font-size: 17px;
  color: #5a4a40;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 25px;
}

.yin-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.yin-cta-feat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5a4a40;
}

/* ============================================
   MEET TYAS SECTION
   ============================================ */
.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;
}

.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;
}

.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;
}

.tyas-quote-author-unique {
  margin-top: 20px;
  font-weight: 600;
  color: #b46746;
  font-size: 16px;
}

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

@keyframes tyas-bounce-unique {
  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 SECTION
   ============================================ */
.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: yin-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: yin-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: yin-loc-pulse1 8s infinite alternate ease-in-out;
  max-width: 60%;
}

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

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

@keyframes yin-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;
}

.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 10px 20px rgba(140, 92, 92, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.location-feature:hover .feature-image-container {
  box-shadow: 0 15px 30px rgba(140, 92, 92, 0.3);
}

.location-feature:hover .feature-image {
  transform: scale(1.15);
}

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

.location-feature p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.location-contact {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(230, 213, 203, 0.3);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(178, 125, 106, 0.2);
}

.address-column, .map-column {
  flex: 1;
  min-width: 300px;
}

.address-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.address-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f4f1;
  color: #8c5c5c;
  font-size: 35px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(140, 92, 92, 0.1);
}

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

.address-column address {
  font-style: normal;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
  color: #666;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b27d6a;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(178, 125, 106, 0.2);
}

.directions-link:hover {
  background: #8c5c5c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(140, 92, 92, 0.3);
  color: white;
}

.map-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(140, 92, 92, 0.15);
  border: 5px solid rgba(230, 213, 203, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(140, 92, 92, 0.2);
}

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

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 10px 18px 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.whatsapp-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  color: white;
}

.whatsapp-label {
  display: inline;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — 900px
   ============================================ */
@media (max-width: 900px) {
  .yin-moon, .yin-star, .yin-planet, .yin-wave {
    opacity: 0.5;
  }

  .yin-two-col,
  .yin-two-col--reverse {
    flex-direction: column;
  }

  .yin-who-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .yin-offerings-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .yin-group-inquiry {
    flex-direction: column;
    text-align: center;
  }

  .tyas-content-unique {
    flex-direction: column;
  }

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

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

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

  .tyas-overlay-unique {
    top: 0; bottom: 0; right: 0;
    border-radius: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  }

  .location-features {
    flex-direction: column;
    align-items: center;
  }

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

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

  .address-column, .map-column {
    flex: 100%;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .yin-moon, .yin-star, .yin-planet, .yin-wave {
    opacity: 0.3;
  }

  /* Keep one crescent and one planet visible on mobile */
  .yin-moon--crescent-1 {
    opacity: 0.7;
    top: 8%;
    right: 5%;
    width: 60px;
    height: 60px;
    box-shadow: 10px -5px 0 0 rgba(180, 103, 70, 0.3);
  }

  .yin-planet--1 {
    opacity: 0.6;
    bottom: 22%;
    left: 8%;
  }

  /* Hide the rest on mobile */
  .yin-moon--half,
  .yin-moon--crescent-2,
  .yin-moon--full,
  .yin-planet--2 {
    opacity: 0.1;
  }

  .yin-hero {
    min-height: 75vh;
    padding: 50px 15px 50px;
    margin-bottom: 0px;
  }

  .yin-hero-content {
    margin: 20px auto 40px;
    padding: 0 20px;
  }

  .yin-hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .yin-hero-subtitle--mobile {
    font-size: 22px;
    max-width: 420px;
    line-height: 1.5;
  }

  .yin-scroll-section {
    padding: 50px 20px 60px;
    min-height: auto;
  }

  .yin-section-card {
    padding: 25px 20px;
  }

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

  .yin-blob--1, .yin-blob--2, .yin-blob--3 {
    width: 50%;
    height: 50%;
    opacity: 0.5;
  }

  .yin-location-features {
    flex-direction: column;
    gap: 12px;
  }

  .yin-location-divider {
    display: none;
  }

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

  .location-contact {
    padding: 20px;
  }

  .map-container {
    height: 250px;
  }

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

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

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

  .tyas-quote-unique {
    padding: 0 20px;
  }

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

/* ============================================
   RESPONSIVE — 600px
   ============================================ */
@media (max-width: 600px) {
  .yin-moon, .yin-star, .yin-planet {
    opacity: 0.15;
  }

  .yin-wave {
    opacity: 0.1;
  }

  .yin-offering-image {
    height: 200px;
  }

  .yin-offering-content {
    padding: 20px;
  }

  .yin-offering-content h3 {
    font-size: 22px;
  }

  .yin-offering-amount {
    font-size: 24px;
  }

  .yin-glass-card {
    border-radius: 12px;
  }

  .yin-glass-card img {
    border-radius: 12px;
  }

  .yin-glass-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .yin-location-simple {
    padding: 30px 20px;
  }

  .yin-cta-title {
    font-size: 24px;
  }

  .yin-cta-text {
    font-size: 15px;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .yin-moon, .yin-star, .yin-planet, .yin-wave {
    display: none;
  }

  .yin-hero {
    padding: 40px 10px 20px;
    margin-bottom: 0px;
  }

  .yin-hero-content {
    margin: 15px auto 30px;
  }

  .yin-hero-title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .yin-hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .yin-section-title {
    font-size: 22px;
  }

  .yin-section-card {
    padding: 20px 15px;
  }

  .yin-who-card {
    padding: 20px 15px;
  }

  .yin-who-icon {
    width: 90px;
    height: 90px;
  }

  .yin-faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .yin-faq-item.active .yin-faq-answer {
    padding: 0 20px 20px;
  }

  .yin-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .yin-group-inquiry {
    padding: 18px 20px;
  }

  .yin-group-inquiry-text strong {
    font-size: 15px;
  }

  .yin-group-inquiry-text p {
    font-size: 14px;
  }

  .location-showcase {
    min-height: auto;
  }

  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px 8px 16px;
    font-size: 13px;
  }

  .whatsapp-label {
    display: none;
  }

  .whatsapp-icon {
    width: 44px;
    height: 44px;
  }
}
