/* ============================================
   MASSEUSES PAGE — filter rail + grid
   ============================================ */

/* ---- Filter rail ---- */
.filter-rail {
  position: sticky;
  top: var(--header-h);
  z-index: var(--z-raised);
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-block: var(--sp-4);
}

@media (min-width: 769px) {
  .filter-rail { top: var(--header-h-md); }
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.filter-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.filter-form__label {
  font-size: 10px;
  font-weight: var(--weight-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.filter-form__select {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--text);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  cursor: pointer;
  appearance: none;
  padding-right: var(--sp-8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaaaaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  min-width: 150px;
  transition: border-color var(--duration) var(--ease);
}

.filter-form__select:focus-visible,
.filter-form__select:hover {
  border-color: var(--gold);
  outline: none;
}

/* ---- HTMX loading indicator ---- */
.masseuse-bento[aria-busy="true"] {
  opacity: 0.5;
  pointer-events: none;
}

/* ---- Contacts page ---- */
.contacts-page { padding-block: var(--sp-12); }

.contacts-info { margin-top: var(--sp-12); }

.contacts-info__card {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  max-width: 500px;
  box-shadow: var(--shadow-gold);
}

.contacts-info__card h2 {
  margin-bottom: var(--sp-6);
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.contacts-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.contacts-list a { transition: color var(--duration) var(--ease); }
.contacts-list a:hover { color: var(--gold-light); }

/* ---- Blog page ---- */
.blog-page { padding-block: var(--sp-12); }

.blog-featured {
  margin-bottom: var(--sp-8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.blog-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.blog-featured__link { display: block; }

.blog-featured__photo-wrap { aspect-ratio: 16/7; overflow: hidden; }
.blog-featured__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}
.blog-featured:hover .blog-featured__photo { transform: scale(1.03); }

.blog-featured__body { padding: var(--sp-6) var(--sp-8); }
.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  color: var(--gold-light);
  margin-bottom: var(--sp-3);
}
.blog-featured__excerpt { color: var(--text-muted); margin-bottom: var(--sp-4); max-width: unset; }
.blog-featured__read-more { color: var(--gold); font-size: var(--text-sm); font-weight: var(--weight-medium); }

/* ---- Blog list (horizontal cards) ---- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.blog-list-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.blog-list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(209,194,176,0.20);
}

.blog-list-card__link {
  display: flex;
  align-items: stretch;
  min-height: 120px;
}

.blog-list-card__photo-wrap {
  flex-shrink: 0;
  width: 200px;
  overflow: hidden;
}

.blog-list-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}

.blog-list-card:hover .blog-list-card__photo { transform: scale(1.04); }

.blog-list-card__body {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  justify-content: center;
}

.blog-list-card__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  color: var(--gold-light);
  line-height: var(--leading-tight);
}

.blog-list-card__excerpt {
  color: var(--text-muted);
  font-size: var(--text-sm);
  max-width: unset;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-card__date {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: auto;
}

@media (max-width: 560px) {
  .blog-list-card__link { flex-direction: column; }
  .blog-list-card__photo-wrap { width: 100%; height: 160px; }
}

/* Blog detail */
.blog-detail { padding-block: var(--sp-8) var(--sp-16); }
.blog-detail__hero { margin-bottom: var(--sp-8); border-radius: var(--radius-xl); overflow: hidden; }
.blog-detail__hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.blog-detail__header { margin-bottom: var(--sp-8); }
.blog-detail__title { font-family: var(--font-display); font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); color: var(--gold-light); margin-bottom: var(--sp-3); }
.blog-detail__date { color: var(--text-faint); font-size: var(--text-sm); }
.blog-detail__content { font-size: var(--text-md); }
.blog-related { margin-top: var(--sp-16); }

/* Schedule page */
.schedule-page { padding-block: var(--sp-8) var(--sp-16); }

/* Masseuse services + extras */
.masseuse-services, .masseuse-extras {
  padding-block: var(--sp-8);
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 500px;
}

.extras-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.extras-list__name { color: var(--text); font-size: var(--text-sm); }
.extras-list__price { color: var(--gold); font-weight: var(--weight-medium); font-size: var(--text-sm); white-space: nowrap; }
