:root {
  --page-bg: #ffffff;
  --dark: #222222;
  --darker: #1f1f1f;
  --content-bg: rgba(31, 31, 31, 0.86);
  --card: rgba(236, 236, 228, 0.94);
  --card-line: rgba(194, 194, 182, 0.9);
  --text: #111111;
  --muted: #767676;
  --button: #302d28;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

button {
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 0 12px 40px;
}

.page-shell::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: min(100%, 390px);
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("assets/img/background.jpg") center top / cover no-repeat;
}

.phone-page {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--content-bg);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.hero {
  position: relative;
  min-height: 600px;
  color: #fff;
  background: var(--darker);
  overflow: hidden;
}

.hero > img,
.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 16px 34px;
  text-align: center;
}

.hero h1 {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0 auto auto;
  padding-top: 18px;
  overflow: hidden;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-align: left;
  text-overflow: clip;
  white-space: nowrap;
}

.hero-marquee {
  pointer-events: none;
}

.hero-marquee-track {
  display: inline-flex;
  width: max-content;
  color: #fff;
  -webkit-text-fill-color: #fff;
  will-change: transform;
  animation: hero-marquee 13s linear infinite;
}

.hero-marquee-group {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero p {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}

.socials a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: #fff;
}

.socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 28px;
  line-height: 1;
  opacity: 0.9;
}

.services-section {
  padding: 26px 16px 52px;
  color: #fff;
  background: rgba(31, 31, 31, 0.74);
  text-align: center;
}

h2,
h3,
p {
  margin: 0;
}

h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

h3 {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.near {
  margin: 22px 0 26px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.services-section h2 {
  font-size: 26px;
  line-height: 1.25;
}

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

.service-tile {
  position: relative;
  display: grid;
  gap: 7px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.service-tile img {
  aspect-ratio: 3 / 4;
  border-radius: 5px;
  object-fit: cover;
}

.price {
  position: absolute;
  right: 8px;
  bottom: 28px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.card {
  margin: 0 18px 46px;
  padding: 26px 22px;
  border: 1px solid var(--card-line);
  border-radius: 25px;
  background: var(--card);
  color: #111;
}

.services-section + .card {
  margin-top: 32px;
}

.card h2 {
  margin-bottom: 24px;
  padding-bottom: 0;
  font-size: 18px;
  text-align: center;
}

.card p + p,
.card ul + p,
.card p + h3 {
  margin-top: 10px;
}

.card p,
.card li {
  font-size: 14px;
}

.card ul {
  margin: 0 0 0 16px;
  padding: 0;
}

.card li {
  margin-bottom: 2px;
}

hr {
  border: 0;
  border-top: 1px solid var(--card-line);
  margin: 22px -12px;
}

.media-carousel {
  position: relative;
  margin: 0 18px 50px;
}

.media-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.media-strip::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc((100% - 16px) / 2);
  scroll-snap-align: start;
}

.media-strip img,
.poster-block img,
.poster-block video,
.photo-grid img {
  border-radius: 5px;
  object-fit: cover;
}

.media-strip img {
  aspect-ratio: 2 / 3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-arrow::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.carousel-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.carousel-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.carousel-prev {
  left: -8px;
}

.carousel-next {
  right: -8px;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 18px 54px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.onlyfans-card {
  margin: 0 18px 48px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.onlyfans-card img {
  aspect-ratio: 2.65 / 1;
  object-fit: cover;
}

.onlyfans-card div {
  padding: 12px 14px 6px;
}

.onlyfans-card p {
  font-size: 12px;
}

.muted {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 6px;
}

.onlyfans-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 25px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.gallery-section {
  margin: 0 18px 50px;
  color: #fff;
}

.gallery-section h2 {
  margin-bottom: 24px;
  text-align: center;
}

.photo-grid {
  counter-reset: outfit;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
}

.photo-grid button {
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  scroll-margin: 12px;
}

.photo-grid button::after {
  counter-increment: outfit;
  content: counter(outfit);
}

.photo-grid img {
  aspect-ratio: 4 / 5;
}

.poster-block {
  margin: 0 18px 52px;
}

.poster-block img,
.poster-block video {
  display: block;
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: center;
}

.poster-block:not(.wide) img,
.poster-block:not(.wide) video {
  aspect-ratio: 3 / 4;
}

.poster-block.wide img,
.poster-block.wide video {
  aspect-ratio: 3 / 2;
}

.inline-video {
  background: #111;
}

.schedule-card {
  margin-top: 0;
}

.schedule-card h2 {
  margin-bottom: 18px;
}

.map-card {
  padding: 0;
  overflow: hidden;
  border-radius: 25px;
  background: var(--card);
  color: #000;
}

.map-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  margin: 0;
  border-bottom: 1px solid var(--card-line);
  color: #000;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.map-link {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
}

.map-link img {
  height: auto;
  aspect-ratio: 578 / 253;
  object-fit: fill;
}

.map-link span {
  display: none;
}

.map-card p {
  margin: 0;
  padding: 24px 22px 4px;
  color: #000;
  font-size: 16px;
  line-height: 1.35;
}

.map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 22px 22px 28px;
  border: 0;
  border-radius: 25px;
  background: var(--button);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.final-card {
  margin-bottom: 0;
}

.final-card h2 {
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-content {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 720px);
  margin: 0;
}

.lightbox-content img {
  width: auto;
  max-width: min(100%, 720px);
  max-height: calc(92vh - 42px);
  border-radius: 6px;
  object-fit: contain;
}

.lightbox-caption {
  min-height: 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.lightbox-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.lightbox-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 21;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 28px;
  line-height: 42px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.72);
}

.service-modal[aria-hidden="false"] {
  display: flex;
}

.service-modal-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: 9px;
  background: #fff;
  color: #111;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.service-modal-panel h2 {
  min-height: 42px;
  padding: 12px 54px 10px;
  color: #111;
  font-size: 20px;
  text-align: center;
}

.service-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  z-index: 1;
  width: 32px;
  height: 32px;
  color: #111;
  font-size: 26px;
  line-height: 32px;
  opacity: 0.65;
}

.service-modal-image {
  max-height: min(56vh, 560px);
  object-fit: cover;
  object-position: center;
}

.service-modal-details {
  display: grid;
  gap: 8px;
  padding: 20px 22px 26px;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
}

.service-modal-details p,
.service-modal-details span {
  color: #111;
}

.service-modal-name {
  font-weight: 700;
}

.service-modal-included {
  white-space: pre-line;
}

@media (max-width: 750px) {
  .page-shell {
    padding: 0;
  }

  .page-shell::before {
    width: 100%;
  }

  .phone-page {
    width: 100%;
    min-height: 100vh;
    box-shadow: none;
  }

  .hero,
  .hero-overlay {
    min-height: min(151vw, 640px);
    max-height: 640px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.5vw, 42px);
  }

  .service-modal {
    padding: 8px;
  }

  .service-modal-panel {
    max-height: 94vh;
  }

  .service-modal-panel h2 {
    font-size: 18px;
  }

  .service-modal-details {
    font-size: 16px;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }
}
