/* ============ CSS VARIABLES ============ */
    :root {
      --bg: #0c0c0c;
      --bg2: #141414;
      --bg3: #1a1a1a;
      --pink: #ffb6c1;
      --pink-dark: #c44569;
      --pink-deep: #8b2e4a;
      --pink-muted: #d4a0a0;
      --ink: #f0e0e0;
      --ink-muted: #b8a0a0;
      --ink-dim: #6a5a5a;
      --border: rgba(255, 182, 193, 0.12);
      --border-strong: rgba(255, 182, 193, 0.25);
    }

    /* ============ RESET ============ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Noto Sans SC', 'M PLUS Rounded 1c', sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.7;
      overflow-x: hidden;
      padding-bottom: 80px;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    /* ============ QUILTED TEXTURE ============ */
    .quilted {
      background-color: var(--bg);
      background-image:
        repeating-linear-gradient(45deg, transparent, transparent 19px, rgba(255,182,193,0.018) 19px, rgba(255,182,193,0.018) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 19px, rgba(255,182,193,0.018) 19px, rgba(255,182,193,0.018) 20px);
    }

    /* ============ PEARL DECORATIONS ============ */
    .pearl {
      display: inline-block;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: radial-gradient(circle at 32% 28%, #ffffff, #f5efe8 35%, #e0d5c8 65%, #b8a898);
      box-shadow:
        inset -1.5px -1.5px 3px rgba(0,0,0,0.2),
        1px 1px 3px rgba(0,0,0,0.25);
      position: relative;
    }
    .pearl::after {
      content: '';
      position: absolute;
      top: 18%; left: 22%;
      width: 30%; height: 22%;
      border-radius: 50%;
      background: rgba(255,255,255,0.7);
      transform: rotate(-30deg);
    }
    .pearl-lg { width: 14px; height: 14px; }
    .pearl-sm { width: 7px; height: 7px; }

    /* ============ LEATHER TEXTURE ============ */
    .leather-border {
      border: 2px solid #2a1a1a;
      border-radius: 14px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 4px 20px rgba(0,0,0,0.35);
      position: relative;
    }
    .leather-border::before {
      content: '';
      position: absolute;
      inset: 3px;
      border: 1px dashed rgba(255,182,193,0.08);
      border-radius: 10px;
      pointer-events: none;
    }

    .leather-stitch {
      position: relative;
    }
    .leather-stitch::after {
      content: '';
      position: absolute;
      inset: 5px;
      border: 1px dashed rgba(255,182,193,0.12);
      border-radius: inherit;
      pointer-events: none;
    }

    /* ============ HEADER ============ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(18, 12, 12, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid #2a1a1a;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 4px 20px rgba(0,0,0,0.4);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
    .header-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }
    .header-logo .heart-icon {
      width: 28px; height: 28px;
      fill: var(--pink);
      filter: drop-shadow(0 0 6px rgba(255,182,193,0.4));
      flex-shrink: 0;
    }
    .header-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .header-logo .main {
      font-family: 'Noto Sans SC', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--pink);
      letter-spacing: 0.05em;
      white-space: nowrap;
    }
    .header-nav {
      display: flex;
      gap: 1.5rem;
      margin-left: auto;
    }
    .header-nav a {
      padding: 0.4rem 0.85rem;
      font-size: 0.9rem;
      color: var(--pink);
      border-radius: 20px;
      transition: all 0.3s;
      position: relative;
      white-space: nowrap;
    }
    .header-nav a:hover,
    .header-nav a.active,
    .header-nav a.active1 {
      color: var(--pink-dark);
      background: rgba(255, 182, 193, 0.15);
    }

  
    .header-nav a .en {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      opacity: 0.75;
      text-transform: uppercase;
    }
    .header-nav a .ja {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .mobile-menu-btn {
      display: none;
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--pink-dark), var(--pink-deep));
      border: 2px solid var(--pink);
      border-radius: 12px;
      cursor: pointer;
      color: #fff;
      font-size: 1.4rem;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(255,182,193,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
      transition: all 0.3s;
    }
    .mobile-menu-btn:hover {
      box-shadow: 0 0 20px rgba(255,182,193,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
      transform: scale(1.05);
    }
    .mobile-menu-btn.open {
      background: linear-gradient(135deg, var(--pink-deep), #5a1a2a);
    }
    .mobile-menu-btn.open .icon-bars { display: none; }
    .mobile-menu-btn.open .icon-close { display: block; }
    .mobile-menu-btn .icon-close { display: none; }

    /* ============ HERO SLIDER ============ */
    .hero-slider {
      position: relative;
      width: 100%;
      max-width: 1100px;
      aspect-ratio: 1368 / 768;
      overflow: hidden;
      margin: 80px auto 0;
      border-bottom: 3px solid #2a1a1a;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.8s ease;
    }
    .hero-slide.active {
      opacity: 1;
    }
    .hero-slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }
    .hero-slide .hero-pc { display: block; }
    .hero-slide .hero-sp { display: none; }

    /* ============ SECTION COMMON ============ */
    .section {
      padding: 4rem 1.5rem;
      position: relative;
    }
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .section-title .en {
      font-family: 'Reggae One', serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: #fff;
      display: block;
      margin-bottom: 0.25rem;
    }
    .section-title .en span {
      color: var(--pink);
    }
    .section-title .ja {
      font-size: 0.75rem;
      color: var(--ink-muted);
      letter-spacing: 0.2em;
    }
    .section-title .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      margin-top: 0.75rem;
    }
    .section-title .divider::before,
    .section-title .divider::after {
      content: '';
      width: 50px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--pink));
    }
    .section-title .divider::after {
      background: linear-gradient(90deg, var(--pink), transparent);
    }
    .section-title .divider svg {
      width: 14px; height: 14px;
      fill: var(--pink);
      opacity: 0.6;
    }
    .section-title .divider .pearl-divider {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ============ PICK UP ============ */
    .pickup-area .section-title { margin-bottom: 3rem; }
    .staff-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .staff-card {
      cursor: pointer;
      background: var(--bg2);
      border: 2px solid #2a1a1a;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s;
      position: relative;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 4px 20px rgba(0,0,0,0.3);
    }
    .staff-card:hover {
      border-color: rgba(255,182,193,0.2);
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(255, 182, 193, 0.08);
    }
    .staff-card .photo-wrap {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: linear-gradient(135deg, #1a0a14, #0c0c0c);
    }
    .staff-card .photo-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .staff-card .photo-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
      background: var(--pink-dark);
      color: #fff;
      font-size: 0.6rem;
      padding: 0.2rem 0.6rem;
      border-radius: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .staff-card .photo-corner {
      position: absolute;
      width: 20px; height: 20px;
      z-index: 3;
    }
    .staff-card .photo-corner.tl { top: 4px; left: 4px; border-top: 2px solid var(--pink); border-left: 2px solid var(--pink); }
    .staff-card .photo-corner.tr { top: 4px; right: 4px; border-top: 2px solid var(--pink); border-right: 2px solid var(--pink); }
    .staff-card .photo-corner.bl { bottom: 4px; left: 4px; border-bottom: 2px solid var(--pink); border-left: 2px solid var(--pink); }
    .staff-card .photo-corner.br { bottom: 4px; right: 4px; border-bottom: 2px solid var(--pink); border-right: 2px solid var(--pink); }
    .staff-info {
      padding: 1.25rem;
      text-align: center;
    }
    .staff-info .name {
      font-family: 'Reggae One', serif;
      font-size: 1.15rem;
      color: var(--pink);
      margin-bottom: 0.25rem;
    }
    .staff-info .age {
      font-size: 0.75rem;
      color: var(--pink-muted);
    }
    .staff-info .tag-row {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.6rem;
      flex-wrap: wrap;
    }
    .staff-info .tag-row span {
      font-size: 0.6rem;
      color: var(--pink-muted);
      border: 1px solid rgba(212,160,160,0.2);
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
    }

    /* ============ EVENT ============ */
    .event-area {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .event-banner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 2rem;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid #2a1a1a;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
      position: relative;
    }
    .event-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ============ SYSTEM ============ */
    .system-area {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    /* ============ NEWS ============ */
    .news-area {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }
    .news-list {
      max-width: 800px;
      margin: 0 auto;
      max-height: 520px;
      overflow-y: auto;
      padding-right: 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,182,193,0.3) transparent;
    }
    .news-list::-webkit-scrollbar {
      width: 5px;
    }
    .news-list::-webkit-scrollbar-track {
      background: transparent;
    }
    .news-list::-webkit-scrollbar-thumb {
      background: rgba(255,182,193,0.3);
      border-radius: 10px;
    }
    .news-list::-webkit-scrollbar-thumb:hover {
      background: rgba(255,182,193,0.5);
    }
    .news-item {
      display: flex;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .news-item:last-child {
      border-bottom: none;
    }
    .news-date {
      flex-shrink: 0;
      width: 80px;
      text-align: center;
    }
    .news-date .day {
      font-family: 'Reggae One', serif;
      font-size: 1.6rem;
      color: var(--pink);
      line-height: 1;
      text-shadow: 0 0 12px rgba(255,182,193,0.4);
    }
    .news-date .month-year {
      font-size: 0.7rem;
      color: var(--pink-muted);
      letter-spacing: 0.1em;
      font-weight: 600;
    }
    .news-date .label {
      display: inline-block;
      margin-top: 0.4rem;
      font-size: 0.6rem;
      color: #fff;
      background: var(--pink-dark);
      padding: 0.15rem 0.5rem;
      border-radius: 4px;
      font-weight: 700;
    }
    .news-body {
      flex: 1;
    }
    .news-body h3 {
      font-size: 1rem;
      color: #fff;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .news-body h3 .heart-inline {
      color: var(--pink);
      margin-right: 0.3rem;
    }
    .news-body p {
      font-size: 0.82rem;
      color: var(--ink-muted);
      line-height: 1.8;
    }

    /* ============ CONCEPT ============ */
    .concept-content {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* ============ FOOTER NAV ============ */
    .footer-nav-area {
      background: var(--bg3);
      border-top: 1px solid var(--border);
      padding: 1.5rem;
    }
    .footer-nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .footer-nav-inner a {
      font-size: 0.85rem;
      color: var(--pink);
      padding: 0.4rem 0.7rem;
      transition: color 0.3s;
      font-weight: 600;
    }
    .footer-nav-inner a:hover {
      color: var(--pink-dark);
    }

    /* ============ ACCESS ============ */
    .access-area {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }
    .access-content {
      max-width: 700px;
      margin: 0 auto;
    }
    .access-info {
      padding: 2rem;
      background: var(--bg);
    }
    .access-row {
      display: flex;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px dashed rgba(255,182,193,0.1);
      align-items: center;
    }
    .access-row:last-of-type {
      border-bottom: none;
    }
    .access-label {
      flex-shrink: 0;
      width: 90px;
      font-size: 0.8rem;
      color: var(--pink);
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .access-value {
      font-size: 0.9rem;
      color: var(--ink);
    }
    .access-value a {
      color: var(--pink);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .access-map {
      margin-top: 1.5rem;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid #2a1a1a;
    }
    .access-map iframe {
      display: block;
      filter: grayscale(0.6) contrast(1.1);
    }

    /* ============ RECRUIT ============ */
    .recruit-area {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }
    .recruit-table {
      max-width: 760px;
      margin: 0 auto;
      background: var(--bg);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 8px 30px rgba(0,0,0,0.35);
    }
    .recruit-row {
      display: flex;
      border-bottom: 1px solid rgba(255,182,193,0.08);
      transition: background 0.3s;
    }
    .recruit-row:last-child {
      border-bottom: none;
    }
    .recruit-row:hover {
      background: rgba(255,182,193,0.03);
    }
    .recruit-row .label {
      flex: 0 0 130px;
      padding: 1.1rem 1rem;
      font-family: 'Reggae One', serif;
      font-size: 0.95rem;
      color: var(--pink);
      letter-spacing: 0.05em;
      border-right: 1px solid rgba(255,182,193,0.08);
      display: flex;
      align-items: flex-start;
      gap: 0.35rem;
      background: rgba(255,182,193,0.02);
    }
    .recruit-row .label::before {
      content: '♡';
      font-size: 0.7rem;
      color: var(--pink-dark);
      margin-top: 0.15rem;
    }
    .recruit-row .content {
      flex: 1;
      padding: 1.1rem 1.25rem;
    }
    .recruit-row .content p {
      font-size: 0.85rem;
      color: var(--ink-muted);
      line-height: 1.9;
      margin: 0;
    }
    .recruit-row .content p + p {
      margin-top: 0.3rem;
    }
    .recruit-contact {
      max-width: 500px;
      margin: 2.5rem auto 0;
      text-align: center;
    }
    .recruit-contact p {
      font-size: 0.9rem;
      color: var(--ink-muted);
      margin-bottom: 1rem;
    }

    /* ============ CONTACT ============ */
    .contact-area {
      padding: 3rem 1.5rem;
      text-align: center;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .contact-phone {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'Reggae One', serif;
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      color: var(--pink);
      border: 2px solid #2a1a1a;
      padding: 0.8rem 2.5rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      transition: all 0.3s;
      background: linear-gradient(135deg, rgba(42,26,26,0.4), rgba(20,16,16,0.6));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 4px 15px rgba(0,0,0,0.3);
      position: relative;
    }
    .contact-phone::before {
      content: '';
      position: absolute;
      inset: 4px;
      border: 1px dashed rgba(255,182,193,0.1);
      border-radius: 46px;
      pointer-events: none;
    }
    .contact-phone:hover {
      background: rgba(255, 182, 193, 0.08);
      border-color: var(--pink);
      box-shadow: 0 0 20px rgba(255,182,193,0.1);
    }
    .contact-phone svg {
      width: 22px; height: 22px;
      fill: var(--pink);
    }
    .contact-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .contact-links a {
      font-size: 0.78rem;
      color: var(--ink-dim);
      padding: 0.4rem 1rem;
      transition: all 0.3s;
    }
    .contact-links a:hover {
      color: var(--pink);
      border-color: var(--pink);
    }

    /* ============ FOOTER ============ */
    .site-footer {
      padding: 2rem 1.5rem;
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .site-footer p {
      font-size: 0.75rem;
      color: var(--pink);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    .site-footer .warning {
      color: rgba(255, 140, 140, 0.85);
      font-size: 0.7rem;
    }

    /* ============ THERAPIST DETAIL MODAL ============ */
    .therapist-modal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 10010;
      background: rgba(0,0,0,0.92);
      display: none;
      align-items: flex-start;
      justify-content: center;
      overflow-y: auto;
      padding: 2rem 1rem;
    }
    .therapist-modal.active {
      display: flex;
    }
    .therapist-modal-inner {
      width: 100%;
      max-width: 700px;
      background: var(--bg);
      border: 2px solid #2a1a1a;
      border-radius: 20px;
      overflow: hidden;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 20px 60px rgba(0,0,0,0.6),
        0 0 50px rgba(255,182,193,0.08);
      position: relative;
    }
    .therapist-modal-inner::before {
      content: '';
      position: absolute;
      inset: 5px;
      border: 1px dashed rgba(255,182,193,0.08);
      border-radius: 16px;
      pointer-events: none;
      z-index: 2;
    }
    .therapist-modal-close {
      position: absolute;
      top: 14px; right: 14px;
      width: 38px; height: 38px;
      background: rgba(196,69,105,0.8);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .therapist-modal-close:hover {
      background: rgba(196,69,105,1);
      transform: rotate(90deg);
    }
    .therapist-detail-photo {
      width: 320px;
      max-width: 85%;
      height: 480px;
      margin: 1.5rem auto 0;
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      border: 1px solid var(--border-strong);
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    }
    .therapist-detail-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .therapist-detail-thumbs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin: 0.75rem auto 0;
      max-width: 320px;
    }
    .therapist-detail-thumbs img {
      width: 90px;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .therapist-detail-thumbs img:hover {
      border-color: var(--pink);
    }
    .therapist-detail-info {
      padding: 1.5rem 2rem 2rem;
      position: relative;
      z-index: 1;
    }
    .therapist-detail-name {
      font-family: 'Reggae One', serif;
      font-size: 1.8rem;
      color: var(--pink);
      margin-bottom: 0.25rem;
    }
    .therapist-detail-age {
      font-size: 0.95rem;
      color: var(--ink-muted);
      margin-bottom: 1.25rem;
    }
    .therapist-detail-stats {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .stat-item {
      background: var(--bg2);
      border: 1px solid #2a1a1a;
      border-radius: 12px;
      padding: 0.85rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .stat-item .stat-label {
      font-size: 0.75rem;
      color: #e8c8c8;
      letter-spacing: 0.05em;
    }
    .stat-item .stat-value {
      font-family: 'Reggae One', serif;
      font-size: 1rem;
      color: #fff;
    }
    .therapist-detail-intro {
      background: var(--bg2);
      border: 1px dashed rgba(255,182,193,0.1);
      border-radius: 12px;
      padding: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .therapist-detail-intro h4 {
      font-size: 0.8rem;
      color: var(--pink);
      margin-bottom: 0.5rem;
      letter-spacing: 0.05em;
    }
    .therapist-detail-intro p {
      font-size: 0.85rem;
      color: var(--ink-muted);
      line-height: 1.8;
    }
    .therapist-detail-pearls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
    }
    .therapist-detail-btn {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
    }
    .therapist-detail-btn a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: rgba(255,182,193,0.1);
      border: 1px solid rgba(255,182,193,0.2);
      border-radius: 25px;
      font-size: 0.85rem;
      color: var(--pink);
      transition: all 0.3s;
    }
    .therapist-detail-btn a:hover {
      background: rgba(255,182,193,0.15);
      border-color: var(--pink-dark);
    }

    /* ============ FIXED BOTTOM BAR ============ */
    .fixed-bottom {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 999;
      display: flex;
      height: 60px;
      background: rgba(18, 12, 12, 0.98);
      backdrop-filter: blur(10px);
      border-top: 2px solid var(--pink-dark);
      box-shadow:
        inset 0 1px 0 rgba(255,182,193,0.08),
        0 -4px 20px rgba(196,69,105,0.15);
    }
    .fixed-bottom a {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      font-size: 0.85rem;
      color: var(--pink);
      font-weight: 700;
      letter-spacing: 0.03em;
      transition: all 0.3s;
      position: relative;
      text-shadow: 0 0 8px rgba(255,182,193,0.3);
    }
    .fixed-bottom a:first-child {
      border-right: 1px solid rgba(255,182,193,0.2);
    }
    .fixed-bottom a:hover {
      background: rgba(255, 182, 193, 0.15);
      color: #fff;
    }
    .fixed-bottom a svg {
      width: 20px; height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      filter: drop-shadow(0 0 4px rgba(255,182,193,0.4));
    }

    /* ============ DECORATIVE HEARTS FLOATING ============ */
    .floating-hearts {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .floating-hearts span {
      position: absolute;
      color: var(--pink);
      opacity: 0;
      animation: floatHeart 5s ease-in-out infinite;
      filter: drop-shadow(0 0 8px rgba(255,182,193,0.6));
    }
    .floating-hearts span:nth-child(1) { left: 10%; top: 20%; font-size: 1.4rem; animation-delay: 0s; }
    .floating-hearts span:nth-child(2) { left: 80%; top: 35%; font-size: 2rem; animation-delay: 1.2s; }
    .floating-hearts span:nth-child(3) { left: 30%; top: 65%; font-size: 1rem; animation-delay: 2.5s; }
    .floating-hearts span:nth-child(4) { left: 70%; top: 10%; font-size: 1.6rem; animation-delay: 3.8s; }
    .floating-hearts span:nth-child(5) { left: 50%; top: 50%; font-size: 0.9rem; animation-delay: 1.8s; }
    .floating-hearts span:nth-child(6) { left: 20%; top: 80%; font-size: 1.8rem; animation-delay: 4.5s; }
    .floating-hearts span:nth-child(7) { left: 90%; top: 70%; font-size: 1.2rem; animation-delay: 3s; }
    .floating-hearts span:nth-child(8) { left: 55%; top: 15%; font-size: 1.5rem; animation-delay: 0.6s; }
    @keyframes floatHeart {
      0% { opacity: 0; transform: translateY(0) scale(0.3) rotate(0deg); }
      25% { opacity: 0.6; }
      50% { opacity: 0.35; transform: translateY(-40px) scale(1.1) rotate(10deg); }
      75% { opacity: 0.5; }
      100% { opacity: 0; transform: translateY(-90px) scale(1.3) rotate(-5deg); }
    }

    /* ============ FLOATING PEARLS ============ */
    .floating-pearls {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .floating-pearls .pearl-dot {
      position: absolute;
      opacity: 0;
      animation: floatPearl 7s ease-in-out infinite;
    }
    .floating-pearls .pearl-dot:nth-child(1) { left: 12%; top: 15%; animation-delay: 0s; }
    .floating-pearls .pearl-dot:nth-child(2) { left: 75%; top: 25%; animation-delay: 1.5s; }
    .floating-pearls .pearl-dot:nth-child(3) { left: 25%; top: 60%; animation-delay: 3s; }
    .floating-pearls .pearl-dot:nth-child(4) { left: 65%; top: 75%; animation-delay: 1s; }
    .floating-pearls .pearl-dot:nth-child(5) { left: 42%; top: 35%; animation-delay: 4.5s; }
    .floating-pearls .pearl-dot:nth-child(6) { left: 85%; top: 55%; animation-delay: 2.5s; }
    .floating-pearls .pearl-dot:nth-child(7) { left: 5%; top: 80%; animation-delay: 5.5s; }
    .floating-pearls .pearl-dot:nth-child(8) { left: 55%; top: 10%; animation-delay: 3.5s; }
    @keyframes floatPearl {
      0% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
      20% { opacity: 0.7; }
      50% { opacity: 0.35; transform: translateY(-30px) rotate(90deg) scale(1); }
      80% { opacity: 0.55; }
      100% { opacity: 0; transform: translateY(-90px) rotate(200deg) scale(1.2); }
    }

    /* ============ FLOATING SPARKLES ============ */
    .floating-sparkles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .floating-sparkles .sparkle {
      position: absolute;
      opacity: 0;
      animation: floatSparkle 4s ease-in-out infinite;
    }
    .floating-sparkles .sparkle:nth-child(1) { left: 8%; top: 30%; animation-delay: 0s; }
    .floating-sparkles .sparkle:nth-child(2) { left: 82%; top: 20%; animation-delay: 1s; }
    .floating-sparkles .sparkle:nth-child(3) { left: 35%; top: 75%; animation-delay: 2s; }
    .floating-sparkles .sparkle:nth-child(4) { left: 60%; top: 40%; animation-delay: 0.7s; }
    .floating-sparkles .sparkle:nth-child(5) { left: 15%; top: 55%; animation-delay: 3s; }
    .floating-sparkles .sparkle:nth-child(6) { left: 90%; top: 65%; animation-delay: 1.8s; }
    .floating-sparkles .sparkle:nth-child(7) { left: 45%; top: 85%; animation-delay: 2.5s; }
    .floating-sparkles .sparkle:nth-child(8) { left: 72%; top: 5%; animation-delay: 3.5s; }
    @keyframes floatSparkle {
      0% { opacity: 0; transform: scale(0) rotate(0deg); }
      30% { opacity: 0.8; transform: scale(1) rotate(45deg); }
      60% { opacity: 0.3; }
      100% { opacity: 0; transform: scale(0.3) rotate(90deg); }
    }

/* ============ SWIPER PICKUP ============ */
.pickup-swiper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #2a1a1a;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.pickup-swiper .swiper-slide {
  height: auto;
}
.pickup-swiper .swiper-slide .staff-card {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.pickup-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.pickup-swiper .swiper-pagination-bullet-active {
  background: var(--pink);
  box-shadow: 0 0 10px rgba(255,182,193,0.5);
}
.pickup-swiper .swiper-button-next,
.pickup-swiper .swiper-button-prev {
  color: var(--pink);
  background: rgba(12,12,12,0.6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,182,193,0.15);
}
.pickup-swiper .swiper-button-next:after,
.pickup-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
}

/* ============ THERAPIST AREA ============ */
.therapist-area {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ============ SYSTEM IMAGE ============ */
.system-image-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #2a1a1a;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.system-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ ROOM GALLERY ============ */
.room-area {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.room-item {
  background: var(--bg2);
  border: 2px solid #2a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.4s;
}
.room-item:hover {
  border-color: rgba(255,182,193,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 182, 193, 0.08);
}
.room-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

