* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #faf6f0;
  color: #5a4739;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #faf6f0; }
::-webkit-scrollbar-thumb { background: #e89c6f; border-radius: 4px; }

.icon-svg { width: 24px; height: 24px; }

/* Header */
.header {
  background: rgba(255, 252, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(164, 184, 157, 0.2);
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(216, 191, 176, 0.15);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e89c6f;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-buttons { display: flex; gap: 18px; }

.nav-btn {
  padding: 14px 32px;
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(168, 181, 143, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 240, 0.8));
  color: #5a4739;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(90, 71, 57, 0.06);
  text-decoration: none;
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(232, 156, 111, 0.2);
  border-color: rgba(232, 156, 111, 0.4);
}

.nav-btn.primary {
  background: linear-gradient(135deg, #e89c6f, #f5b485);
  color: white;
  border: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, rgba(250, 246, 240, 0) 0%, rgba(232, 156, 111, 0.05) 100%);
}

.hero h1 {
  font-size: 3.5rem;
  color: #e89c6f;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero .subtitle {
  font-size: 1.4rem;
  color: #a8b58f;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero p {
  font-size: 1.1rem;
  color: #8a7464;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #e89c6f, #f5b485);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 156, 111, 0.3);
}

/* Section Title */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.2rem; color: #e89c6f; margin-bottom: 0.5rem; font-weight: 600; }
.section-title p { color: #8a7464; font-size: 1.05rem; }

/* Services */
.services { padding: 60px 40px; max-width: 1400px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 252, 245, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(232, 156, 111, 0.2);
  transition: all 0.5s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(232, 156, 111, 0.15);
  border-color: rgba(168, 181, 143, 0.35);
}

.service-card.green { border-color: rgba(168, 181, 143, 0.3); }

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-icon.orange { background: rgba(232, 156, 111, 0.15); color: #e89c6f; }
.service-icon.green { background: rgba(168, 181, 143, 0.15); color: #a8b58f; }

.service-card h3 { font-size: 1.5rem; color: #e89c6f; margin-bottom: 8px; font-weight: 600; }
.service-card.green h3 { color: #a8b58f; }

.service-card .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-card .badge.orange { background: rgba(232, 156, 111, 0.15); color: #e89c6f; }
.service-card .badge.green { background: rgba(168, 181, 143, 0.15); color: #a8b58f; }
.service-card p { color: #8a7464; line-height: 1.7; }

/* Features */
.features { padding: 60px 40px; background: rgba(168, 181, 143, 0.05); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 252, 245, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(232, 156, 111, 0.15);
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(232, 156, 111, 0.12);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #e89c6f;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card p { color: #8a7464; line-height: 1.8; }

.feature-image { border-radius: 20px; overflow: hidden; height: 280px; }
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.feature-image:hover img { transform: scale(1.05); }

/* About */
.about { padding: 80px 40px; text-align: center; max-width: 900px; margin: 0 auto; }
.about h2 { font-size: 2.2rem; color: #e89c6f; margin-bottom: 2rem; font-weight: 600; }
.about p { color: #8a7464; font-size: 1.1rem; line-height: 2; margin-bottom: 1.5rem; }

/* Footer */
.footer { background: rgba(90, 71, 57, 0.05); padding: 50px 40px; text-align: center; }
.footer h3 { font-size: 1.5rem; color: #e89c6f; margin-bottom: 25px; font-weight: 600; }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-item { display: flex; align-items: center; gap: 10px; color: #5a4739; font-size: 1rem; }

.contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item .icon.green { background: rgba(168, 181, 143, 0.2); color: #a8b58f; }
.contact-item .icon.orange { background: rgba(232, 156, 111, 0.2); color: #e89c6f; }
.footer .copyright { color: #8a7464; font-size: 0.9rem; margin-top: 20px; }

/* Floating Contact */
.floating-contact { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }

.floating-btn {
  width: auto;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e89c6f, #f5b485);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(232, 156, 111, 0.4);
  transition: all 0.3s;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 156, 111, 0.5);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(90, 71, 57, 0.85);
  backdrop-filter: blur(15px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

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

.modal-content {
  background: rgba(255, 252, 245, 0.98);
  border-radius: 25px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.modal-header h3 { font-size: 1.5rem; color: #e89c6f; font-weight: 600; }

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #8a7464;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}
.modal-close:hover { color: #5a4739; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.contact-row.green { background: rgba(168, 181, 143, 0.1); border: 1px solid rgba(168, 181, 143, 0.2); }
.contact-row.orange { background: rgba(232, 156, 111, 0.1); border: 1px solid rgba(232, 156, 111, 0.2); }

.contact-row .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-row .icon-circle.green { background: rgba(168, 181, 143, 0.2); color: #a8b58f; }
.contact-row .icon-circle.orange { background: rgba(232, 156, 111, 0.2); color: #e89c6f; }

.contact-row .info label { display: block; color: #5a4739; font-weight: 500; margin-bottom: 2px; }
.contact-row .info span { color: #e89c6f; font-weight: 600; font-size: 1.1rem; }
.contact-row .info small { display: block; color: #8a7464; font-size: 0.85rem; }

/* Service Detail Page */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5a4739;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.back-btn:hover { color: #e89c6f; }

.page-header { text-align: center; margin-bottom: 40px; }
.page-header h1 { font-size: 2.5rem; color: #e89c6f; margin-bottom: 10px; }
.page-header .subtitle { font-size: 1.2rem; color: #a8b58f; margin-bottom: 8px; }
.page-header p { color: #8a7464; max-width: 600px; margin: 0 auto; }

.pricing-section {
  background: rgba(255, 252, 245, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(232, 156, 111, 0.2);
}

.pricing-section h2 {
  font-size: 1.6rem;
  color: #e89c6f;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.pricing-card {
  background: rgba(255, 254, 249, 0.9);
  border-radius: 15px;
  padding: 25px;
}

.pricing-card label { color: #8a7464; font-size: 0.95rem; }
.pricing-card .price { font-size: 2rem; font-weight: 600; margin: 8px 0; }
.pricing-card .price.orange { color: #e89c6f; }
.pricing-card .price.green { color: #a8b58f; }
.pricing-card small { color: #8a7464; font-size: 0.9rem; }

/* MBTI Filter */
.filter-section { margin-bottom: 30px; }

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.filter-header h2 {
  font-size: 1.6rem;
  color: #e89c6f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 15px;
  background: rgba(255, 252, 245, 0.85);
  border: 1px solid rgba(168, 181, 143, 0.2);
  color: #5a4739;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.info-btn:hover { background: rgba(255, 254, 249, 0.95); border-color: rgba(168, 181, 143, 0.4); }

.mbti-info {
  display: none;
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.95), rgba(255, 254, 249, 0.9));
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(168, 181, 143, 0.2);
}

.mbti-info.active { display: block; }
.mbti-info h3 { font-size: 1.3rem; color: #e89c6f; margin-bottom: 20px; }

.mbti-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }

.mbti-card {
  background: rgba(255, 254, 249, 0.8);
  border-radius: 15px;
  padding: 25px;
}

.mbti-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.mbti-card h4.green { color: #a8b58f; }
.mbti-card h4.orange { color: #e89c6f; }
.mbti-card p { color: #8a7464; margin-bottom: 12px; line-height: 1.7; }
.mbti-card ul { list-style: none; }
.mbti-card li { color: #8a7464; padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.mbti-card li .dot { margin-top: 6px; }
.mbti-card li .dot.green { color: #a8b58f; }
.mbti-card li .dot.orange { color: #e89c6f; }

.filter-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.filter-btn {
  padding: 12px 24px;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(168, 181, 143, 0.2);
  background: rgba(255, 252, 245, 0.85);
  color: #5a4739;
}

.filter-btn:hover { border-color: rgba(168, 181, 143, 0.4); }

.filter-btn.active.orange {
  background: linear-gradient(135deg, #e89c6f, #f5b485);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(232, 156, 111, 0.3);
}

.filter-btn.active.green {
  background: linear-gradient(135deg, #a8b58f, #b8c5a0);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(168, 181, 143, 0.3);
}

/* Companion Grid */
.companions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.companion-card {
  background: rgba(255, 252, 245, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 156, 111, 0.2);
  transition: all 0.5s;
}

.companion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(232, 156, 111, 0.15);
  border-color: rgba(168, 181, 143, 0.35);
}

.companion-avatar {
  aspect-ratio: 1;
  background: #e5d9c8;
  overflow: hidden;
}

.companion-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companion-info { padding: 25px; }

.companion-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.companion-name { font-size: 1.4rem; color: #e89c6f; font-weight: 600; }

.mbti-badge {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.mbti-badge.E { background: rgba(168, 181, 143, 0.2); color: #a8b58f; }
.mbti-badge.I { background: rgba(232, 156, 111, 0.2); color: #e89c6f; }

.companion-age { color: #8a7464; font-size: 0.95rem; margin-bottom: 10px; }
.companion-desc { color: #8a7464; line-height: 1.7; margin-bottom: 15px; }

.companion-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.tag {
  padding: 6px 14px;
  background: rgba(255, 254, 249, 0.9);
  border-radius: 10px;
  color: #8a7464;
  font-size: 0.85rem;
  border: 1px solid rgba(232, 156, 111, 0.1);
}

.companion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 156, 111, 0.1);
}

.companion-price label { color: #8a7464; font-size: 0.85rem; }
.companion-price .amount { font-size: 1.5rem; color: #e89c6f; font-weight: 600; }

.companion-actions { display: flex; gap: 10px; }

.album-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(168, 181, 143, 0.2);
  color: #a8b58f;
  border: none;
  border-radius: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.album-btn:hover {
  background: rgba(168, 181, 143, 0.3);
  transform: translateY(-2px);
}

.select-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #e89c6f, #f5b485);
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 156, 111, 0.3);
}

.select-btn.selected {
  background: linear-gradient(135deg, #a8b58f, #b8c5a0);
  box-shadow: 0 0 0 3px rgba(168, 181, 143, 0.3);
}

/* Album Modal */
.album-modal .modal-content {
  max-width: 600px;
  padding: 0;
  overflow: hidden;
}

.album-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(90, 71, 57, 0.9);
  color: white;
}

.album-header h3 { font-size: 1.2rem; }
.album-header .modal-close { color: rgba(255, 255, 255, 0.8); }
.album-header .modal-close:hover { color: white; }

.album-stage {
  position: relative;
  background: rgba(255, 252, 245, 0.98);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-stage img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.album-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 156, 111, 0.9);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.album-nav:hover {
  background: #e89c6f;
  transform: translateY(-50%) scale(1.1);
}

.album-nav.prev { left: 10px; }
.album-nav.next { right: 10px; }

.album-counter {
  text-align: center;
  padding: 15px;
  background: rgba(90, 71, 57, 0.9);
  color: white;
  font-weight: 500;
}

/* Selected Info in Contact Modal */
.selected-companion {
  background: rgba(232, 156, 111, 0.1);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.selected-companion .name { color: #e89c6f; font-weight: 600; }
.selected-companion .rate { color: #8a7464; font-size: 0.95rem; }

.modal-footer {
  text-align: center;
  margin-top: 20px;
  color: #8a7464;
  font-size: 0.9rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #8a7464;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid, .mbti-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header { padding: 1rem; flex-direction: column; gap: 15px; }
  .nav-buttons { flex-wrap: wrap; justify-content: center; }
  .nav-btn { padding: 10px 20px; font-size: 0.95rem; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid, .features-grid, .mbti-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-image { height: auto; min-height: 200px; }
  .contact-info { flex-direction: column; gap: 20px; }
  .companions-grid { grid-template-columns: 1fr; }
  .filter-header { flex-direction: column; align-items: flex-start; }
}
