:root {
  --cream: #faf6f0;
  --cream-dark: #f0e9df;
  --gold: #c9a96e;
  --gold-dark: #a8884e;
  --gold-light: #e0c9a0;
  --rose: #d4a5a5;
  --rose-light: #ecd9d9;
  --charcoal: #2c2420;
  --text: #4a3f38;
  --text-light: #8a7e74;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(44, 36, 32, 0.08);
  --shadow-hover: 0 8px 50px rgba(44, 36, 32, 0.15);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--cream);
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--charcoal); font-weight: 600; }
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.header-inner {
  max-width: 1300px; margin: 0 auto; padding: 12px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--white);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name { font-family: 'Great Vibes', cursive; font-size: 1.5rem; color: var(--charcoal); }
.logo-text .sub { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.5px; color: var(--text); text-transform: uppercase;
  position: relative; padding: 5px 0;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: var(--transition);
}
nav a:hover::after { width: 100%; }
.lang-toggle {
  display: flex; gap: 2px; background: var(--cream-dark); border-radius: 50px;
  padding: 3px; font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
}
.lang-toggle button {
  border: none; background: transparent; padding: 5px 12px; border-radius: 50px;
  cursor: pointer; color: var(--text-light); font-weight: 500; transition: var(--transition);
}
.lang-toggle button.active { background: var(--gold); color: var(--white); }
.phone-btn {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--white) !important; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 10px 22px; border-radius: 50px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}
.phone-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { width: 25px; height: 2px; background: var(--charcoal); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
  background: var(--cream); z-index: 200; padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1); overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block; font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  padding: 15px 0; border-bottom: 1px solid var(--cream-dark); color: var(--text);
}
.overlay-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 150; opacity: 0; visibility: hidden; transition: var(--transition); }
.overlay-bg.show { opacity: 1; visibility: visible; }

main { padding-top: 70px; min-height: 60vh; }

.profile-page { padding: 100px 30px 60px; max-width: 1300px; margin: 0 auto; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-light);
}
.back-link:hover { color: var(--gold-dark); }
.profile-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
.profile-gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-main {
  width: 100%; height: 600px; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); background: linear-gradient(135deg, var(--cream-dark), var(--rose-light));
  cursor: pointer; position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Great Vibes', cursive; font-size: 4rem; color: rgba(201,169,110,0.4); }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 90px; height: 120px; border-radius: 10px; object-fit: cover;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
}
.gallery-thumbs img:hover { border-color: var(--gold); }
.gallery-thumbs img.active { border-color: var(--gold); }
.profile-info { padding: 10px 0; }
.profile-info .script-name { font-family: 'Great Vibes', cursive; font-size: 3rem; color: var(--gold); margin-bottom: 5px; line-height: 1; }
.profile-info h1 { font-size: 2.8rem; margin-bottom: 8px; }
.profile-info .tagline { font-size: 1.2rem; color: var(--text-light); font-style: italic; margin-bottom: 25px; }
.stats-table { background: var(--white); border-radius: 14px; padding: 25px 30px; margin-bottom: 25px; box-shadow: var(--shadow); }
.stats-table .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); }
.stats-table .row:last-child { border-bottom: none; }
.stats-table .label { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.stats-table .val { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--charcoal); font-weight: 500; }
.profile-desc { margin-bottom: 25px; }
.profile-desc h3 { font-size: 1.4rem; margin-bottom: 12px; }
.profile-desc p { margin-bottom: 12px; color: var(--text); }
.profile-desc strong { color: var(--charcoal); }
.profile-cta {
  background: linear-gradient(135deg, var(--cream-dark), var(--rose-light));
  border-radius: 16px; padding: 30px; text-align: center; margin-bottom: 20px;
}
.profile-cta .price-big { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold-dark); font-weight: 700; }
.profile-cta .price-big small { font-size: 1rem; color: var(--text-light); }
.profile-cta p { color: var(--text-light); margin: 8px 0 20px; }
.btn {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600;
  padding: 14px 38px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); box-shadow: 0 4px 20px rgba(201,169,110,0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }
