:root {
  --black: #000101;
  --deep: #050101;
  --dark: #130000;
  --red: #e60000;
  --red-bright: #ff1e1e;
  --white: #fff;
  --muted: #d6d6d6;
  --gold: #ffcc00;
  --blue: #0080c5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--red-bright);
}

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

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(980px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #050101;
}

.header-inner {
  min-height: 110px;
  padding: 0 35px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 30px;
}

.logo img {
  width: 236px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
}

.desktop-nav > a,
.nav-item > a {
  color: #cc0000;
  padding: 44px 25px;
  display: block;
}

.desktop-nav > a:hover,
.nav-item:hover > a {
  color: var(--blue);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(0, 0, 0, .95);
  border-top: 2px solid #000;
  display: none;
  z-index: 50;
}

.nav-item:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 13px 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: none;
  font-size: 15px;
}

.header-btn,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 15px 25px;
  min-height: 48px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.header-btn:hover,
.btn:hover {
  color: #fff;
  background: var(--red-bright);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 26px;
  padding: 12px;
}

.mobile-nav {
  display: none;
  background: #1d1922;
  border-top: 1px solid #4d4d4d;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 24px 30px;
  border-bottom: 1px solid #4d4d4d;
  color: #fff;
  font-size: 21px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: url("https://vip-dosug24.com/wp-content/uploads/2022/11/gey-eskort-spb-2.jpg");
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 180px 20px 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant", serif;
  font-weight: 400;
  color: #fff;
  margin: 0 0 24px;
}

h1 {
  font-size: clamp(42px, 8vw, 80px);
  line-height: 1.4;
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.3;
}

h3 {
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.3;
}

h4 {
  font-size: 28px;
  line-height: 1.2;
}

h5 {
  font-size: 22px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.section-dark {
  background: #000;
}

.intro {
  padding: 90px 0 70px;
  text-align: left;
}

.intro h2 {
  text-align: center;
}

.vip-note {
  text-align: center;
  margin: 35px auto;
}

.vip-note a,
.profiles-cta a,
.center-text a,
.footer-vip a {
  color: var(--gold);
}

.wide-image {
  margin: 35px auto;
  width: 100%;
}

.button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  margin-top: 45px;
}

.profiles-section {
  padding: 70px 0 80px;
  background: #000;
}

.profiles-section h2 {
  text-align: center;
}

.profile-tabs {
  margin: 0 auto 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-tabs button {
  border: 1px solid #333;
  background: #130000;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

.profile-tabs button.active {
  background: var(--red);
  border-color: var(--red);
}

.filter-tabs button {
  padding: 8px 22px;
  border-radius: 30px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

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

.anket-card {
  position: relative;
  overflow: hidden;
  background: #161616;
  cursor: pointer;
}

.anket-card:hover img,
.anket-card:hover canvas {
  transform: scale(1.08);
}

.anket-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.25;
  overflow: hidden;
  background: #222;
}

.anket-image,
.anket-watermark-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.anket-watermark-canvas {
  position: absolute;
  inset: 0;
  display: none;
}

.anket-overlay {
  position: relative;
  background: #000;
  padding: 20px 16px 22px;
  text-align: center;
}

.anket-name {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.anket-count {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  opacity: .78;
}

.anket-link {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
}

.no-data {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  background: #130000;
  border: 1px solid rgba(255,255,255,.12);
}

.profiles-cta {
  text-align: center;
  margin-top: 40px;
}

.profiles-cta h4 {
  text-transform: uppercase;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  background: #000;
}

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

.split-content {
  padding: 80px 70px;
}

.accordion {
  border-top: 1px solid rgba(255,255,255,.2);
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.accordion-item button::after {
  content: "›";
  float: right;
  transition: .2s;
}

.accordion-item.active button::after {
  transform: rotate(90deg);
}

.accordion-content {
  display: none;
  color: var(--muted);
  padding-bottom: 20px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.center-text {
  text-align: center;
  margin-top: 35px;
}

.gay-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #000;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
}

.gay-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.gay-grid img {
  max-height: 780px;
  object-fit: cover;
  margin: 0 auto;
}

.services-section {
  padding: 80px 0;
  background: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.services-title {
  grid-column: 1 / -1;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.service-card h3 {
  margin-top: 18px;
  margin-bottom: 4px;
}

.service-card p {
  margin-top: 0;
  color: var(--muted);
}

.dreams-section {
  position: relative;
  padding: 120px 0;
  background-image: url("https://vip-dosug24.com/wp-content/uploads/2022/12/tsariza.jpg");
  background-size: cover;
  background-position: center;
}

.dreams-section .container {
  position: relative;
  z-index: 2;
}

.long-text {
  padding: 80px 0;
  background: #000;
}

.text-column {
  width: min(760px, calc(100% - 40px));
}

.text-column ul {
  padding-left: 24px;
}

.site-footer {
  background: #000;
  text-align: center;
  padding-top: 70px;
}

.footer-vip {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto 40px;
}

.footer-vip h2 {
  font-size: clamp(22px, 4vw, 32px);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 45px;
  font-size: 14px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 45px 35px;
  align-items: start;
}

.footer-columns h2 {
  font-size: 28px;
}

.footer-mark {
  width: 74px;
  margin: 0 auto 12px;
}

.copyright {
  min-height: 80px;
  padding: 24px;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 80px;
    grid-template-columns: auto 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .header-btn {
    font-weight: 900;
    padding: 10px 15px;
    min-height: 28px;
    font-size: 10px;
  }

  .mobile-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    width: 120px;
  }

  .hero {
    min-height: 520px;
  }

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

  .section-split,
  .gay-grid {
    grid-template-columns: 1fr;
  }

  .split-content {
    padding: 55px 30px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1200px);
  }

  .hero {
    min-height: 430px;
  }

  .hero-content {
    padding: 120px 14px 80px;
  }

  .intro,
  .profiles-section,
  .services-section,
  .long-text {
    padding: 50px 0;
  }

  .button-row,
  .two-columns,
  .services-grid {
    grid-template-columns: 2fr;
  }

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

  .gay-section {
    padding: 55px 0;
  }

  .footer-nav {
    gap: 18px;
  }
}