:root {
  --bg: #10070d;
  --panel: #1d0d17;
  --ink: #fff4f9;
  --muted: #d7b8c6;
  --gold: #f0bf64;
  --gold-dark: #b5822c;
  --emerald: #d91f7d;
  --pink: #ff3b9f;
  --red: #7c102c;
  --line: rgba(247, 242, 232, 0.14);
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(16, 7, 13, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.brand span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 59, 159, 0.7);
  color: var(--gold);
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold);
}

.call-button {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 18px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 7vw, 88px) 70px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 59, 159, 0.22), rgba(255, 59, 159, 0) 32%),
    linear-gradient(90deg, rgba(16, 7, 13, 0.98) 0%, rgba(16, 7, 13, 0.8) 43%, rgba(16, 7, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 7, 13, 1) 0%, rgba(16, 7, 13, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions,
.age-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.btn.primary {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink), #f0bf64);
  color: #190710;
}

.btn.whatsapp {
  border-color: rgba(217, 31, 125, 0.95);
  background: #25d366;
  color: white;
}

.btn.ghost {
  color: var(--muted);
}

.section,
.features,
.contact,
.profiles-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px clamp(20px, 4vw, 32px);
}

.intro,
.privacy,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro > p,
.privacy-text,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
}

.features article,
.contact-card,
.age-panel,
.profile-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(255, 59, 159, 0.12), 0 24px 60px var(--shadow);
}

.features article {
  min-height: 230px;
  padding: 28px;
}

.features span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 700;
}

.features p,
.contact-card p,
.profile-card p,
.footer {
  color: var(--muted);
}

.profiles-section {
  padding-top: 42px;
}

.profiles-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: 26px;
}

.profiles-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.profile-card {
  overflow: hidden;
}

.profile-visual {
  position: relative;
  aspect-ratio: 16 / 15;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 10%),
    radial-gradient(circle at 78% 20%, rgba(255, 192, 203, 0.42), rgba(255, 192, 203, 0) 18%),
    linear-gradient(12deg, rgba(255, 255, 255, 0.18) 0 9%, rgba(255, 255, 255, 0) 10% 100%),
    linear-gradient(180deg, #70d3ff 0 45%, #2f9fd5 46% 66%, #d9b27d 67% 100%);
  filter: saturate(var(--photo-sat)) contrast(var(--photo-contrast)) brightness(var(--photo-bright)) hue-rotate(var(--photo-hue));
}

