/* ============================================
   Beauty LP - Page-Specific Styles
   Shonai Private Clinic (/beauty/)
   Premium Design with Hero Slider & Animations
   ============================================ */

/* --- Beauty Theme Overrides --- */
.hp-beauty-page {
  --hp-beauty: #d8742f;
  --hp-beauty-light: #f0a156;
  --hp-beauty-gradient: linear-gradient(135deg, #d8742f 0%, #ef9a4d 62%, #2d8c46 140%);
  --beauty-primary: var(--hp-beauty);
  --beauty-primary-light: var(--hp-beauty-light);
  --beauty-primary-rgb: 216, 116, 47;
  --beauty-secondary-rgb: 45, 140, 70;
  --beauty-gradient: var(--hp-beauty-gradient);
  --beauty-bg: #fff7ef;
  --beauty-gold: #bb7b2c;
  --beauty-gold-light: #d99b50;
  --beauty-rose: #c77f57;
  --beauty-rose-light: #f0bb98;
  --beauty-cream: #fff8f2;
  --beauty-sage: #edf5ef;
  --beauty-border: rgba(var(--beauty-primary-rgb), 0.14);
}

.hp-beauty-content {
  overflow-x: clip;
}

/* ============================================
   Hero v2 — Compact split: white panel left + photo right
   ============================================ */
.hp-beauty-hero--v2 {
  position: relative;
  overflow: hidden;
  min-height: auto;
}

/* --- Background photo: bright and clear, no overlay --- */
.hp-beauty-hero__bg {
  position: absolute;
  inset: 0;
}

.hp-beauty-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* --- Content wrapper --- */
.hp-beauty-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  min-height: auto;
}

/* --- White semi-transparent panel (left side) --- */
.hp-beauty-hero__panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 36px;
  max-width: 440px;
  width: 45%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Label pill --- */
.hp-beauty-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 12px;
  padding: 5px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  width: fit-content;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.3s forwards;
}

/* --- Clinic name heading --- */
.hp-beauty-hero__name {
  font-family: var(--hp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.5s forwards;
}

@media (min-width: 768px) {
  .hp-beauty-hero__name { font-size: 34px; }
}

/* --- Decorative line --- */
.hp-beauty-hero__line {
  width: 50px;
  height: 2px;
  background: var(--hp-beauty, #d8742f);
  border: none;
  margin: 0 0 16px;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.6s forwards;
}

/* --- Tagline --- */
.hp-beauty-hero__tagline {
  font-family: var(--hp-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.7s forwards;
}

@media (min-width: 768px) {
  .hp-beauty-hero__tagline { font-size: 20px; }
}

/* --- Description --- */
.hp-beauty-hero__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.9s forwards;
}

@media (max-width: 767px) {
  .hp-beauty-hero__br-pc { display: none; }
}

/* --- Action buttons --- */
.hp-beauty-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 1.1s forwards;
}

@media (min-width: 768px) {
  .hp-beauty-hero__actions { flex-direction: row; gap: 12px; }
}

.hp-beauty-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hp-beauty-hero__btn--line {
  background: #06c755;
  color: #ffffff;
  border: 2px solid #06c755;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.3);
}

.hp-beauty-hero__btn--line:hover {
  background: #05b34c;
  color: #ffffff;
  transform: translateY(-2px);
}

.hp-beauty-hero__btn--tel {
  background: transparent;
  color: #444;
  border: 2px solid rgba(0, 0, 0, 0.25);
}

.hp-beauty-hero__btn--tel:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #222;
  border-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* --- Mobile: stack vertically (photo top, panel below) --- */
@media (max-width: 767px) {
  .hp-beauty-hero--v2 {
    display: flex;
    flex-direction: column;
  }

  .hp-beauty-hero__bg {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 9;
    width: 100%;
    flex-shrink: 0;
  }

  .hp-beauty-hero__content {
    position: relative;
    display: block;
  }

  .hp-beauty-hero__panel {
    width: 100%;
    max-width: none;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 28px 20px 32px;
  }
}

/* Legacy hero styles for backward compat */
.hp-beauty-hero:not(.hp-beauty-hero--v2) {
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
}

.hp-beauty-hero__slides {
  position: absolute;
  inset: 0;
}

.hp-beauty-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}

