/* =========================================
   RESET & ROOT
   ========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:        #0a0a0a;
  --deep:         #111118;
  --pink:         #e91e8c;
  --pink-light:   #f472b6;
  --purple:       #7c3aed;
  --purple-light: #a78bfa;
  --gold:         #c9a84c;
  --gold-light:   #e8d48b;
  --red:          #c0392b;
  --red-light:    #e74c3c;
  --white:        #fafafa;
  --gray:         #9ca3af;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', sans-serif;
  --transition:   0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================
   AGE GATE OVERLAY
   ========================================= */
#age-gate {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.age-gate-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.age-gate-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--white);
}

.age-gate-text {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  max-width: 400px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.age-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  transition: var(--transition);
}

.age-btn-yes {
  border-color: var(--pink);
  color: var(--pink);
}

.age-btn-yes:hover {
  background: rgba(233, 30, 140, 0.12);
}

.age-btn-no {
  border-color: rgba(255,255,255,0.2);
  color: var(--gray);
}

.age-btn-no:hover {
  background: rgba(255,255,255,0.05);
}

/* =========================================
   NAVIGATION
   ========================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding var(--transition);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================================
   HERO / HOME
   ========================================= */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(233, 30, 140, 0.14) 0%, transparent 60%),
    var(--black);
}

.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--purple-light);
}

.hero-sub {
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  color: var(--gray);
  max-width: 460px;
  line-height: 2;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 940px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card {
  background: var(--black);
  padding: 2.2rem 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.service-icon {
  font-size: 1.9rem;
  margin-bottom: 0.2rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.service-desc {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.service-pill {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border: 1px solid;
  margin-top: 0.3rem;
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */
.page-section {
  width: 100%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}

.section-tag {
  font-size: 0.63rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.6rem;
}

.section-body {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 2;
  max-width: 540px;
  margin-bottom: 2.8rem;
}

.cta-btn {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border: 1px solid;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-sans);
}

/* =========================================
   PAGE 1 — NUDE CALENDAR
   (Black, Gray & White / Sensual)
   ========================================= */
#calendar {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

#calendar .section-tag  { color: #777; }
#calendar .section-title { color: var(--white); }
#calendar .section-body  { color: rgba(255,255,255,0.5); }
#calendar .cta-btn {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
#calendar .cta-btn:hover { background: rgba(255,255,255,0.07); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 2px;
  margin-top: 3.5rem;
  background: #1a1a1a;
}

.cal-month {
  background: #0d0d0d;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
}

.cal-month:hover { background: #141414; }

.cal-month::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  z-index: 1;
}

.cal-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  opacity: 0.07;
  pointer-events: none;
}

.cal-month-num {
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  font-family: var(--font-serif);
  z-index: 2;
}

.cal-month-name {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.88);
}

.cal-theme {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #555;
  position: relative;
  z-index: 2;
  margin-top: 0.25rem;
}

/* =========================================
   PAGE 2 — TOY PARTIES
   (White & Pink / Lingerie)
   ========================================= */
#parties {
  background: linear-gradient(180deg, #fff8fc 0%, #fce4f0 50%, #fff8fc 100%);
}

#parties .section-tag  { color: #c2185b; }
#parties .section-title { color: #1a0010; }
#parties .section-body  { color: rgba(26,0,16,0.55); }
#parties .cta-btn {
  border-color: var(--pink);
  color: var(--pink);
}
#parties .cta-btn:hover { background: rgba(233,30,140,0.08); }

.packages-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.package-card {
  border: 1px solid rgba(233, 30, 140, 0.2);
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.65);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  border-color: rgba(233, 30, 140, 0.45);
}

.package-card.featured {
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.95);
}

.pkg-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--pink);
  color: white;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
}

.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #1a0010;
  margin-bottom: 0.5rem;
}

.pkg-price {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 1.2rem;
}

.pkg-price span {
  font-size: 0.72rem;
  font-weight: 400;
  color: #9e9e9e;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pkg-features li {
  font-size: 0.74rem;
  color: #4a0030;
  letter-spacing: 0.04em;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}

