:root {
  --primary: #ff1182;
  --primary-light: #ff77b8;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 17, 130, 0.25);
  --accent-soft: rgba(255, 17, 130, 0.12);
  --action-gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
  --whatsapp-gradient: linear-gradient(135deg, #25d366, #128c7e);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background-color: #100c0f;
  background-image:
    radial-gradient(rgba(255, 17, 130, .18) 1px, transparent 1px),
    linear-gradient(135deg, #0d090c 0%, #21121b 52%, #100c0f 100%);
  background-size: 22px 22px, 100% 100%;
  background-attachment: fixed;
  color: var(--text);
 /*font-family: "Roboto";*/
  font-family:"Barlow Semi Condensed",sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
body.menu-open,
body.age-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.full-container { max-width: 100%; margin: 0 auto; padding: 0 24px; }

.service-icon,
.author-avatar,
.footer-social a:not(.dmca-badge),
.sticky-contact a,
.age-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.section-eyebrow,
.profile-actions a,
.split-actions a,
.drawer-quick a,
.gallery-grid article a,
.dmca-badge,
.age-actions button,
.age-actions a,
.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb,
.section-eyebrow,
.profile-info span,
.location-cloud a,
.tags-cloud a,
.tags-toggle,
.cookie-popup button { border-radius: 999px; }

.single-copy,
.split-copy,
.faq-visual {
  border: 1px solid var(--line);
  border-radius: 22px;
}

.location-cloud,
.tags-cloud,
.footer-menu,
.footer-social {
  display: flex;
  flex-wrap: wrap;
}

.footer-menu,
.footer-social {
  align-items: center;
  justify-content: center;
}

.nav-toggle,
.tags-cloud .tag-extra,
.mobile-cta-bar { display: none; }

.notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 32px;
  overflow: hidden;
  background: #ff1182;
  color: #fff;
  transform: translateY(0);
  transition: transform .22s ease;
}
 
 .notice-bar.hide { transform: translateY(-100%); }

.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 70;
  background: rgba(18, 13, 17, 0.94);
  transition: top .22s ease;
}
.navbar.stuck { top: 0; }
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  color: var(--primary);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .4px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: #fde8ec;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  background: var(--primary);
  border-radius: 20px;
}
.breadcrumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 17, 130,.32);
  color: rgba(255,247,248,.82);
  background: rgba(18, 13, 17,.68);
  font-size: 14px;
  font-weight: 700;
}
.breadcrumb a,
.hero-note a { color: var(--primary-light); }
.brand span,
.breadcrumb span:last-child { color: #fff; }
.contact-hero-list {
  display: grid;
  gap: 14px;
}
.contact-hero-list p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 17, 130,.28);
  border-radius: 14px;
  background: rgba(18, 13, 17,.72);
  color: rgba(255,247,248,.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}