.hp-beauty-hero__slide.is-active {
  opacity: 1;
}

.hp-beauty-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider dots */
.hp-beauty-hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hp-beauty-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hp-beauty-hero__dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Hero inner content (legacy slider hero only) */
.hp-beauty-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hp-beauty-hero__clinic-label {
  display: inline-block;
  font-size: var(--hp-font-size-xs);
  font-weight: var(--hp-font-weight-medium);
  color: #ffffff;
  letter-spacing: 0.2em;
  margin-bottom: var(--hp-space-lg);
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--hp-radius-full);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.3s forwards;
}

.hp-beauty-hero__clinic-name {
  font-family: var(--hp-font-heading);
  font-size: var(--hp-font-size-2xl);
  font-weight: var(--hp-font-weight-bold);
  color: #ffffff;
  margin-bottom: var(--hp-space-sm);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.5s forwards;
}

.hp-beauty-hero__divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto var(--hp-space-lg);
  border: none;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.6s forwards;
}

.hp-beauty-hero:not(.hp-beauty-hero--v2) .hp-beauty-hero__tagline {
  font-family: var(--hp-font-heading);
  font-size: var(--hp-font-size-xl);
  font-weight: var(--hp-font-weight-bold);
  color: #ffffff;
  line-height: var(--hp-line-height-heading);
  margin-bottom: var(--hp-space-md);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.7s forwards;
}

.hp-beauty-hero__sub {
  font-size: var(--hp-font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--hp-space-xl);
  line-height: 1.9;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 0.9s forwards;
}

.hp-beauty-hero__cta {
  display: flex;
  justify-content: center;
  gap: var(--hp-space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: hp-beauty-fadeUp 0.8s ease 1.1s forwards;
}

/* Hero button overrides for glass effect */
.hp-beauty-hero .hp-btn--white {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hp-beauty-hero .hp-btn--white:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hp-beauty-hero .hp-btn--line {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hp-beauty-hero .hp-btn--line:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   Scroll Animations (hp-animate system)
   ============================================ */
@keyframes hp-beauty-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hp-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-animate--delay-1 { transition-delay: 0.1s; }
.hp-animate--delay-2 { transition-delay: 0.2s; }
.hp-animate--delay-3 { transition-delay: 0.3s; }
.hp-animate--delay-4 { transition-delay: 0.4s; }

/* Respect reduced-motion preference — show content immediately */
@media (prefers-reduced-motion: reduce) {
  .hp-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Empathy / Concern Section
   ============================================ */
.hp-beauty-empathy {
  background-color: var(--beauty-cream);
}

.hp-beauty-empathy .hp-section__title {
  color: var(--hp-beauty);
}

.hp-beauty-empathy .hp-concerns__item {
  border-left-color: var(--hp-beauty);
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-beauty-empathy .hp-concerns__item:hover {
  transform: translateX(4px);
  box-shadow: var(--hp-shadow-sm);
}

.hp-beauty-empathy .hp-concerns__item::before {
  color: var(--hp-beauty);
}

/* ============================================
   Menu Cards with Images
   ============================================ */
.hp-beauty-menu .hp-section__title {
  color: var(--hp-beauty);
}

.hp-menu-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-space-lg);
}

.hp-menu-card {
  background-color: #ffffff;
  border-radius: var(--hp-radius-xl);
  box-shadow: var(--hp-shadow-sm);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--beauty-border);
}

.hp-menu-card:hover {
  box-shadow: var(--hp-shadow-lg);
  transform: translateY(-6px);
}

.hp-menu-card__badge {
  position: absolute;
  top: var(--hp-space-md);
  right: var(--hp-space-md);
  z-index: 2;
}

/* Menu card image wrap with zoom on hover */
.hp-menu-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--hp-bg-light);
}

.hp-menu-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-menu-card:hover .hp-menu-card__img-wrap img {
  transform: scale(1.06);
}

.hp-menu-card__body {
  padding: var(--hp-space-xl) var(--hp-space-lg) var(--hp-space-2xl);
}