.related-section { margin-top: 60px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.girl-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
  border: 1px solid rgba(201,169,110,0.15); color: inherit;
}
.girl-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.girl-photo {
  position: relative; width: 100%; height: 320px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--rose-light));
}
.girl-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.girl-card:hover .girl-photo img { transform: scale(1.05); }
.girl-photo .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: 'Great Vibes', cursive; font-size: 3rem; color: rgba(201,169,110,0.4);
}
.girl-badge {
  position: absolute; top: 15px; right: 15px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  padding: 6px 16px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 600;
  color: var(--gold-dark);
}
.girl-info { padding: 22px 25px; }
.girl-info .name-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.girl-info h3 { font-size: 1.5rem; }
.girl-info .age { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-dark); font-style: italic; }
.girl-stats { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
.girl-stats span {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
}
.girl-stats span b { color: var(--text); font-weight: 600; }
.girl-card .price-tag {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 15px; border-top: 1px solid var(--cream-dark);
}
.girl-card .price-tag .price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold-dark); font-weight: 600; }
.girl-card .price-tag .price small { font-size: 0.75rem; color: var(--text-light); }
.girl-card .view-link { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); }

.seo-section { background: var(--white); padding: 70px 30px; }
.seo-section .inner { max-width: 900px; margin: 0 auto; }
.seo-section h2 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
.seo-section .center-pre { text-align: center; font-family: 'Great Vibes', cursive; font-size: 1.6rem; color: var(--gold); margin-bottom: 5px; }
.seo-section p { margin-bottom: 18px; color: var(--text); line-height: 1.8; }
.seo-section strong { color: var(--charcoal); }

.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { background: var(--cream); border-radius: 12px; margin-bottom: 12px; overflow: hidden; border: 1px solid var(--cream-dark); }
.faq-q { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--charcoal); }
.faq-q .arrow { transition: var(--transition); color: var(--gold); font-size: 1.2rem; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 25px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { color: var(--text-light); padding-top: 5px; }

.contact-section { background: linear-gradient(135deg, var(--charcoal), #3d332c); padding: 80px 30px; text-align: center; }
.contact-section .script { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold); margin-bottom: 5px; }
.contact-section h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 15px; }
.contact-section p { color: rgba(255,255,255,0.6); font-size: 1.2rem; margin-bottom: 30px; }
.contact-phone {
  display: inline-flex; align-items: center; gap: 15px;
  font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-light);
  background: rgba(201,169,110,0.1); padding: 18px 40px; border-radius: 50px;
  border: 1px solid rgba(201,169,110,0.3); transition: var(--transition);
}
.contact-phone:hover { background: rgba(201,169,110,0.2); transform: translateY(-3px); }
.contact-info { margin-top: 30px; color: rgba(255,255,255,0.5); font-size: 0.95rem; }

footer { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 50px 30px 25px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-brand .name { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold-light); }
.footer-brand p { font-size: 0.9rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 15px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; padding: 5px 0; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 0.82rem; }
.footer-bottom p { margin-bottom: 8px; }
.disclaimer { background: rgba(201,169,110,0.1); border-radius: 8px; padding: 12px 20px; margin-top: 15px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

#lightbox {
  position: fixed; inset: 0; z-index: 5000; background: rgba(20,15,12,0.95);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
#lightbox.show { display: flex; }
#lightbox img { max-width: 90%; max-height: 90vh; border-radius: 10px; }
#lightbox .lb-close { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 2rem; cursor: pointer; }
#lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 2.5rem; cursor: pointer; padding: 20px; user-select: none; }
#lightbox .lb-prev { left: 10px; }
#lightbox .lb-next { right: 10px; }

.section { padding: 80px 30px; max-width: 1300px; margin: 0 auto; }
.section-center { text-align: center; }
.section-pre { font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--gold); margin-bottom: 5px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; }
.section-sub { font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin: 0 auto 50px; }

@media (max-width: 968px) {
  .profile-grid { grid-template-columns: 1fr; }
  .gallery-main { height: 450px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .header-inner { padding: 10px 20px; }
  .logo-text .sub { display: none; }
  .section { padding: 50px 20px; }
  .seo-section { padding: 50px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 25px; }
  .related-grid { grid-template-columns: 1fr; }
  .profile-page { padding: 80px 20px 40px; }
  .profile-info h1 { font-size: 2rem; }
  .profile-info .script-name { font-size: 2.2rem; }
  .contact-phone { font-size: 1.5rem; padding: 14px 25px; }
}