.featured-models-section {
  padding: 5.5rem 5%;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #050505 0%, #111 100%);
}

.featured-models-section--after-hero {
  padding-top: 3rem;
}

.featured-models-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.featured-kicker {
  color: #d4af37;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.featured-models-head h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.featured-models-head p:last-child {
  color: #c9b580;
  font-size: 1.05rem;
}

.featured-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.featured-model-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  background: rgba(18, 18, 18, 0.95);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  min-height: 530px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.featured-model-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0b0b0b;
}

.featured-model-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.35s ease;
}

.profile-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  padding: 0.85rem 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .featured-model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.85);
    box-shadow: 0 28px 70px rgba(212, 175, 55, 0.18);
  }

  .featured-model-card:hover .featured-model-photo img {
    transform: scale(1.06);
    filter: brightness(0.45);
  }

  .featured-model-card:hover .profile-pill {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .featured-model-card:hover .featured-model-body {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
  }
}

.featured-model-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.55) 45%,
    transparent 100%
  );
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

.featured-model-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
}

.featured-model-title h3 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0;
  min-width: 0;
}

.featured-model-title span {
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.featured-model-card .model-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.featured-model-card .model-card-stats div {
  min-width: 0;
  padding: 0.65rem 0.45rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.42);
}

.featured-model-card .model-card-stats span {
  display: block;
  color: #c9b580;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.55px;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.featured-model-card .model-card-stats strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.models-pagination {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 3rem;
}

.models-pagination a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.models-pagination a:hover,
.models-pagination a.active {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
}

.model-profile-page {
  padding: 8rem 5% 5rem;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #050505 0%, #111 100%);
}

.model-profile-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.profile-gallery {
  position: sticky;
  top: 104px;
}

.profile-main-image {
  position: relative;
  overflow: hidden;
  height: 680px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 26px;
  background: #111;
}

.profile-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow.prev {
  left: 1rem;
}

.gallery-arrow.next {
  right: 1rem;
}

.profile-social-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0 0 1.35rem;
}

.profile-social-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.profile-social-link i {
  font-size: 1.3rem;
}

.profile-social-link--whatsapp {
  background: #22d466;
}

.profile-social-link--telegram {
  background: #2ea8e6;
}

.profile-social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.profile-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.profile-thumb {
  height: 92px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.profile-thumb.active {
  border-color: #d4af37;
}

.profile-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile-info-panel {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 28px;
  background: rgba(18, 18, 18, 0.9);
  padding: 2.5rem;
}

.profile-info-panel .featured-kicker {
  margin-bottom: 0.5rem;
}

.profile-name {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.profile-location {
  color: #c9b580;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.profile-stat {
  padding: 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.profile-stat span {
  display: block;
  color: #c9b580;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.profile-stat strong {
  color: #fff;
  font-size: 1.2rem;
}

.profile-bio {
  color: #cfcfcf;
  margin-bottom: 2rem;
}

.contact-profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 1rem 1.8rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

@media (max-width: 980px) {
  .featured-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-gallery {
    position: static;
  }

  .profile-main-image {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .featured-models-section,
  .model-profile-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .featured-model-card {
    min-height: 520px;
  }

  .featured-models-grid {
    grid-template-columns: 1fr;
  }

  .featured-model-body {
    padding: 1.1rem;
  }

  .featured-model-title {
    margin-bottom: 0;
  }

  .featured-model-title h3 {
    font-size: 1.45rem;
  }

  .featured-model-card .model-card-stats {
    gap: 0.4rem;
    margin-top: 0.65rem;
  }

  .featured-model-card .model-card-stats div {
    padding: 0.55rem 0.3rem;
  }

  .featured-model-card .model-card-stats strong {
    font-size: 0.8rem;
  }

  .featured-model-card:hover .featured-model-photo img {
    filter: none;
  }

  .featured-model-card:hover .profile-pill {
    opacity: 0;
  }

  .profile-stats-grid {
    grid-template-columns: 1fr;
  }

  .profile-main-image {
    height: 520px;
  }

  .profile-social-links {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    gap: 0.45rem;
    margin: 0;
    padding: 0.5rem 0.9rem calc(0.5rem + env(safe-area-inset-bottom));
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.56) 56%,
      rgba(0, 0, 0, 0) 100%
    );
    backdrop-filter: blur(8px);
  }

  .profile-social-link {
    min-height: 52px;
    font-size: 0.92rem;
    letter-spacing: 2.1px;
  }

  .profile-social-link i {
    font-size: 1.15rem;
  }

  .model-profile-page {
    padding-bottom: 5.8rem;
  }

  .profile-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .profile-info-panel {
    padding: 1.4rem;
  }
}