.profile-visual::before {
  content: "";
  position: absolute;
  left: var(--pose-left);
  bottom: var(--pose-bottom);
  z-index: 1;
  width: var(--pose-width);
  height: var(--pose-height);
  transform: translateX(-50%) rotate(var(--pose-rotate));
  background:
    radial-gradient(ellipse at 50% 12%, #2c1019 0 12%, rgba(44, 16, 25, 0) 13%),
    radial-gradient(ellipse at 50% 25%, #d69a83 0 8%, rgba(214, 154, 131, 0) 9%),
    radial-gradient(ellipse at 50% 64%, #211018 0 34%, rgba(33, 16, 24, 0) 35%),
    linear-gradient(90deg, rgba(33, 16, 24, 0) 0 28%, #211018 29% 39%, rgba(33, 16, 24, 0) 40% 60%, #211018 61% 71%, rgba(33, 16, 24, 0) 72% 100%);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.44));
  opacity: 0.96;
}

.profile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(178deg, rgba(255, 255, 255, 0.15) 0 1px, rgba(255, 255, 255, 0) 1px 11px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.43) 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.24) 100%);
}

.pose-0 .profile-visual {
  --pose-left: 50%;
  --pose-bottom: 4%;
  --pose-width: 42%;
  --pose-height: 86%;
  --pose-rotate: 0deg;
}

.pose-1 .profile-visual {
  --pose-left: 42%;
  --pose-bottom: -2%;
  --pose-width: 48%;
  --pose-height: 78%;
  --pose-rotate: -4deg;
}

.pose-2 .profile-visual {
  --pose-left: 62%;
  --pose-bottom: 8%;
  --pose-width: 36%;
  --pose-height: 70%;
  --pose-rotate: 5deg;
}

.pose-3 .profile-visual {
  --pose-left: 52%;
  --pose-bottom: 10%;
  --pose-width: 32%;
  --pose-height: 62%;
  --pose-rotate: 0deg;
}

.pose-4 .profile-visual {
  --pose-left: 56%;
  --pose-bottom: -8%;
  --pose-width: 58%;
  --pose-height: 58%;
  --pose-rotate: 7deg;
}

.pose-5 .profile-visual {
  --pose-left: 48%;
  --pose-bottom: 2%;
  --pose-width: 44%;
  --pose-height: 82%;
  --pose-rotate: -8deg;
}

.pose-6 .profile-visual {
  --pose-left: 68%;
  --pose-bottom: 0%;
  --pose-width: 44%;
  --pose-height: 74%;
  --pose-rotate: 10deg;
}

.pose-7 .profile-visual {
  --pose-left: 36%;
  --pose-bottom: 6%;
  --pose-width: 34%;
  --pose-height: 66%;
  --pose-rotate: -2deg;
}

.profile-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 6px 9px;
  background: rgba(16, 7, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.scene-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  background: rgba(16, 7, 13, 0.72);
  border: 1px solid rgba(112, 211, 255, 0.38);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.profile-info {
  padding: 16px;
}

.profile-name {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.profile-meta {
  margin-bottom: 8px;
  font-size: 13px;
}

.profile-line {
  min-height: 42px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
}

.profile-phone {
  display: block;
  color: var(--gold);
  font-weight: 700;
}

.profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.profile-actions .btn {
  min-height: 40px;
  padding: 0 10px;
  font-size: 13px;
}

.privacy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card {
  padding: clamp(28px, 4vw, 42px);
}

.phone-label {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.phone {
  display: block;
  color: var(--gold);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 12, 10, 0.92);
  backdrop-filter: blur(16px);
}

.age-gate.is-hidden {
  display: none;
}

.age-panel {
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 46px);
}

.age-panel h1 {
  font-size: clamp(34px, 8vw, 56px);
}

.age-panel p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 780px) {
  .site-header {
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 96px;
  }

  .intro,
  .privacy,
  .contact,
  .features,
  .profiles-heading {
    grid-template-columns: 1fr;
  }

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

  .features article {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .brand span:last-child {
    max-width: 150px;
  }

  .call-button {
    padding-inline: 14px;
  }

  .btn {
    width: 100%;
  }

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

.vip-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  margin-bottom: 10px;
  padding: 10px clamp(14px, 3vw, 28px);
  background: #ff177d;
  border: 4px solid #ff6db0;
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.32);
}

.vip-board strong {
  font-size: clamp(44px, 8vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.heart-row {
  color: #111a34;
  font-size: clamp(28px, 5vw, 50px);
  overflow: hidden;
  white-space: nowrap;
}

.profiles-heading {
  display: block;
  margin-bottom: 8px;
  padding: 12px 16px;
  background: #f4f4f4;
}

.profiles-heading > p {
  margin: 0;
  color: #282028;
  font-size: 15px;
  font-weight: 700;
}

.profiles-grid {
  gap: 8px;
}

.profile-card {
  overflow: hidden;
  background: #f2f2f2;
  border: 4px solid #efefef;
  box-shadow: none;
}

.profile-visual {
  aspect-ratio: 4 / 5.6;
  background-image: linear-gradient(180deg, rgba(16, 7, 13, 0) 54%, rgba(16, 7, 13, 0.3) 100%), url("assets/profile-sprite-fullbody.png");
  background-size: var(--photo-size-x) var(--photo-size-y);
  background-position: var(--photo-x) var(--photo-y);
  background-repeat: no-repeat;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.profile-visual::before {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 10px;
  z-index: 3;
  width: 118px;
  height: 82px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 55%, rgba(251, 198, 54, 0.88) 0 28%, rgba(251, 198, 54, 0) 29%),
    linear-gradient(90deg, rgba(251, 198, 54, 0) 0 12%, rgba(251, 198, 54, 0.92) 13% 18%, rgba(251, 198, 54, 0) 19% 81%, rgba(251, 198, 54, 0.92) 82% 87%, rgba(251, 198, 54, 0) 88% 100%);
  filter: none;
  opacity: 0.9;
}

.profile-visual::after {
  content: "VIP";
  left: 50%;
  right: auto;
  top: auto;
  bottom: 32px;
  z-index: 4;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  background: none;
  color: #ffe46a;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  text-shadow: 0 2px 0 #8e5b00, 0 0 12px rgba(0, 0, 0, 0.7);
}

.profile-badge,
.scene-badge,
.profile-meta,
.profile-line,
.profile-actions {
  display: none;
}

.profile-info {
  padding: 0;
  text-align: center;
}

.profile-name {
  margin: 0;
  padding: 3px 8px 4px;
  background: #ff0077;
  color: #111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

.profile-phone {
  display: block;
  padding: 3px 4px 6px;
  background: #fff;
  color: #ff0077;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 1px 1px 0 #ffc5df;
}

@media (max-width: 440px) {
  .vip-board {
    grid-template-columns: 1fr;
  }

  .heart-row {
    display: none;
  }
}