.hp-menu-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--hp-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beauty-cream) 0%, var(--beauty-sage) 100%);
  border-radius: var(--hp-radius-full);
}

.hp-menu-card__icon svg {
  width: 36px;
  height: 36px;
}

.hp-menu-card__title {
  font-family: var(--hp-font-heading);
  font-size: var(--hp-font-size-lg);
  font-weight: var(--hp-font-weight-bold);
  color: var(--hp-text);
  margin-bottom: var(--hp-space-sm);
}

.hp-menu-card__desc {
  font-size: var(--hp-font-size-sm);
  color: var(--hp-text-light);
  line-height: var(--hp-line-height);
  margin-bottom: var(--hp-space-lg);
}

.hp-menu-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--hp-space-xs);
  margin-bottom: var(--hp-space-lg);
}

.hp-menu-card__tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: var(--hp-font-size-xs);
  color: var(--hp-beauty);
  background-color: rgba(var(--beauty-primary-rgb), 0.1);
  border-radius: var(--hp-radius-full);
  transition: all 0.3s ease;
}

.hp-menu-card__tag:hover {
  background-color: rgba(var(--beauty-primary-rgb), 0.18);
}

/* Text-only menu cards (no placeholder images) */
.hp-menu-card--text-only {
  text-align: left;
}

.hp-menu-card--text-only .hp-menu-card__body {
  padding: var(--hp-space-xl) var(--hp-space-lg);
}

.hp-menu-card--text-only .hp-menu-card__title {
  font-size: var(--hp-font-size-xl, 20px);
  margin-bottom: var(--hp-space-md);
  padding-bottom: var(--hp-space-md);
  border-bottom: 2px solid rgba(var(--beauty-primary-rgb), 0.15);
}

.hp-menu-card--text-only .hp-menu-card__tags {
  justify-content: flex-start;
}

/* ============================================
   Why Choose Us
   ============================================ */
.hp-beauty-reasons .hp-section__title {
  color: var(--hp-beauty);
}

.hp-reason-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-space-lg);
}

.hp-reason-card {
  display: flex;
  align-items: flex-start;
  gap: var(--hp-space-lg);
  padding: var(--hp-space-lg);
  background-color: #ffffff;
  border-radius: var(--hp-radius-lg);
  box-shadow: var(--hp-shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-reason-card:hover {
  box-shadow: var(--hp-shadow-md);
  transform: translateY(-4px);
}

.hp-reason-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--hp-beauty-gradient);
  color: #ffffff;
  font-family: var(--hp-font-heading);
  font-size: var(--hp-font-size-lg);
  font-weight: var(--hp-font-weight-bold);
  border-radius: var(--hp-radius-full);
}

.hp-reason-card__content {
  flex: 1;
}

.hp-reason-card__title {
  font-size: var(--hp-font-size-base);
  font-weight: var(--hp-font-weight-bold);
  color: var(--hp-text);
  margin-bottom: var(--hp-space-xs);
}

.hp-reason-card__text {
  font-size: var(--hp-font-size-sm);
  color: var(--hp-text-light);
  line-height: var(--hp-line-height);
}

/* ============================================
   Doctor Section
   ============================================ */
.hp-beauty-doctor {
  background-color: var(--beauty-sage);
}

.hp-beauty-doctor .hp-section__title {
  color: var(--hp-beauty);
}

.hp-beauty-doctor .hp-doctor__photo-placeholder,
.hp-beauty-doctor .hp-doctor__photo {
  width: 200px;
  min-width: 200px;
  aspect-ratio: 3 / 4;
}

.hp-beauty-doctor .hp-doctor__photo-placeholder {
  background: linear-gradient(135deg, var(--beauty-cream) 0%, #f7ecd9 100%);
  border-radius: var(--hp-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-text-muted);
  font-size: var(--hp-font-size-sm);
}

.hp-beauty-doctor .hp-doctor__credentials {
  list-style: none;
  margin-top: var(--hp-space-md);
}

.hp-beauty-doctor .hp-doctor__credentials li {
  font-size: var(--hp-font-size-sm);
  color: var(--hp-text-light);
  padding: var(--hp-space-xs) 0;
  padding-left: var(--hp-space-lg);
  position: relative;
}

.hp-beauty-doctor .hp-doctor__credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--hp-beauty-light);
}

