@charset "utf-8";
/* CSS Document */

:root {
  --pink: #8d285f;
  --gold: #c59645;
  --ink: #29242a;
  --muted: #6d6670;
  --soft: #faf7f9;
  --line: #eadfe6;

  /* Call / WhatsApp colors */
  --call: #8d285f;
  --wa: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1180px, 92%);
  margin: auto;
}


/* =========================
   HEADER / NAVIGATION
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 248px;
  height: auto;
}

.navlinks {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.navlinks a:hover {
  color: var(--pink);
}

.menu {
  display: none;
  background: var(--pink);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
  width: 100%;
  background: #151018;
  color: #fff;
}

.hero video {
  display: block;
  width: 100%;
  height: min(72vh, 650px);
  min-height: 330px;
  object-fit: cover;
  background: #151018;
}

.hero-copy {
  background: linear-gradient(120deg, #22131e, #66294d);
  padding: 42px 0;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 55px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-copy p {
  max-width: 850px;
  color: #f4eaf0;
  margin: 0;
}

.eyebrow {
  color: #e4c279;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
}


/* =========================
   SECTIONS
========================= */

section {
  padding: 30px 0;
}

.soft {
  background: var(--soft);
}

.content {
  max-width: 1080px;
  margin: auto;
}

.content h1,
.section-title h1 {
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 18px;
}

.content h2,
.section-title h2 {
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 18px;
}

.content p {
	color: #5f5960;
	margin: 0 0 16px;
	text-align: justify;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 38px;
}

.section-title small {
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title p {
  color: var(--muted);
}


/* =========================
   PROFILE CARDS
========================= */

.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(50, 20, 40, 0.05);
}

.profile-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #eee;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-card:hover img {
  transform: scale(1.03);
}

.rating {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  border-radius: 20px;
  padding: 5px 9px;
  font-size: 12px;
}

.profile-body {
  padding: 15px;
}

.profile-body h3 {
  margin: 0;
  color: var(--pink);
  font-size: 19px;
}

.profile-body p {
  margin: 3px 0 13px;
  color: #777;
  font-size: 13px;
  min-height: 22px;
}

.small-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.small-btn:hover {
  background: #6f1f4a;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
}

.whatsapp-btn::before {
  content: "◉";
  font-size: 13px;
}


/* =========================
   RATES TABLE
========================= */

.rates-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th {
  background: var(--pink);
  color: #fff;
  text-align: left;
  padding: 15px;
}

td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  color: #5e5960;
}

tr:last-child td {
  border-bottom: 0;
}


/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery a {
  display: block;
  aspect-ratio: 1;
  background: #eee;
  border-radius: 9px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery a:hover img {
  transform: scale(1.04);
}


/* =========================
   LOCATIONS
========================= */

.locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.location {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  font-size: 13px;
  transition: all 0.2s ease;
}

.location:hover {
  background: var(--pink);
  color: #fff;
}


/* =========================
   FAQ
========================= */

.faq {
  max-width: 900px;
  margin: auto;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: #3a333a;
}

details p {
  color: #6c666c;
  margin: 10px 0 0;
}


/* =========================
   CTA
========================= */

.cta {
  background: var(--pink);
  color: #fff;
  text-align: center;
}

.cta p {
  color: #f4e8ee;
  max-width: 700px;
  margin: 10px auto 20px;
}

.cta .small-btn {
  background: #fff;
  color: var(--pink);
  margin: 4px;
}


/* =========================
   FOOTER
========================= */

footer {
  background: #19161b;
  color: #aaa;
  padding: 45px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 35px;
}

footer h3 {
  color: #fff;
  margin-top: 0;
}

footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

footer li {
  margin: 7px 0;
  font-size: 13px;
}

footer a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid #302c31;
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
}


/* =========================
   AGE GATE
========================= */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 5, 8, 0.9);
  backdrop-filter: blur(5px);
}

.age-box {
  width: min(470px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.age-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  margin: 0 auto 15px;
}

.age-box h2 {
  margin: 0 0 12px;
}

.age-box p {
  color: #666;
  font-size: 14px;
}

.age-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.age-actions button {
  flex: 1;
  border: 0;
  border-radius: 7px;
  padding: 12px;
  font-weight: 800;
  cursor: pointer;
}

.accept {
  background: var(--pink);
  color: #fff;
}

.decline {
  background: #eee;
  color: #333;
}

body.locked {
  overflow: hidden;
}


/* =========================
   STICKY CALL / WHATSAPP BAR
   DESKTOP + TABLET + MOBILE
========================= */

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;

  width: 100%;

  z-index: 9998;

  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
}

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  min-height: 52px;
  padding: 14px 10px;

  font-weight: 700;
  font-size: 0.96rem;

  color: #fff;
  text-decoration: none;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;

  -webkit-tap-highlight-color: transparent;
}

.sticky-bar .call {
  background: var(--call);
}

.sticky-bar .wa {
  background: var(--wa);
}

.sticky-bar a:hover {
  color: #fff;
  opacity: 0.92;
}

.sticky-bar a:active {
  opacity: 0.8;
  transform: scale(0.99);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .profiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

  .brand img {
    width: 200px;
  }

  .navlinks {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: #fff;
    padding: 8px 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #eee;
  }

  .navlinks.show {
    display: flex;
  }

  .navlinks a {
    padding: 11px 0;
    border-bottom: 1px solid #f1edf0;
  }

  .menu {
    display: block;
  }

  .profiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero video {
    height: 45vh;
    min-height: 250px;
  }

  .age-actions {
    flex-direction: column;
  }

  /*
     Prevent sticky bar from covering
     the bottom content on mobile.
  */
  body {
    padding-bottom: 60px;
  }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .profiles {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 180px;
  }

  .hero-copy {
    padding: 32px 0;
  }

  section {
    padding: 50px 0;
  }

  .content h2,
  .section-title h2 {
    font-size: 28px;
  }

  .age-box {
    padding: 24px 20px;
  }

  .sticky-bar a {
    min-height: 50px;
    padding: 13px 8px;
    font-size: 0.92rem;
  }

}