.contact-hero-list i {
  min-width: 22px;
  margin-top: 4px;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-img,
.hero-dark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img { object-fit: cover; }
.hero-dark,
.shade-one {
  background: linear-gradient(145deg, #ff1182, #24131d);
}
.hero-content {
  position: relative;
  text-align: center;
}
h1,
h2,
h3 {
  margin: 0;
 
  line-height: 1.38;
}
h1 {
  max-width: 980px;
  margin: 0 auto 10px;
  color: #e1b8cb;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
}
h2 {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
}
h3 { color: var(--primary-light); font-size: 25px; }
h5 { color: var(--primary-light); font-size: 16px;   
    margin-top: 5px;
    margin-bottom: 0px; }
.search-box {
  width: min(540px, 100%);
  margin: 0 auto;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(48, 18, 34, .72);
}
.search-box p {
  margin: 0 0 12px;
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 17, 130, .36);
  border-radius: 12px;
  background: #fff;
  color: #21131b;
  font: inherit;
}
.hero-note { margin: 18px 0 0; color: #fff; font-weight: 700; }

.split-section,
.profile-list,
.gallery-section,
.faq-section,
.locations-section { padding-bottom:40px; }
 .locations-section{
 margin-top: 10px;
  background-image: linear-gradient(to right, #591135 0%, #331324 100%);
 }
#city{
padding-top:10px;     
}
.single-copy,
.split-copy {
  background: rgba(255, 17, 130,.10);
  padding: 36px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.single h2,
.single p,
.single li {
  color: #000;
}
.single{
    background: linear-gradient(90deg, #ffe4f1 0%, #ff77b8 100%);
}
p {
    font-size: 16px;
    line-height: 1.5;
    text-align:justify;
    }
    .hero-content p{
        text-align:center;  
    }
ul { 
 
    padding-left: 22px; }
    li{
      color:#e7e4e4f5;
    }
    
.single-copy p,
.split-copy p { margin: 16px 0; }
.category-section {
  padding-top: 34px;
  background: rgba(33, 18, 27,.36);
}
.category-copy h2 {
  margin-bottom: 20px;
  color: var(--primary);
}
.category-copy h3 {
  margin: 30px 0 10px;
  color: var(--primary);
  font-size: 24px;
}
.category-copy p {
  margin: 0 0 20px;
  color: rgba(255,247,248,.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.category-list {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}
.category-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid rgba(255, 17, 130,.13);
  color: rgba(255,247,248,.94);
  font-size: 14px;
  font-weight: 700;
}
.category-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
}
.center,
.section-header {
    text-align: center; 
}
.section-header {
    margin-bottom: 20px;
    padding-top: 20px;
}
.section-eyebrow {
  min-height: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
  border: 1px solid rgb(226 213 4);
  background:var(--accent-soft);
  color:#e2d504;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

 
.divider {
  width: 84px;
  height: 2px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.split-img span,
.feature-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 13, 17,.82);
  border: 1px solid var(--line);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
}

.profile-list { background: rgba(0, 0, 0, .16); }
.profile-stack {
  display: grid;
  gap: 24px;
}
.profile-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 300px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(80, 18, 48,.82), rgba(33, 18, 27,.9));
}
.profile-photo,
.card-image {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
 
  font-size: 86px;
  font-weight: 900;
}
.profile-photo img,
.card-image img {
  width: auto;
  height: 100%;
  max-height: 250px;
  object-fit: cover;
}
.blur-profile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.blur-profile::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: 0;
  background: var(--profile-bg) center / cover no-repeat;
  filter: blur(14px);
  transform: scale(1.12);
}
.blur-profile img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.shade-two { background: linear-gradient(145deg, #ff1182, #551335); }
.shade-three { background: linear-gradient(145deg, #127b70, #16050b); }
.shade-four { background: linear-gradient(145deg, #6d3979, #260012); }
.profile-info { padding: 28px; }
.profile-info span {
  margin: 10px 0 12px;
  padding: 5px 14px;
  border: 1px solid var(--line);
  color: var(--primary-light);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
}
.profile-info p { margin: 0 0 10px; }
.profile-actions,
.split-actions,
.drawer-quick,
.gallery-grid article div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.profile-actions a,
.split-actions a,
.drawer-quick a,
.gallery-grid article a {
  min-height: 42px;
  padding: 0 25px;
  border-radius: 11px;
  color: #210f19;
  background: var(--action-gradient);
  font-size: 13px;
  font-weight: 900;
}

.btn-icon {
  margin-right: 6px;
  font-size: 14px;
}
.call-icon { color: #210f19; }
.whatsapp-icon {
  color: #fff;
  font-size: 15px;
}
.profile-actions .green,
.split-actions .green,
.drawer-quick .green,
.gallery-grid article .green,
.sticky-whatsapp,
.mobile-whatsapp {
  color: #fff;
  background: var(--whatsapp-gradient);
}
.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.split-img,
.faq-visual {
  position: relative;
  overflow: hidden;
}
.split-img img,
.faq-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.vip-section {
  padding: 40px 0 42px;
}
.exclusive-section {
  padding: 42px 0 40px;
}

.benefits-section {
  padding: 40px 0;
  background: rgba(33, 18, 27,.24);
}
.services-section {
  padding: 16px 0;
  background: rgba(24, 16, 21,.36);
}
.services-header {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.services-grid article {
  min-height: 260px;
  padding: 38px 30px;
  border: 1px solid rgba(255, 17, 130,.34);
  border-radius: 18px;
  background: rgba(80, 18, 48,.52);
  text-align: center;
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 17, 130,.42);
  color: var(--primary);
  background: var(--accent-soft);
  font-size: 24px;
}
.services-grid h3 {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 20px;
}
.services-grid p {
  margin: 0;
  color: rgba(255,247,248,.74);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}
.contact-copy-section {
  padding: 70px 0;
  background: rgba(33, 18, 27,.28);
}
.contact-copy h2 {
  margin-bottom: 22px;
  color: var(--primary);
}
.contact-copy p {
  margin: 0 0 22px;
  color: rgba(255,247,248,.94);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}
.author-row span,
.author-row strong {
  display: block;
  color: #fff;
  line-height: 1.15;
}
.author-row span { font-size: 13px; }
.author-row strong { font-size: 16px; }
.feature-panel {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 64px;
  align-items: center;
}
.feature-panel.reverse { grid-template-columns: .95fr 1fr; }
.feature-copy h2 {
  max-width: 760px;
  margin: 26px 0 24px;
}
.feature-copy p {
  margin: 0 0 22px;
  color: rgba(255,247,248,.92);
  font-weight: 500;
}
.feature-copy .gold-copy {
  color: var(--primary);
  font-weight: 900;
}
.feature-copy p strong,
.feature-copy p a { color: var(--primary); }
.feature-list {
  margin: 22px 0 34px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--accent-soft);
  color: rgba(255,247,248,.92);
  font-size: 13px;
  font-weight: 500;
}
.feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}
.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(255, 17, 130,.36);
}
.feature-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

 
.gallery-section { background: rgba(0,0,0,.22); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.gallery-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(62, 17, 40,.82);
}
.card-image {
  height: 350px;
  font-size: 76px;
  overflow:hidden;
}
.gallery-grid article > span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #210f19;
  font-size: 11px;
  font-weight: 900;
}
.gallery-grid h3,.gallery-grid h5,
.gallery-grid p,
.gallery-grid article div:last-child { margin-left: 18px; margin-right: 18px; }
.gallery-grid h3 { margin-top: 16px; }
.gallery-grid p { margin: 0 18px; color: #d5d5d4; font-size: 12px; font-weight: 500; }
.gallery-grid article div:last-child { margin-bottom: 18px; }
 

.faq-section { background: rgba(0,0,0,.14);    padding-top: 10px; }
details {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 17, 130,.1);
  overflow: hidden;
}
summary {
  padding: 17px 20px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
details p { padding: 0 20px 18px; margin: 0; }

.location-cloud {
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  border-radius: 24px;
}
.location-cloud a {
  padding: 4px 16px;
  border: 1px solid var(--line);
  color: var(--primary-light);
  background: rgba(255, 17, 130,.1);
  font-size: 16px;
  font-weight: 700;
}
.location-cloud a:nth-child(2),
.location-cloud a:nth-child(6),
.location-cloud a:nth-child(10) {
  border-color: rgba(255, 17, 130,.5);
  color: var(--primary);
  background: linear-gradient(180deg, #6b1746, #3c1028);
}
.location-cloud a:nth-child(3),
.location-cloud a:nth-child(7) {
  border-color: rgba(255,255,255,.2);
  color: #ead2d8;
  background: linear-gradient(180deg, #54303a, #3b2028);
}
.location-cloud a:nth-child(4),
.location-cloud a:nth-child(8) {
  border-color: rgba(255, 119, 184, .7);
  color: #8b0a4b;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
}
.tags-section {
  padding: 20px 0;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
.tags-cloud {
  gap: 10px;
}
.tags-cloud a,
.tags-toggle {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: linear-gradient(180deg, #74083f, #3d0d29);
  font-size: 14px;
  font-weight: 900;
}
.tags-cloud a:nth-child(even) {
  border-color: rgba(255, 17, 130,.5);
  color: var(--primary);
  background: linear-gradient(180deg, #691643, #3b1027);
}
.tags-cloud.expanded .tag-extra { display: inline-flex; }
.tags-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #6ed5ff;
  color: #fff;
  background: #ff2f83;
  cursor: pointer;
}
.tags-cloud.expanded .tags-toggle i { transform: rotate(180deg); }
.footer {
  padding: 30px 0 22px;
  border-top: 1px solid var(--line);
  background: #0d090c;
  text-align: center;
}
.footer-menu {
  gap: 22px 32px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 18px;
}
.footer-menu a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.footer-menu a:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.32);
  transform: translateY(-50%);
}
.footer-social {
  gap: 14px;
  margin-top: 22px;
}
.footer-social a:not(.dmca-badge) {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 17, 130,.32);
  color: var(--primary-light);
  background: rgba(255, 17, 130,.08);
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
 
 
.dmca-badge {
  margin-left: 8px;
}
.dmca-badge img {
  width: 132px;
  filter: brightness(0) invert(1);
}
.copyright-section {
  padding: 0px 0 12px;
  background: #090608;
  text-align: center;
}
.copyright-section::before {
  content: "";
  display: block;
  width: min(82%, 1160px);
  height: 1px;
  margin: 0 auto 15px;
  background: rgba(255, 17, 130,.18);
}

.copyright-section p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.cookie-popup {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(980px, calc(100% - 32px));
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(180deg, #72083e, #3c0c28);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: translateX(-50%);
}
.cookie-popup.show { display: flex; }
.cookie-popup[hidden] { display: none; }
.cookie-popup p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}
.cookie-popup button {
  min-width: 140px;
  min-height: 48px;
  border: 0;
  background: linear-gradient(180deg, #ff3b98, #d30b6d);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
 
}
.sticky-contact {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 99;
  display: grid;
  gap: 12px;
}
.sticky-contact a {
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 12px 34px rgba(0,0,0,.36);
}
.sticky-contact .sticky-phone {
  color: #210f19;
  background: var(--action-gradient);
}
.sticky-telegram { background: linear-gradient(135deg, #2aabee, #1288d6); }
.sticky-side-tab {
  position: fixed;
  top: 50%;
  left: -52px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #fff;
  background: #ff1182;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%) rotate(+90deg);
  transform-origin: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
}
.sticky-side-tab span { font-size: 21px; }

.footer h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.drawer-shadow {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(86vw, 360px);
  height: 100vh;
  padding: 20px;
  background: linear-gradient(160deg, #351023, #130d11);
  border-left: 1px solid var(--line);
  
  transform: translateX(100%);
  transition: transform .25s ease;
}
body.menu-open .drawer { transform: translateX(0); }
body.menu-open .drawer-shadow { opacity: 1; pointer-events: auto; }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.drawer-head strong {
  color: var(--primary);
 
  font-size: 24px;
}
.drawer-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.drawer-nav {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}
.drawer-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 17, 130,.16);
  color: #fff;
  font-weight: 800;
}
.drawer p { font-size: 13px; color: var(--muted); }

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(12px);
}
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 18px;
}
body.age-open .age-overlay,
body.age-open .age-modal { display: grid; }
.age-box {
  width: min(470px, 100%);
  padding: 38px 32px;
  border: 1px solid rgba(255, 17, 130,.45);
  border-radius: 24px;
  background: linear-gradient(145deg, #4c1030, #241019);
  text-align: center;
}
.age-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  background: var(--primary);
  color: #210f19;
  font-weight: 900;
  font-size: 34px;
}
.age-box h2 { color: var(--primary-light); font-size: 28px; }
.gold-line { color: var(--primary-light); font-size: 13px; font-weight: 900; }
.age-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  text-align: left;
}
.age-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.age-list li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
  font-weight: 900;
}
.age-small { font-size: 12px; }
.age-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.age-actions button,
.age-actions a {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--action-gradient);
  color: #210f19;
  cursor: pointer;
  font-weight: 900;
}
.age-actions a {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .profile-row,
  .split-grid,
  .faq-grid,
  .feature-panel,
  .feature-panel.reverse { grid-template-columns: 1fr; }
  .feature-panel { gap: 34px; }
  .exclusive-section .feature-image { order: 2; }
  .exclusive-section .feature-copy { order: 1; }
  .gallery-grid,
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-photo { min-height: 260px; }
}
.align-center{
      text-align: center;
  }
@media (max-width: 620px) {
  
  .faq-visual{
      display:none;
  }
   body {
    padding-bottom: 64px;
    font-size: 15px;
  }
  .contact-hero-list p {
    padding: 14px;
    font-size: 14px;
  }
  
  .container,.full-container { padding: 16px 16px; }
  .nav-inner { height: 62px; }
  .brand { font-size: 20px; }
  .hero {  padding-top: 92px; }
  h1 { font-size: 34px; }
  h2 { font-size: 29px; }
  .split-section,
  .profile-list,
  .vip-section,
  .exclusive-section,
  .gallery-section,
  .benefits-section,
  .services-section,
  .contact-copy-section,
  .category-section,
  .faq-section,
  .tags-section,
  .locations-section { padding: 0px 0; }
  .exclusive-section{
      margin-left:10px;
      margin-right:10px;
  }
  .single-copy,
  .split-copy { padding: 24px; border-radius: 18px; }
  .profile-row { min-height: auto; }
  .profile-info { padding: 22px; }
  .profile-photo { min-height: 230px; }
  .gallery-grid,
  .services-grid { grid-template-columns: 1fr; }
  .card-image,
  .card-image img { height: 230px; }
  .feature-copy h2 { margin: 18px 0; }
  .feature-copy p,
  .feature-list li { font-size: 16px; }
  .feature-image { border-radius: 0px; }
  .vip-section {margin-top:10px;}
  .feature-image img,
  .benefits-image img { height: 420px; }
.vip-section .section-eyebrow,.feature-copy .section-eyebrow {
    display: flex;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
  .vip-section .feature-panel,
  .benefits-section .feature-panel { gap: 5px; }
  .exclusive-section .feature-panel,
  .split-section .split-grid,.profile-row {
     gap: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
  }
  .profile-row{
    padding-top: 0px !important;   
  }
  .split-section .split-grid {
    background: rgba(255, 17, 130,.10);
  }
  .vip-section .feature-copy,
  .benefits-section .feature-copy,
  .exclusive-section .feature-copy,
  .split-section .split-copy { display: contents; }
  .vip-section .section-eyebrow,
  .benefits-section .section-eyebrow,
  .exclusive-section .section-eyebrow,
  .split-section .section-eyebrow {
    order: 1;
    margin-bottom: 0;
    justify-self: center;
  }
  .vip-section .feature-copy h2,
  .benefits-section .feature-copy h2,
  .exclusive-section .feature-copy h2,
  .split-section .split-copy h2 {
    order: 2;
    margin: 0;
    text-align: center;
  }
  .vip-section .feature-copy > p:first-of-type,
  .benefits-section .feature-copy > p:first-of-type,
  .exclusive-section .feature-copy > p:first-of-type,
  .split-section .split-copy > p:first-of-type {
    order: 3;
    margin: 0;
    text-align: center;
  }
  .vip-section .feature-image,
  .benefits-section .feature-image,
  .exclusive-section .feature-image,
  .split-section .split-img {
    order: 4;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .vip-section .feature-image img,
  .benefits-section .feature-image img,
  .exclusive-section .feature-image img,
  .split-section .split-img img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .vip-section .feature-copy > p:not(:first-of-type),
  .benefits-section .feature-copy > p:not(:first-of-type),
  .exclusive-section .feature-copy > p:not(:first-of-type),
  .split-section .split-copy > p:not(:first-of-type) {
    order: 5;
    margin: 0;
  }
  .mt-10{
      margin-top:10px !important;
  }
  .vip-section .feature-list,
  .benefits-section .feature-list { order: 5; }
   
  .services-grid article {
    min-height: auto;
    padding: 28px 22px;
  }
  .location-cloud { gap: 10px; }
  .location-cloud a {
    font-size: 14px;
    padding: 7px 12px;
  }
  .profile-actions a,
  .split-actions a,
  .drawer-quick a,
  .gallery-grid article a {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 0 14px;
  }
  .footer-menu {
    gap: 14px 24px;
    padding: 0;
  }
  .footer-menu a { font-size: 16px; }
  .footer-menu a:not(:first-child)::before {
    left: -12px;
    height: 14px;
  }
   .footer-social {
    gap: 10px;
    margin-top: 18px;
  }
  .footer-social a:not(.dmca-badge) {
    font-size: 14px;
  }
  .dmca-badge {
    flex-basis: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
   .sticky-contact {
    right: 12px;
    bottom: 62px;
    gap: 9px;
  }
  .sticky-contact a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
 .copyright-section { padding-bottom: 22px; }
.sticky-side-tab {
    left: -44px;
    right: auto;
    padding: 9px 12px;
    font-size: 13px;
  }
  .sticky-side-tab span { font-size: 18px; }
   .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 8px 14px;
    background-image: linear-gradient(to right, #434343 0%, black 100%);
  }
  .mobile-cta-bar a {
    min-height: 42px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
  }
  .mobile-cta-bar i { margin-right: 8px; }
  .mobile-call {
    color: #8b0a4b;
    background: var(--action-gradient);
  }
  .cookie-popup {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding:10px;
  }
  .cookie-popup p { font-size: 14px; }
  .cookie-popup button {
    width: 100%;
    min-height: 40px;
  }
  .age-actions { flex-direction: column; }
}
.m-10{
    margin:10px;
}