.pkg-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* =========================================
   PAGE 3 — BDSM EQUIPMENT
   (Black & Red / Kinky Bondage)
   ========================================= */
#bdsm {
  background: linear-gradient(180deg, #0a0000 0%, #1a0505 50%, #0a0000 100%);
}

#bdsm .section-tag  { color: var(--red-light); }
#bdsm .section-title { color: var(--white); }
#bdsm .section-body  { color: rgba(255,255,255,0.45); }
#bdsm .cta-btn {
  border-color: var(--red);
  color: var(--red-light);
}
#bdsm .cta-btn:hover { background: rgba(192,57,43,0.12); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.equip-item {
  padding: 2.2rem;
  border-right: 1px solid rgba(192, 57, 43, 0.12);
  border-bottom: 1px solid rgba(192, 57, 43, 0.12);
  cursor: pointer;
  transition: background var(--transition);
}

.equip-item:hover { background: rgba(192, 57, 43, 0.06); }

.equip-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.equip-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.equip-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.equip-badge {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.57rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid rgba(192, 57, 43, 0.38);
  padding: 0.26rem 0.75rem;
}

/* =========================================
   PAGE 4 — MALE ESCORT / BACHELORETTE
   (Black & Gold / Sophisticated)
   ========================================= */
#escort {
  background: linear-gradient(180deg, #060501 0%, #100d00 50%, #060501 100%);
}

#escort .section-tag  { color: var(--gold); }
#escort .section-title { color: var(--white); }
#escort .section-body  { color: rgba(255,255,255,0.45); }
#escort .cta-btn {
  border-color: var(--gold);
  color: var(--gold);
}
#escort .cta-btn:hover { background: rgba(201,168,76,0.08); }

.escort-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.escort-feat {
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  padding-top: 1.6rem;
}

.ef-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.28);
  line-height: 1;
}

.ef-title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--gold-light);
  margin: 0.5rem 0 0.7rem;
}

.ef-body {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.testimonial-strip {
  margin-top: 4.5rem;
  border: 1px solid rgba(201, 168, 76, 0.14);
  padding: 2.8rem;
  background: rgba(201, 168, 76, 0.03);
  position: relative;
}

.testimonial-strip::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5.5rem;
  color: rgba(201, 168, 76, 0.13);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.testimonial-credit {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
#contact {
  background: #040404;
  border-top: 1px solid rgba(255,255,255,0.05);
}

#contact .section-inner {
  padding-bottom: 3rem;
}

#contact .section-tag  { color: var(--purple-light); }
#contact .section-title { color: var(--white); }
#contact .section-body  { color: rgba(255,255,255,0.45); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.22); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(124, 58, 237, 0.5);
}

.form-select option { background: #111; }

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

.form-submit {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--purple);
  color: var(--purple-light);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-start;
}

.form-submit:hover { background: rgba(124, 58, 237, 0.12); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {}

.ci-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.ci-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.ci-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
  line-height: 1.7;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #020202;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.age-notice {
  display: inline-block;
  margin-bottom: 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.4rem 1.3rem;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.18);
}

/* =========================================
   SCROLL-TO-TOP BUTTON
   ========================================= */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(10,10,10,0.85);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  z-index: 90;
  backdrop-filter: blur(6px);
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

#scroll-top:hover { background: rgba(233,30,140,0.15); }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1.8rem 2rem;
    gap: 1.3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  .section-inner {
    padding: 5rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-strip {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-row {
    grid-template-columns: 1fr;
  }
}

/* Active nav link */
.nav-active {
  color: var(--white) !important;
}
.nav-active::after {
  transform: scaleX(1) !important;
}

/* Page hero shared */
.page-hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }

/* Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
}

/* Image */
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(1);
  transition: transform 0.2s ease;
  cursor: zoom-in;
}
.lightbox-img.zoomed {
  cursor: zoom-out;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* Show state */
.lightbox.open {
  display: flex;
}