.cmh-schedule-section {
  padding: 90px 8%;
  background: #fff;
}

.cmh-schedule-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.cmh-schedule-header span {
   font-family: 'Open Sans', sans-serif;
  display: block;
  color: #c77655;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cmh-schedule-header h1 {
 font-family: 'Open Sans', sans-serif;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 600;
  color: #2b2118;
  margin: 0 0 20px;
}

.cmh-schedule-header p {
   font-family: 'Open Sans', sans-serif;
  color: #6b5d52;
  font-size: 18px;
  line-height: 1.8;
}

.cmh-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  border: 1px solid #eadfd4;
  background: #fff;
  color: #6b5d52;
  padding: 12px 22px;
  border-radius: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c77655;
  border-color: #c77655;
  color: #fff;
}

.schedule-days {
  max-width: 1100px;
  margin: 0 auto;
}

.day-card {
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(43,33,24,.06);
  margin-bottom: 26px;
}

.day-card.hidden-day {
  display: none;
}

.day-header {
  background: #f3ebe2;
  padding: 26px 30px;
  border-bottom: 1px solid #eadfd4;
}

.day-header span {
  font-family: 'Open Sans', sans-serif;
  display: block;
  color: #c77655;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.day-header h3 {
font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  color: #2b2118;
  margin: 0;
}

.day-class {
  display: grid;
  grid-template-columns: 150px 1fr 105px;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid #eadfd4;
}

.day-class:last-child {
  border-bottom: none;
}

.day-class.hidden {
  display: none;
}

.class-time {
  font-family: 'Open Sans', sans-serif;
  color: #c77655;
  font-weight: 700;
  font-size: 16px;
}

.class-info h4 {
font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2b2118;
  margin: 8px 0 6px;
}

.class-info p {
  font-family: 'Open Sans', sans-serif;
  color: #6b5d52;
  margin: 0;
  font-weight: 600;
}

.schedule-tag {
    font-family: 'Open Sans', sans-serif;
  display: inline-block;
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 11px;
  text-transform: uppercase;

  font-weight: 700;
}

.schedule-tag.yoga {
    font-family: 'Open Sans', sans-serif;
  background: #eef7ef;
  color: #2d6a4f;
}

.schedule-tag.sound {
    font-family: 'Open Sans', sans-serif;
  background: #f4e7dd;
  color: #a85d40;
}

.schedule-tag.qigong {
    font-family: 'Open Sans', sans-serif;
  background: #edf3f1;
  color: #315f57;
}

.schedule-tag.breathwork {
  font-family: 'Open Sans', sans-serif;
  background: #f2edf7;
  color: #6b4b86;
}

.schedule-tag.workshop {
    font-family: 'Open Sans', sans-serif;
  background: #fff1e8;
  color: #b8643f;
}

.mini-book-btn {
    font-family: 'Open Sans', sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #c77655;
  color: #fff;
  padding: 11px 20px;
  border-radius: 40px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: .3s ease;
}

.mini-book-btn:hover {
  background: #a85d40;
}

.schedule-empty {
  display: none;
  text-align: center;
  margin-top: 30px;
  color: #6b5d52;
  font-style: italic;
}

.schedule-empty.visible {
  display: block;
}

/* MODAL */

.class-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(43,33,24,.76);
  z-index: 99999;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.class-modal.active {
  display: flex;
}

.class-modal-content {
  background: #fbf6ef;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 26px;
  padding: 34px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0,0,0,.3);
}

.class-modal-content img {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  color: #2b2118;
  cursor: pointer;
  line-height: 1;
}

.class-modal-content h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #a55c35;
    margin-bottom: 8px;
    line-height: 1.2;
}

.class-modal-content p {
  font-family: 'Open Sans', sans-serif;
  color: #6b5d52;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.class-modal-content ul {
  font-family: 'Open Sans', sans-serif;
  margin: 18px 0 0 20px;
  color: #6b5d52;
  line-height: 1.8;
}

.modal-contact-options {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eadfd4;
}

.modal-contact-options h4 {
font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  color: #2b2118;
  margin-bottom: 5px;
  font-weight: 600;
  margin-top: 10px;
}

.modal-social-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: .3s;
}

.social-btn i {
  font-size: 18px;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* MOBILE */

@media(max-width: 760px) {
  .cmh-schedule-section {
    padding: 70px 6%;
  }

  .cmh-schedule-header h1 {
    font-size: 40px;
  }

  .cmh-schedule-header p {
    font-size: 16px;
  }

  .cmh-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .day-header {
    padding: 24px;
  }

  .day-header h3 {
    font-size: 34px;
  }

  .day-class {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 24px;
  }

  .class-info h4 {
    font-size: 21px;
  }

  .mini-book-btn {
    width: fit-content;
  }

  .class-modal-content {
    padding: 26px 22px;
  }

  .class-modal-content img {
    height: 220px;
  }

  .class-modal-content h2 {
    font-size: 30px;
  }

  .modal-social-buttons {
    grid-template-columns: 1fr;
  }
}
.cmh-social-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:20px;
}

.cmh-social-card{
    background:#fff;
    border:1px solid #eadfd4;
    border-radius:24px;
    padding:12px 30px;
    text-align:center;
    text-decoration:none;
    transition:.35s ease;
    color:#2b2118;
    box-shadow:0 10px 25px rgba(43,33,24,.04);
}

.cmh-social-card:hover{
    transform:translateY(-8px);
    border-color:#c77655;
    box-shadow:0 20px 40px rgba(43,33,24,.08);
}

.social-icon{
    width:60px;
    height:60px;
    margin:0 auto 10px;
    border-radius:50%;
    background:#f4ebe3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.social-icon i{
    font-size:38px;
    color:#c77655;
}

.cmh-social-card span{
    display:block;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#c77655;
    font-weight:700;
    margin-bottom:12px;
}

.cmh-social-card h3{
    font-family: 'Open Sans', sans-serif;
    font-size:18px;
    font-weight:600;
    margin:0 0 10px;
    color:#2b2118;
}

.cmh-social-card p{
    margin:0;
    color:#6b5d52;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){

    .cmh-social-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .cmh-social-card{
        padding:30px 20px;
    }

    .social-icon{
        width:65px;
        height:65px;
    }

    .social-icon i{
        font-size:30px;
    }

    .cmh-social-card h3{
        font-size:22px;
    }

}