/* ============================================
   Flow Section
   ============================================ */
.hp-beauty-flow .hp-section__title {
  color: var(--hp-beauty);
}

.hp-beauty-flow .hp-flow__num {
  background: var(--hp-beauty-gradient);
}

.hp-beauty-flow .hp-flow::before {
  background: linear-gradient(
    to bottom,
    var(--hp-beauty-light),
    var(--hp-border)
  );
}

.hp-beauty-flow .hp-flow__label {
  display: block;
  font-size: var(--hp-font-size-xs);
  color: var(--hp-beauty);
  font-weight: var(--hp-font-weight-bold);
  letter-spacing: 0.05em;
  margin-bottom: var(--hp-space-xs);
}

/* ============================================
   Price Table Section
   ============================================ */
.hp-beauty-price .hp-section__title {
  color: var(--hp-beauty);
}

.hp-beauty-price .hp-price-table {
  background-color: #ffffff;
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  box-shadow: var(--hp-shadow-sm);
}

.hp-beauty-price .hp-price-table thead th {
  background: var(--hp-beauty-gradient);
  color: #ffffff;
  font-weight: var(--hp-font-weight-bold);
}

.hp-beauty-price .hp-price-table td:last-child {
  color: var(--hp-beauty);
}

.hp-beauty-price .hp-price-note {
  font-size: var(--hp-font-size-xs);
  color: var(--hp-text-muted);
  margin-top: var(--hp-space-md);
  text-align: center;
}

/* ============================================
   Access Section
   ============================================ */
.hp-beauty-access .hp-section__title {
  color: var(--hp-beauty);
}

.hp-beauty-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-space-xl);
}

.hp-beauty-access__map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

.hp-beauty-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.hp-beauty-access__info {
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-md);
}

.hp-beauty-access__row {
  display: flex;
  gap: var(--hp-space-md);
  align-items: flex-start;
}

.hp-beauty-access__label {
  min-width: 100px;
  font-size: var(--hp-font-size-sm);
  font-weight: var(--hp-font-weight-bold);
  color: var(--hp-beauty);
}

.hp-beauty-access__value {
  font-size: var(--hp-font-size-sm);
  color: var(--hp-text);
  line-height: var(--hp-line-height);
}

.hp-beauty-network {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hp-space-lg);
  margin-top: var(--hp-space-2xl);
}

.hp-beauty-network__card {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 247, 240, 0.98) 100%);
  border: 1px solid rgba(176, 106, 50, 0.14);
  box-shadow: 0 22px 44px rgba(74, 41, 15, 0.08);
}

