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

:root {
  --bg: #0a0a0a;
  --bg-alt: #111;
  --text: #f0f0f0;
  --text-muted: #888;
  --accent: #c9a96e;
  --accent-dark: #a8874d;
  --white: #fff;
  --radius: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.logo img { border-radius: 50%; object-fit: cover; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav a:hover { color: var(--accent); }
.nav-btn { background: var(--accent); color: var(--bg) !important; padding: 8px 20px; border-radius: var(--radius); font-weight: 600; }
.nav-btn:hover { background: var(--accent-dark); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* HERO */
.hero { padding-top: 120px; padding-bottom: 80px; min-height: 100vh; display: flex; align-items: center; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 12px; }
.hero-sub { color: var(--accent); font-size: 1.2rem; margin-bottom: 20px; }
.hero-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); text-decoration: none; font-weight: 600; font-size: .95rem; transition: .2s; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border: 1px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg); }
.btn-full { width: 100%; text-align: center; }
.hero-img img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 3/4; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 2rem; margin-bottom: 48px; text-align: center; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/5; }
.about-content p { margin-bottom: 16px; color: var(--text-muted); }
.about-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.5rem; color: var(--accent); }
.stat span { font-size: .85rem; color: var(--text-muted); }

/* PORTFOLIO */
.portfolio-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid #333; color: var(--text-muted); padding: 8px 20px; border-radius: 50px; cursor: pointer; transition: .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: .3s; }
.portfolio-overlay span { color: var(--white); font-weight: 600; font-size: 1.1rem; }
.portfolio-item.hidden { display: none; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.price-card { background: var(--bg-alt); border: 1px solid #1a1a1a; border-radius: var(--radius); padding: 32px; transition: .2s; }
.price-card:hover { border-color: var(--accent); }
.price-card.featured { border-color: var(--accent); background: rgba(201,169,110,.05); }
.price-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.price-card .price { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.price-card .price span { font-size: .9rem; font-weight: 400; color: var(--text-muted); }
.price-card ul { list-style: none; }
.price-card li { padding: 6px 0; color: var(--text-muted); font-size: .95rem; }
.price-card li::before { content: '✓ '; color: var(--accent); }
.pricing-note { text-align: center; margin-top: 32px; color: var(--text-muted); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: var(--bg-alt); border: 1px solid #1a1a1a; border-radius: var(--radius); padding: 28px; }
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p { color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.review-author { font-size: .9rem; color: var(--text-muted); }

/* MISTRESS */
.mistress-section { background: linear-gradient(135deg, #1a0a0a, #0a0a0a); }
.mistress-content { max-width: 700px; margin: 0 auto; text-align: center; }
.mistress-quote blockquote { font-size: 1.3rem; font-style: italic; color: var(--accent); line-height: 1.8; margin-bottom: 40px; }
.mistress-details p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }
.mistress-tags { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.mistress-tags span { background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.2); padding: 6px 16px; border-radius: 50px; font-size: .85rem; color: var(--accent); }

/* CONTACTS */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-item { margin-bottom: 24px; }
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item a { color: var(--accent); text-decoration: none; font-size: 1.05rem; }
.contact-item a:hover { text-decoration: underline; }
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 6px; font-size: .9rem; color: var(--text-muted); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 16px; background: var(--bg-alt); border: 1px solid #222;
  border-radius: var(--radius); color: var(--text); font-size: .95rem; font-family: inherit;
  transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-success { background: rgba(72,187,120,.1); border: 1px solid rgba(72,187,120,.3); color: #48bb78; }
.alert-error { background: rgba(245,101,101,.1); border: 1px solid rgba(245,101,101,.3); color: #f56565; }

/* FOOTER */
.footer { border-top: 1px solid #1a1a1a; padding: 32px 0; text-align: center; }
.footer p { color: var(--text-muted); font-size: .9rem; margin-bottom: 4px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner, .about-grid, .contacts-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-img { order: -1; }
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .nav.open { display: flex; }
  .burger { display: flex; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}