/* ==========================================
   STRIPPERNORCU - Stylesheet
   ========================================== */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1c1c1c;
  --text-primary: #f5f0e6;
  --text-secondary: #a8a39a;
  --text-muted: #6b6760;
  --accent-gold: #c9a961;
  --accent-gold-hover: #d9b971;
  --accent-red: #8b2c2c;
  --border-subtle: rgba(201, 169, 97, 0.15);
  --border-strong: rgba(201, 169, 97, 0.4);
  --shadow-glow: 0 0 40px rgba(201, 169, 97, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 44, 44, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

main, header, footer {
  position: relative;
  z-index: 2;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  max-width: 65ch;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold-hover);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.text-gold {
  color: var(--accent-gold);
}

.text-italic {
  font-style: italic;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 0;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent-gold);
  color: var(--bg-primary) !important;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 2rem;
}

.hero-text h1 .accent {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-primary) 100%);
  pointer-events: none;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
  padding: 6rem 3rem;
  position: relative;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin: 0 auto;
  color: var(--text-muted);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 2rem;
}

/* ==========================================
   CARDS / STRIPPERS GRID
   ========================================== */

.strippers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stripper-card {
  background: var(--bg-secondary);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.stripper-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.stripper-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.stripper-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.9);
  transition: all 0.5s ease;
}

.stripper-card:hover .stripper-card-image img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.stripper-card-info {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.stripper-card-info h3 {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.stripper-card-info p {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}

/* ==========================================
   PROFILE PAGE (individual stripper)
   ========================================== */

.profile {
  padding: 10rem 3rem 6rem;
}

.profile-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.profile-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.profile-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.profile-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
}

.profile-gallery img:hover {
  filter: grayscale(0%);
}

.profile-info h1 {
  margin-bottom: 1.5rem;
}

.profile-info .eyebrow {
  margin-bottom: 1rem;
}

/* ==========================================
   PRICING / BOOKING TABLE
   ========================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-gold);
  margin: 1.5rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================
   FORM
   ========================================== */

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-strong);
  padding: 1rem;
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--bg-tertiary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================
   QUOTE / DECORATIVE TEXT
   ========================================== */

.quote {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 800px;
  margin: 4rem auto;
  color: var(--text-primary);
  position: relative;
  padding: 0 3rem;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--accent-gold);
  position: absolute;
  font-family: serif;
  line-height: 1;
}

.quote::before {
  top: -1rem;
  left: 0;
}

.quote::after {
  bottom: -2rem;
  right: 0;
}

/* ==========================================
   CONTACT INFO BOX
   ========================================== */

.contact-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  margin: 3rem auto;
}

.contact-info h3 {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.contact-info .phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-gold);
  display: block;
  margin: 1rem 0;
  letter-spacing: 0.05em;
}

.contact-info .email {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background: var(--bg-secondary);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================
   SEO / KEYWORDS FOOTER
   ========================================== */

.seo-keywords {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 1000px;
  margin: 2rem auto 0;
  line-height: 1.6;
  opacity: 0.5;
}

/* ==========================================
   FADE-IN ANIMATIONS
   ========================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   HOMEPAGE LIGHT VARIANT
   ========================================== */

.light-page {
  background: linear-gradient(135deg, #faf6ef 0%, #f0e9dc 100%);
  color: #1a1a1a;
}

.light-page::before {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 109, 51, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
}

.light-page .nav {
  background: rgba(250, 246, 239, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.light-page .nav-logo img {
  filter: none;
}

.light-page .nav-logo span {
  color: #1a1a1a;
}

.light-page .nav-menu a {
  color: #555;
}

.light-page .nav-toggle {
  color: #1a1a1a;
}

.light-page .nav-menu a:hover,
.light-page .nav-menu a.active {
  color: #8b6d33;
}

.light-page .nav-menu a::after {
  background: #8b6d33;
}

.light-page .nav-cta {
  border-color: #8b6d33;
  color: #8b6d33 !important;
}

.light-page .nav-cta:hover {
  background: #8b6d33;
  color: #faf6ef !important;
}

.light-page h1,
.light-page h2,
.light-page h3,
.light-page h4 {
  color: #1a1a1a;
}

.light-page h1 .accent,
.light-page .text-gold {
  color: #8b6d33;
}

.light-page p {
  color: #4a4a4a;
}

.light-page .eyebrow {
  color: #8b6d33;
}

.light-page .divider {
  background: #8b6d33;
}

.light-page .btn-primary {
  background: #1a1a1a;
  color: #faf6ef;
}

.light-page .btn-primary:hover {
  background: #8b6d33;
}

.light-page .btn-outline {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.light-page .btn-outline:hover {
  background: #1a1a1a;
  color: #faf6ef;
}

.light-page .quote {
  color: #1a1a1a;
}

.light-page .quote::before,
.light-page .quote::after {
  color: #8b6d33;
}

.light-page .pricing-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 109, 51, 0.2);
}

.light-page .pricing-card h3 {
  color: #1a1a1a;
}

.light-page .pricing-card p {
  color: #6a6a6a;
}

.light-page .pricing-card:hover {
  border-color: #8b6d33;
  background: rgba(255, 255, 255, 0.9);
}

.light-page .hero-image img {
  filter: grayscale(0%) brightness(1) contrast(1.05);
}

.light-page .hero-image::after {
  background: linear-gradient(180deg, transparent 40%, rgba(250, 246, 239, 0.4) 100%);
}

.light-page section[style*="background: var(--bg-secondary)"] {
  background: rgba(255, 255, 255, 0.5) !important;
}

.light-page footer {
  background: #1a1a1a;
  color: #faf6ef;
}

/* ==========================================
   SEX SELECTOR (silhouettes)
   ========================================== */

.sex-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
}

.sex-option {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  overflow: hidden;
}

.sex-option:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.sex-option-silhouette {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: #000;
}

.sex-option-silhouette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(0.95);
}

.sex-option:hover .sex-option-silhouette img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.sex-option-silhouette svg {
  height: 100%;
  width: auto;
  fill: var(--text-primary);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.sex-option:hover .sex-option-silhouette svg {
  fill: var(--accent-gold);
  opacity: 1;
}

.sex-option h3 {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.sex-option p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================
   VIDEO PAGE
   ========================================== */

.video-container {
  max-width: 1100px;
  margin: 3rem auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-secondary);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    aspect-ratio: 4/3;
    order: -1;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .profile {
    padding: 8rem 1.5rem 4rem;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1rem;
  }

  .quote {
    padding: 0 2rem;
  }

  .sex-selector {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sex-option-silhouette {
    height: 180px;
  }
}