.hp-beauty-network__eyebrow {
  margin: 0 0 8px;
  color: rgba(var(--beauty-primary-rgb), 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hp-beauty-network__title {
  margin: 0 0 10px;
  color: #523317;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
}

.hp-beauty-network__text {
  margin: 0 0 18px;
  color: rgba(30, 24, 18, 0.82);
  font-size: 14px;
  line-height: 1.9;
}

/* ============================================
   FAQ Section
   ============================================ */
.hp-beauty-faq .hp-section__title {
  color: var(--hp-beauty);
}

.hp-beauty-faq .hp-faq__question::before {
  background-color: var(--hp-beauty);
}

/* ============================================
   LINE CTA Banner with Backdrop Effect
   ============================================ */
.hp-beauty-line-cta {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(var(--beauty-primary-rgb), 0.98) 0%,
    rgba(240, 161, 86, 0.98) 58%,
    rgba(var(--beauty-secondary-rgb), 0.98) 140%
  );
  text-align: center;
  padding: var(--hp-space-3xl) var(--hp-space-lg);
  color: #ffffff;
  overflow: hidden;
}

.hp-beauty-line-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hp-beauty-line-cta__title {
  position: relative;
  font-family: var(--hp-font-heading);
  font-size: var(--hp-font-size-2xl);
  font-weight: var(--hp-font-weight-bold);
  margin-bottom: var(--hp-space-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hp-beauty-line-cta__text {
  position: relative;
  font-size: var(--hp-font-size-md);
  opacity: 0.9;
  margin-bottom: var(--hp-space-lg);
  line-height: var(--hp-line-height);
}

.hp-beauty-line-cta__btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--hp-space-md);
  flex-wrap: wrap;
}

.hp-beauty-line-cta__id {
  position: relative;
  font-size: var(--hp-font-size-sm);
  opacity: 0.8;
  margin-top: var(--hp-space-md);
}

/* Glass-effect button in CTA */
.hp-beauty-line-cta .hp-btn--white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hp-beauty-line-cta .hp-btn--white:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ============================================
   Fixed CTA Bar beauty overrides
   ============================================ */
.hp-beauty-page .hp-fixed-cta {
  border-top: 2px solid var(--beauty-primary);
}

.hp-beauty-page .hp-fixed-cta__btn--reserve {
  background: var(--beauty-gradient);
}

.hp-beauty-page .hp-fixed-cta-spacer {
  display: block;
  height: 64px;
}

.hp-beauty-content svg[stroke="#8e44ad"] {
  stroke: var(--beauty-primary);
}

/* ============================================
   Responsive Overrides (Beauty-specific)
   ============================================ */

/* --- Small Tablet (>= 500px) --- */
@media (min-width: 500px) {
  .hp-menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-reason-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-beauty-hero__tagline {
    font-size: var(--hp-font-size-2xl);
  }
}

/* --- Tablet (>= 768px) --- */
@media (min-width: 768px) {
  .hp-beauty-hero {
    height: 80vh;
    min-height: 550px;
  }

  .hp-beauty-hero__clinic-name {
    font-size: var(--hp-font-size-3xl);
  }

  .hp-beauty-hero__tagline {
    font-size: var(--hp-font-size-3xl);
  }

  .hp-beauty-hero__sub {
    font-size: var(--hp-font-size-base);
  }

  .hp-menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-reason-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-beauty-access__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .hp-beauty-network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-beauty-doctor .hp-doctor__photo-placeholder,
  .hp-beauty-doctor .hp-doctor__photo {
    width: 200px;
    min-width: 200px;
  }

  .hp-beauty-line-cta__title {
    font-size: var(--hp-font-size-3xl);
  }

  .hp-beauty-page .hp-fixed-cta-spacer {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Price table: stack into card layout on mobile */
  .hp-beauty-price .hp-price-table {
    display: block;
  }

  .hp-beauty-price .hp-price-table thead {
    display: none;
  }

  .hp-beauty-price .hp-price-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hp-beauty-price .hp-price-table tr {
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    border-radius: 12px;
    border: 1px solid rgba(var(--beauty-primary-rgb), 0.14);
    background: #ffffff;
  }

  .hp-beauty-price .hp-price-table td {
    display: block;
    padding: 4px 0;
    border: none;
    text-align: left;
    font-size: 14px;
  }

  .hp-beauty-price .hp-price-table td:first-child {
    font-weight: 700;
    font-size: 15px;
    color: var(--hp-text);
    padding-bottom: 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(var(--beauty-primary-rgb), 0.14);
  }

  .hp-beauty-price .hp-price-table td:nth-child(2) {
    color: var(--hp-beauty);
    font-weight: 700;
  }

  .hp-beauty-price .hp-price-table td:last-child {
    color: #6b5a49;
    line-height: 1.7;
  }

  .hp-beauty-hero {
    height: auto;
    min-height: 460px;
    padding: 116px 0 72px;
  }

  .hp-beauty-hero__inner {
    justify-content: flex-end;
  }

  .hp-beauty-hero__clinic-label {
    margin-bottom: var(--hp-space-md);
  }

  .hp-beauty-hero__clinic-name {
    font-size: clamp(2rem, 8vw, 2.35rem);
  }

  .hp-beauty-hero__tagline {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
    line-height: 1.35;
  }

  .hp-beauty-hero__sub {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: var(--hp-space-lg);
  }

  .hp-beauty-hero__cta {
    width: 100%;
    gap: 12px;
  }

  .hp-beauty-hero__cta .hp-btn {
    width: min(100%, 320px);
  }

  .hp-menu-card__body {
    padding: var(--hp-space-lg) var(--hp-space-md) var(--hp-space-xl);
  }

  .hp-reason-card {
    flex-direction: column;
    text-align: center;
  }

  .hp-reason-card__num {
    margin: 0 auto;
  }

  .hp-beauty-access__row {
    flex-direction: column;
    gap: 6px;
  }

  .hp-beauty-network {
    grid-template-columns: 1fr;
  }

  .hp-beauty-network__card {
    border-radius: 22px;
  }

  .hp-beauty-access__label {
    min-width: 0;
  }

  .hp-beauty-line-cta {
    padding: var(--hp-space-2xl) var(--hp-space-md);
  }

  .hp-beauty-line-cta__text {
    font-size: var(--hp-font-size-base);
  }

  .hp-beauty-line-cta__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hp-beauty-line-cta__btns .hp-btn {
    width: 100%;
  }
}

/* --- Desktop (>= 900px) --- */
@media (min-width: 900px) {
  .hp-beauty-hero__clinic-name {
    font-size: var(--hp-font-size-4xl);
  }

  .hp-beauty-hero__tagline {
    font-size: var(--hp-font-size-3xl);
  }

  .hp-beauty-hero__sub {
    font-size: var(--hp-font-size-base);
  }

  .hp-menu-card__body {
    padding: var(--hp-space-2xl);
  }

  .hp-reason-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .hp-reason-card {
    flex-direction: column;
    text-align: center;
  }

  .hp-reason-card__num {
    margin: 0 auto;
  }
}

/* ============================================
   FINAL POLISH OVERRIDES
   ============================================ */
.hp-beauty-hero--static {
  position: relative;
  padding: 132px 0 84px;
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(233, 174, 98, 0.26) 0%, rgba(233, 174, 98, 0) 42%),
    linear-gradient(135deg, #fdf5ed 0%, #f8fbf6 56%, #f2f8f3 100%);
}

.hp-beauty-hero--static .hp-beauty-hero__inner {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 54px);
}

.hp-beauty-hero--static .hp-beauty-hero__copy {
  position: relative;
  z-index: 1;
}

.hp-beauty-hero--static .hp-beauty-hero__media {
  display: grid;
  align-items: center;
  gap: 18px;
}

.hp-beauty-hero__brand,
.hp-beauty-hero__portrait {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 46px rgba(86, 53, 23, 0.12);
}

.hp-beauty-hero__brand {
  width: min(440px, 100%);
  padding: 14px;
}

.hp-beauty-hero__brand img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.hp-beauty-hero__portrait {
  width: min(260px, 68%);
  justify-self: end;
  padding: 12px;
  background: linear-gradient(135deg, #fff 0%, #f4e8dc 100%);
  margin-top: -84px;
}

.hp-beauty-hero__portrait img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.hp-beauty-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 20px;
}

.hp-beauty-hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 116, 47, 0.18);
  color: #8a4b1f;
  font-size: 13px;
  font-weight: 700;
}

.hp-beauty-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hp-beauty-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(138, 75, 31, 0.12);
  box-shadow: 0 8px 24px rgba(86, 53, 23, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hp-beauty-gallery__item:hover {
  box-shadow: 0 12px 32px rgba(86, 53, 23, 0.14);
  transform: translateY(-3px);
}

.hp-beauty-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hp-beauty-gallery__item figcaption {
  padding: 16px 18px 18px;
  line-height: 1.75;
  color: #5f5247;
}

.hp-price-table {
  overflow: hidden;
  border-radius: 24px;
}

.hp-price-note {
  color: #6b5a49;
}

@media (min-width: 960px) {
  .hp-beauty-hero--static .hp-beauty-hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  }
}

@media (max-width: 767px) {
  .hp-beauty-hero--static {
    padding: 116px 0 72px;
  }

  .hp-beauty-hero__brand,
  .hp-beauty-hero__portrait {
    width: 100%;
    justify-self: stretch;
  }

  .hp-beauty-hero__portrait {
    margin-top: 0;
  }

  .hp-beauty-gallery__grid {
    grid-template-columns: 1fr;
  }
}
