@font-face {
  font-family: "Spaceland";
  src: url("./font/Spaceland-Ten.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --color-bg: #000;
  --color-accent: #ff5dfc;
  --color-light: #f5f5f5;

  --font-ui: "Alumni Sans SC", "Segoe UI", Arial, sans-serif;
  --font-marquee: "Spaceland", "Impact", "Arial Black", sans-serif;

  --hero-height: 100vh;
  --slide-width: 100%;
  --slides: 16;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.page {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.86;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: var(--hero-height);
  overflow: hidden;
  background-color: #090909;
}

.hero__header,
.hero__slider,
.hero__content {
  grid-area: 1 / 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  grid-area: 1 / 1;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0.2) 40%, rgba(20, 20, 20, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 6vh;
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: hero-fade-in 1.5s ease-out 0.5s forwards;
}



.hero__title {
  font-family: var(--font-ui);
  font-size: clamp(70px, 13vw, 204px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero__desc {
  font-family: var(--font-ui);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  max-width: 90vw;
  margin-top: 2vw;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  width: min(1710px, calc(100% - 48px));
  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.header__logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.header__logo img {
  width: 150px;
  height: 119px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 100px);
}

.header__nav a {
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.header__nav a:hover {
  opacity: 0.7;
}

.lang-switcher {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}

.lang-switcher__item {
  width: 80px;
  height: 50px;
  display: grid;
  place-items: center;

  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-switcher__item--active {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* Home / Gallery Pink Style Overrides */
.dark-page .lang-switcher__item {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.dark-page .lang-switcher__item--active {
  background: var(--color-accent);
  color: #fff;
}

.girl-card__booking {
  text-transform: uppercase;
}

/* Slider: viewport + track preserved */
.hero-slider,
.hero-slider__viewport {
  width: 100%;
  min-height: var(--hero-height);
  overflow: hidden;
}

.hero-slider,
.hero-slider__viewport {
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  width: calc(100vw * var(--slides));
  height: var(--hero-height);
  will-change: transform;
  animation-name: hero-track;
  animation-duration: calc(var(--slides) * 3s);
  /* поменять время пролистывания слайдов */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-slider__slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: var(--hero-height);
  overflow: hidden;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ─── SCROLL 3D BLOCK ────────────────────────────────────────────── */

.scroll-block-3d {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4rem 0;
  /* Reduced padding for tighter transitions */
  overflow: hidden;
  background-color: #000;
}

.wrapper-3d {
  position: relative;
  perspective: 20vw;
  transform-style: preserve-3d;
  width: 100vw;
}

.fold {
  overflow: hidden;
  width: 100vw;
  height: 15vh;
  /* Unified height for a single row fold */
}

.fold-top {
  display: none;
}

.fold-center {
  width: 100vw;
  height: auto;
  /* Changed to auto to fit content exactly */
  min-height: 0;
}

.fold-bottom {
  display: none;
}

.fold-align {
  width: 100%;
  height: 100%;
}

.fold-bottom .fold-align {
  transform: translateY(-100%);
}

.fold-top .fold-align {
  transform: translateY(100%);
}

.scroll-marquee {
  color: var(--color-accent);
  font-family: var(--font-marquee);
  font-size: clamp(4.5rem, 3.64rem + 4.29vw, 9rem);
  font-weight: 400;
  line-height: 1.0;
  /* Increased by 25% from 0.8 to 1.0 */
  letter-spacing: -0.01em;
  /* Tighter letter-spacing for punchy look */
  height: auto;
  overflow: visible;
  position: relative;
  width: 100vw;
  margin: 0;
}

.scroll-marquee .track {
  display: block;
  /* Use block to avoid flexbox text-node spacing artifacts */
  white-space: nowrap;
  will-change: transform;
  padding: 0.1em 0;
  /* Reduced vertical padding */
}

.scroll-marquee .-focus {
  font-weight: 700;
  color: #fff;
  /* Highlight accent */
}

/* New faces */
.new-faces {
  padding: 25px 64px;
}

.new-faces__list {
  max-width: 1792px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.model-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: inherit;
  transition: transform 0.2s ease;
  transform-origin: center;
}

.model-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.model-card__gallery img {
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;
}

.model-card__name {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}

/* Footer */
.footer {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-bg);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 180px 251px;
}

.footer__brand {
  justify-self: start;
}

.footer__brand img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.footer__nav {
  display: flex;
  gap: clamp(80px, 8vw, 160px);
  justify-self: center;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__nav-col:last-child::after {
  content: "";
  display: block;
  height: 30px;
  /* Имитирует третью строку (30px font-size) для идеального выравнивания по горизонтали */
}

.footer__nav a {
  white-space: nowrap;
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-self: end;
  gap: 40px;
}

.footer__contacts,
.footer__socials {
  align-items: flex-start;
  text-align: left;
  padding: 0;
  box-sizing: border-box;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer__contacts p,
.footer__socials p {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  color: var(--color-light);
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 100;
  line-height: 1;
}

.footer__contacts a {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}

.footer__social-list {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.footer__social-list img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.footer__bottom {
  height: 103px;
  display: grid;
  place-items: center;
}

.footer__bottom a {
  color: var(--color-light);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 100;
  text-align: center;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.footer__bottom a:hover {
  opacity: 0.6;
}

.model-card__photo {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.model-card__photo img {
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;
}

.model-card__name {
  width: fit-content;
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.92);
}

.lightbox--active {
  display: flex;
}

.lightbox__image {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  border: 0;
  background: none;
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 80px;
  cursor: pointer;
}

.lightbox__close {
  top: 30px;
  right: 40px;
}

.lightbox__prev {
  left: 40px;
}

.lightbox__next {
  right: 40px;
}

.model-card__photo {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  /* важно — обрезает увеличенное изображение */
}

.model-card__photo img {
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;

  transition: transform 0.4s ease;
  /* плавность */
}

.model-card__photo:hover img {
  transform: scale(1.05);
  /* увеличение */
}

.model-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* отступ между фото */
}

/* Cursor Glow */
.cursor-glow {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--color-accent);
  filter: blur(64px);
  opacity: 0.45;
  pointer-events: none;
  position: fixed;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
  /* Faster transition for better feel */
  will-change: transform;
  left: 0;
  top: 0;
  display: block;
}

.cursor-glow--hidden {
  opacity: 0 !important;
}

.gallery-main,
.gallery-header,
.about-footer {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.gallery-model-label {
  position: absolute;
  bottom: 40px;
  /* Aligned with the scroll-to-top button level */
  z-index: 10;

  font-family: var(--font-ui);
  font-size: clamp(24px, 4.5vw, 54px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);

  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.manifesto-gallery-item .gallery-model-label {
  right: 120px;
  /* Shifted left to clear the scroll-to-top button */
}

.philosophy-gallery-item .gallery-model-label {
  left: 60px;
  /* Slight offset for premium balance */
}

.manifesto-gallery-item.active .gallery-model-label,
.philosophy-gallery-item.active .gallery-model-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .gallery-model-label {
    bottom: 30px;
  }

  .manifesto-gallery-item .gallery-model-label {
    right: 120px;
  }

  .philosophy-gallery-item .gallery-model-label {
    left: 60px;
  }
}

@media (max-width: 768px) {
  .gallery-model-label {
    bottom: 56px;
    /* Aligned with the center of the burger icon lines */
    font-size: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 120px);
    /* Leave space for burger/arrow on the right */
    text-align: center;
    white-space: normal;
    /* Allow wrap for long names if needed */
    line-height: 1.1;
  }

  .manifesto-gallery-item.active .gallery-model-label,
  .philosophy-gallery-item.active .gallery-model-label {
    transform: translateX(-50%) translateY(0);
  }

  /* Reset specific offsets for centered mobile layout */
  .manifesto-gallery-item .gallery-model-label,
  .philosophy-gallery-item .gallery-model-label {
    left: 50%;
    right: auto;
  }
}

/* Set specific backgrounds for the about/index page */
.about-page {
  background-color: #090909;
}

.about-page .about-main {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

/* Top sections should be #090909 and hide the cursor glow underneath */
.about-page .hero,
.about-page .about-manifesto,
.about-page .about-philosophy {
  background-color: #1a1a1a;
  position: relative;
  z-index: 2;
}

.about-page .scroll-block-3d {
  background-color: #000;
  position: relative;
  z-index: 2;
}

/* Lower sections and footer should be black */
.about-page .about-services,
.about-page .about-cta,
.about-page .footer {
  background-color: #000;
  position: relative;
  z-index: 2;
}


@media (max-width: 1200px) {
  .cursor-glow {
    display: none;
  }
}

/* Animations */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes hero-track {

  0%,
  6% {
    transform: translateX(0);
  }

  7%,
  13% {
    transform: translateX(calc(-100% / var(--slides)));
  }

  14%,
  20% {
    transform: translateX(calc(-200% / var(--slides)));
  }

  21%,
  27% {
    transform: translateX(calc(-300% / var(--slides)));
  }

  28%,
  34% {
    transform: translateX(calc(-400% / var(--slides)));
  }

  35%,
  41% {
    transform: translateX(calc(-500% / var(--slides)));
  }

  42%,
  48% {
    transform: translateX(calc(-600% / var(--slides)));
  }

  49%,
  55% {
    transform: translateX(calc(-700% / var(--slides)));
  }

  56%,
  62% {
    transform: translateX(calc(-800% / var(--slides)));
  }

  63%,
  69% {
    transform: translateX(calc(-900% / var(--slides)));
  }

  70%,
  76% {
    transform: translateX(calc(-1000% / var(--slides)));
  }

  77%,
  83% {
    transform: translateX(calc(-1100% / var(--slides)));
  }

  84%,
  90% {
    transform: translateX(calc(-1200% / var(--slides)));
  }

  91%,
  96% {
    transform: translateX(calc(-1300% / var(--slides)));
  }

  97%,
  100% {
    transform: translateX(calc(-1400% / var(--slides)));
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .header {
    width: calc(100% - 32px);
    gap: clamp(12px, 2vw, 28px);
    flex-wrap: nowrap;
    margin-top: 24px;
    padding: 12px 0;
    justify-content: space-between;
  }

  .header__logo,
  .lang-switcher {
    flex: initial;
  }

  .header__nav {
    gap: clamp(8px, 1.2vw, 24px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__nav a {
    font-size: clamp(14px, 2.2vw, 30px);
    white-space: nowrap;
  }

  .hero,
  .hero-slider,
  .hero-slider__viewport,
  .hero-slider__slide {
    min-height: 100vh;
  }

  .marquee__track span {
    width: 420px;
    font-size: 52px;
  }

  /* Gallery Page Container Fix */
  .gallery-page .new-faces {
    padding: 0 !important;
  }

  .model-card {
    margin-bottom: 40px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important; /* Stretch children to share the same width/baseline */
  }

  .model-card__gallery {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 0 0 0 24px !important; /* Left indent only for alignment; right is edge-to-edge */
    margin: 0 !important;
    width: 100% !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .model-card__gallery::-webkit-scrollbar {
    display: none;
  }

  .model-card__photo {
    flex: 0 0 72% !important; /* Shows 1 full + part of next */
    scroll-snap-align: start !important;
    height: 460px !important;
    width: auto !important;
  }

  .model-card__photo:first-child {
    margin-left: 0 !important; /* Margin replaced by parent padding for layout stability */
  }

  .model-card__photo:last-child {
    margin-right: 0 !important;
  }

  .model-card__photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .model-card__name {
    display: block !important;
    width: 100% !important;
    padding: 0 24px !important; /* Exactly matches gallery's left edge (24px) */
    margin: 15px 0 0 !important;
    font-size: 28px !important;
    text-align: left !important;
    letter-spacing: 0.05em;
  }

  /* Removed outdated footer overrides to prevent centering conflicts */
}

/* Girls page */

.girls-page,
.boys-page,
.new-faces-page {
  --color-bg: #ffffff;
  --color-accent: #111111;
  --color-light: #111111;

  background: #ffffff;
  color: #111111;
}

.girls-page .header__nav a,
.boys-page .header__nav a,
.new-faces-page .header__nav a,
.girls-page .footer__nav a,
.boys-page .footer__nav a,
.new-faces-page .footer__nav a,
.girls-page .footer__contacts a,
.boys-page .footer__contacts a,
.new-faces-page .footer__contacts a {
  color: #111111;
}

.girls-page .lang-switcher__item,
.boys-page .lang-switcher__item,
.new-faces-page .lang-switcher__item {
  color: #111111;
  border: 1px solid #111111;
}

.girls-page .lang-switcher__item--active,
.boys-page .lang-switcher__item--active,
.new-faces-page .lang-switcher__item--active {
  background: #111111;
  color: #ffffff;
}

.girls-page .footer,
.boys-page .footer,
.new-faces-page .footer,
.girls-page .footer__bottom,
.boys-page .footer__bottom,
.new-faces-page .footer__bottom {
  background: #ffffff;
}

.girls-page .footer__contacts p,
.boys-page .footer__contacts p,
.girls-page .footer__socials p,
.boys-page .footer__socials p,
.girls-page .footer__bottom a,
.boys-page .footer__bottom a {
  color: #b8b8b8;
}

.girls-header,
.boys-header,
.gallery-header {
  position: relative;
  top: auto;
  left: 50%;
  transform: translateX(-50%);

  width: min(1710px, calc(100% - 48px));
  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.girls-main,
.gallery-main {
  padding: 120px 0 40px;
}

.girls-catalog {
  width: min(1490px, calc(100% - 48px));
  margin: 0 auto;
}

.catalog-sortbar {
  width: 100%;
  margin-bottom: 42px;
}

.catalog-sortbar__items {
  display: grid;
  grid-template-columns:
    150px 150px 150px 150px 185px 150px 185px 150px;

  justify-content: space-between;
  align-items: start;
  width: 100%;
}

/* Custom catalog dropdown */

.catalog-filter {
  position: relative;
  width: 150px;
  height: 62px;
}

.catalog-filter--wide {
  width: 185px;
}

.catalog-filter__button {
  width: 100%;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #111111;

  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

.catalog-filter__label {
  color: #b8b8b8;
  white-space: nowrap;
}

.catalog-filter__value {
  color: #111111;
  white-space: nowrap;
}

.catalog-filter__arrow {
  margin-left: 8px;
  color: #111111;
  line-height: 1;
}

.catalog-filter__list {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 30;

  width: 100%;
  max-height: 310px;
  overflow-y: auto;

  display: none;

  border: 1px solid #b8b8b8;
  background: #f5f5f5;
}

.catalog-filter--active .catalog-filter__list {
  display: block;
}

.catalog-filter__item {
  width: 100%;
  height: 54px;

  border: 0;
  border-bottom: 1px solid #d8d8d8;
  background: #f5f5f5;
  color: #111111;

  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;

  text-align: center;
  cursor: pointer;
}

.catalog-filter__item:hover {
  background: #ffffff;
}

.catalog-filter__item:last-child {
  border-bottom: 0;
}

.catalog-filter__item--selected {
  background: #111111;
  color: #ffffff;
}

.catalog-filter__item--selected:hover {
  background: #111111;
  color: #ffffff;
}

.catalog-sortbar__toggle {
  display: none;
}

.catalog-sortbar__reset {
  width: 150px;
  height: 62px;

  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #b8b8b8;

  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.catalog-sortbar__reset:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  opacity: 1;
}

@media (max-width: 1200px) {
  .catalog-sortbar__items {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }
}

@media (max-width: 640px) {

  .catalog-filter,
  .catalog-filter--wide,
  .catalog-sortbar__reset {
    width: 100%;
  }

  .catalog-sortbar__items {
    flex-direction: column;
    align-items: stretch;
  }
}

.girls-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 62px;
  row-gap: 62px;
}

.girl-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.girl-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eeeeee;
}

.girl-card__image {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* обычное изображение */
.girl-card__image--main {
  opacity: 1;
  transition: opacity 0.55s ease 0.25s;
}

/* изображение при наведении */
.girl-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease 0.12s;
}

/* при наведении показываем первое фото из профиля */
.girl-card__image-link:hover .girl-card__image--main {
  opacity: 0;
}

.girl-card__image-link:hover .girl-card__image--hover {
  opacity: 1;
}

.girl-card__image-link:hover {
  opacity: 1;
}

.girl-card__name {
  margin: 18px 0 !important; /* Balanced spacing: 18px top and 18px bottom */

  color: #111111;
  font-family: var(--font-ui);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.girl-card__booking {
  height: 48px;
  margin-top: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 1px solid #cfcfcf;
  color: #b8b8b8;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 200;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.girls-footer,
.boys-footer {
  margin-top: 80px;
}

/* если SVG-логотипы у тебя розовые/белые, это временно делает их черными */
.girls-page .header__logo img,
.boys-page .header__logo img,
.new-faces-page .header__logo img,
.girls-page .footer__brand img,
.boys-page .footer__brand img,
.new-faces-page .footer__brand img,
.girls-page .footer__social-list img,
.boys-page .footer__social-list img,
.new-faces-page .footer__social-list img {
  filter: brightness(0);
}

@media (max-width: 640px) {
  .catalog-sortbar {
    width: 100% !important;
    margin: 0 0 32px 0 !important;
    display: flex !important;
    flex-direction: column !important; /* Stack toggle button and items vertically */
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }

  .girls-catalog__grid,
  .boys-catalog__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .girls-catalog,
  .boys-catalog {
    width: 100% !important;
    padding: 0 24px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .girl-card,
  .boy-card {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

.catalog-sortbar__item--wide {
  width: 185px;
  flex: 0 0 185px;
}

@media (max-width: 640px) {
  .girl-card__booking {
    height: 46px;
    font-size: 30px;
  }
}

.footer__brand a {
  display: block;
  width: fit-content;
}

.footer__brand img {
  display: block;
}

/* Model profile page */

.model-profile-main {
  padding: 80px 0 40px;
}

.model-profile {
  width: min(1710px, calc(100% - 48px));
  margin: 0 auto;
}

.model-profile__info {
  min-height: 72px;
  border: 1px solid #cfcfcf;

  display: flex;
  align-items: center;
  gap: 60px;

  padding: 0 70px;
}

.model-profile__name {
  margin: 0;
  white-space: nowrap;

  color: #111111;
  font-family: "Spaceland", "Impact", "Arial Black", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
}

.model-profile__params {
  margin: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.model-profile__params div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.model-profile__params dt,
.model-profile__params dd {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 25px;
  line-height: 1;
}

.model-profile__params dt {
  color: #111111;
  font-weight: 500;
}

.model-profile__params dd {
  color: #b8b8b8;
  font-weight: 200;
}

.model-profile__top-gallery {
  margin-top: 38px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.model-profile__top-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 530 / 730;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.model-profile__booking {
  width: 100%;
  height: 55px;
  margin-top: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #cfcfcf;

  color: #b8b8b8;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.model-profile__gallery {
  width: 100%;
  margin-top: 38px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  column-gap: 80px;
  align-items: start;
}

.model-profile__gallery-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.model-profile__photo {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Маленькие изображения — левый столб */
.model-profile__photo--small {
  aspect-ratio: 1 / 1;
}

/* Большие изображения — правый столб */
.model-profile__photo--large {
  aspect-ratio: 1 / 1.28;
}

.model-profile__photo--small {
  aspect-ratio: 1 / 1.3;
}

.model-profile__photo--large {
  aspect-ratio: 1 / 1.48;
}

@media (max-width: 1200px) {
  .model-profile__info {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .model-profile__params {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .model-profile__top-gallery {
    gap: 24px;
  }

  .model-profile__gallery {
    column-gap: 32px;
    row-gap: 32px;
  }
}

@media (max-width: 640px) {
  .model-profile-main {
    padding-top: 60px;
  }

  .model-profile {
    width: calc(100% - 32px);
  }

  .model-profile__name {
    font-size: 34px;
  }

  .model-profile__params dt,
  .model-profile__params dd {
    font-size: 24px;
  }

  .model-profile__top-gallery {
    grid-template-columns: 1fr;
  }

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

  .model-profile__photo:nth-child(3),
  .model-profile__photo:nth-child(4),
  .model-profile__photo:nth-child(5) {
    grid-column: auto;
  }
}

/* ─── MODEL PROFILE PROTOTYPE (Mobile) ────────────────────────── */

@media (max-width: 640px) {
  .model-profile-page .model-profile-main {
    padding-top: 110px !important; /* Clears header area */
  }

  .model-profile-page .model-profile__info {
    padding: 20px 16px !important;
    gap: 12px !important;
    min-height: auto !important;
    border: 1px solid #cfcfcf !important; /* Restored border */
    display: block !important; /* Stack name and params vertically */
    margin-bottom: 24px !important;
  }

  .model-profile-page .model-profile__name {
    font-size: 28px !important;
    margin-bottom: 16px !important;
    text-align: left !important;
  }

  .model-profile-page .model-profile__params {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 8px !important;
    width: 100% !important;
    justify-content: start !important;
  }

  .model-profile-page .model-profile__params div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  .model-profile-page .model-profile__params div:nth-child(7) {
    display: none !important; /* Removed Hair from mobile per request */
  }

  .model-profile-page .model-profile__params dt,
  .model-profile-page .model-profile__params dd {
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
  }

  .model-profile-page .model-profile__params dt {
    text-transform: uppercase;
    font-size: 10px !important;
    color: #000 !important; /* Black names as requested */
    opacity: 1 !important;
    font-weight: 500 !important;
  }

  /* Gallery Overrides */
  .model-profile-page .model-profile__top-gallery {
    margin-top: 0 !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 photos in one row */
    gap: 8px !important;
  }

  .model-profile-page .model-profile__booking {
    margin: 20px 0 32px !important;
    height: 48px !important;
    font-size: 20px !important;
    background: transparent !important; /* Reverted fill */
    color: #b8b8b8 !important; /* Reverted to light gray */
    border: 1px solid #cfcfcf !important; /* Outlined style */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 200;
  }

  .model-profile-page .model-profile__gallery {
    margin-top: 0 !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    display: grid !important;
  }

  .model-profile-page .model-profile__gallery-column {
    display: contents !important; /* Flatten columns into the grid */
  }

  .model-profile-page .model-profile__photo {
    aspect-ratio: 2 / 3 !important;
    margin-bottom: 0 !important;
  }
}

.modal-open {
  overflow: hidden;
}

/* Duplicate booking modal styles removed during audit */

.booking-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-modal__textarea {
  width: 100%;
  height: 200px;

  padding: 70px 24px 24px;

  resize: none;

  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #111111;

  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 200;
  line-height: 1.4;
  text-align: center;

  outline: none;
}

.booking-modal__textarea::placeholder {
  color: #b8b8b8;
}

.booking-modal__textarea:focus::placeholder {
  opacity: 0;
}

.booking-modal__textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.booking-modal__textarea:focus::-moz-placeholder {
  opacity: 0;
}

.booking-modal__textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.booking-modal__form input {
  width: 100%;
  height: 42px;

  border: 1px solid #b8b8b8;
  background: transparent;

  color: #111111;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 200;
  text-align: center;
}

.booking-modal__form input::placeholder {
  color: #b8b8b8;
}

.booking-modal__form input:focus::placeholder {
  opacity: 0;
}

.booking-modal__form input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.booking-modal__form input:focus::-moz-placeholder {
  opacity: 0;
}

.booking-modal__form input:focus:-ms-input-placeholder {
  opacity: 0;
}

/* textarea внутри booking modal — выровнено под input-поля */
.booking-modal__form .apply-form__textarea {
  height: 200px;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: inherit;
  padding: 90px 24px 0;
  margin-bottom: 0;
}

.booking-modal__form .apply-form__textarea::placeholder {
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  color: #b8b8b8;
  opacity: 1;
}

.booking-modal__form .apply-form__textarea:focus::placeholder,
.booking-modal__form .apply-form__textarea:focus::-webkit-input-placeholder,
.booking-modal__form .apply-form__textarea:focus::-moz-placeholder,
.booking-modal__form .apply-form__textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.booking-modal__form button {
  width: 100%;
  height: 44px;

  border: 0;
  background: #111111;
  color: #ffffff;

  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
}

.booking-modal__text {
  max-width: 520px;
  margin: 22px auto 0;

  color: #777777;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
}

.girl-card__booking {
  cursor: pointer;
  background: transparent;
}

/* Booking cart */

.modal-open {
  overflow: hidden;
}

.booking-cart {
  position: fixed;
  right: 40px; /* Initially at the scroll-to-top position */
  bottom: 40px;
  height: 50px;
  z-index: 150;

  display: none;
  align-items: center;
  gap: 24px;

  padding: 0 18px;
  background: #111111;
  color: #ffffff;

  font-family: var(--font-ui);
  transition: 
    opacity 0.3s ease, 
    bottom 0.3s ease,
    right 0.3s ease,
    transform 0.3s ease;
  box-sizing: border-box;
}

body.scroll-top-visible .booking-cart {
  right: 118px; /* 40px (scroll-to-top right) + 50px (width) + 28px (gap) */
}

.booking-cart--active {
  display: flex;
}

/* Hide booking cart when mobile menu is open */
body.menu-open .booking-cart {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.booking-cart__count {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.booking-cart__button {
  height: 32px;
  padding: 0 20px;

  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;

  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  cursor: pointer;
}

.girl-card__booking {
  cursor: pointer;
  background: transparent;
}

.girl-card__booking--selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Booking modal */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.booking-modal--active {
  display: block;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
}

.booking-modal__window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  transform: translate(-50%, -50%);

  background: #ffffff;
  color: #111111;

  padding: 42px 44px 38px;
}

.booking-modal__close {
  position: absolute;
  top: 42px;
  right: 44px;

  width: 22px;
  height: 22px;

  border: 0;
  background: #111111;
  color: #ffffff;

  display: grid;
  place-items: center;

  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.booking-modal__title {
  margin: 0 0 28px;

  color: #111111;
  font-family: var(--font-ui);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.booking-modal__selected {
  margin-bottom: 28px;
}

.booking-modal__selected-title,
.booking-modal__clear {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;

  color: #777777;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;
  
  display: inline-flex;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
}

.booking-modal__clear {
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.booking-modal__models {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-modal__model {
  min-height: 70px;

  display: grid;
  grid-template-columns: 70px 1fr 24px;
  align-items: center;
  gap: 18px;

  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 12px;
}

.booking-modal__model img {
  width: 70px;
  height: 70px;
  display: block;

  object-fit: cover;
  object-position: center top;
}

.booking-modal__model span {
  color: #111111;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.booking-modal__remove {
  width: 24px;
  height: 24px;

  border: 0;
  background: #111111;
  color: #ffffff;

  display: grid;
  place-items: center;

  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.booking-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-modal__form input {
  width: 100%;
  height: 42px;

  border: 1px solid #b8b8b8;
  background: transparent;

  color: #111111;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 200;
  text-align: center;
}

.booking-modal__form input::placeholder {
  color: #b8b8b8;
}

.booking-modal__form button {
  width: 100%;
  height: 44px;

  border: 0;
  background: #111111;
  color: #ffffff;

  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
}

.booking-modal__close,
.booking-modal__remove,
.apply-selected__remove {
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-modal__close:hover,
.booking-modal__remove:hover,
.apply-selected__remove:hover {
  background: #ff5dfc;
  color: #ffffff;
  opacity: 1;
}

@media (max-width: 640px) {
  .booking-cart {
    position: fixed !important;
    left: 16px !important;
    right: 90px !important; /* Space for burger button (24px right + 50px width + 16px gap) */
    bottom: 40px !important; /* Unified bottom axis with burger menu */
    transform: none !important;
    width: auto !important;
    height: 50px !important;
    padding: 0 16px !important;
    display: none !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 12px;
    z-index: 9000 !important;
    background: #111111;
  }

  .booking-cart.booking-cart--active {
    display: flex !important;
  }

  /* Hide booking cart when modal is open */
  body.modal-open .booking-cart {
    display: none !important;
  }

  .booking-cart__count {
    font-size: 13px !important;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .booking-cart__button {
    height: 26px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    letter-spacing: 0.05em;
    line-height: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .booking-modal {
    z-index: 20000 !important; /* Above everything including header and burger */
  }

  .booking-modal__window {
    width: calc(100% - 32px);
    padding: 24px 20px 0; /* Bottom padding handled by text margin for symmetry */
    top: 80px; /* Clears header area (logo/lang switcher) */
    transform: translateX(-50%); /* Removed vertical centering to allow top-align */
    max-height: calc(100vh - 160px); /* Leaves space for burger button at bottom */
    border: 1px solid rgba(0,0,0,0.05);
  }

  .booking-modal__title {
    padding-right: 36px;
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  .booking-modal__close {
    top: 24px;
    right: 20px;
    width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .booking-modal__model {
    grid-template-columns: 50px 1fr 24px;
    min-height: 50px;
    gap: 12px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .booking-modal__model img {
    width: 50px;
    height: 50px;
  }

  .booking-modal__model span {
    font-size: 20px;
  }

  .booking-modal__selected-title,
  .booking-modal__clear {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  .booking-modal__form {
    gap: 16px;
  }

  .booking-modal__form input {
    height: 38px;
    font-size: 16px;
  }

  .booking-modal__form button {
    height: 44px;
    font-size: 18px;
    margin-bottom: 0;
  }

  .booking-modal__text {
    font-size: 12px !important; /* Small like placeholders */
    margin: 24px 0 !important; /* Equal space to button and bottom edge */
    padding-bottom: 24px; /* Creates the bottom gap */
    line-height: 1.4 !important;
    letter-spacing: 0.05em;
    color: #999 !important;
  }
}

.booking-modal__model-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-modal__model-info small {
  color: #777777;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
}

.model-profile__booking {
  width: 100%;
  height: 55px;
  margin-top: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  appearance: none;
  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #b8b8b8;

  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
  text-align: center;

  cursor: pointer;
}

.model-profile__booking:hover {
  opacity: 0.86;
}

.model-profile__booking--selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.girl-card__booking:hover,
.girl-card__booking--selected:hover,
.model-profile__booking:hover,
.model-profile__booking--selected:hover,
.booking-cart__button:hover,
.apply-form__submit:hover,
.booking-modal__form button:hover {
  background: #ff5dfc;
  color: #ffffff;
  opacity: 1;
  filter: none;
}

.girl-card__booking--selected,
.girl-card__booking--selected:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  opacity: 1;
}

.model-profile__booking--selected,
.model-profile__booking--selected:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  opacity: 1;
}

.booking-modal__selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 14px;
}

.booking-modal__selected-head .booking-modal__selected-title {
  margin: 0;
}

.booking-modal__clear:hover {
  opacity: 1;
  color: #ff5dfc;
}

/* Apply page */

.apply-main {
  padding: 95px 0 40px;
}

.apply-section {
  width: min(1628px, calc(100% - 144px));
  margin: 0 auto;
}

.apply-section__title {
  margin: 0 0 40px;

  color: #111111;
  font-family: var(--font-ui);
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}

.apply-form {
  width: 100%;
}

.apply-form__gender {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 28px;
}

.apply-form__gender-button {
  width: 118px;
  height: 42px;

  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #b8b8b8;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

.apply-form__gender-button--active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.apply-dropdown {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.apply-dropdown__button {
  width: 100%;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #b8b8b8;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

.apply-dropdown__arrow {
  font-size: 22px;
  line-height: 1;
}

.apply-dropdown__list {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 20;

  width: 100%;
  max-height: 310px;
  overflow-y: auto;

  display: none;

  border: 1px solid #b8b8b8;
  background: #f5f5f5;
}

.apply-dropdown--active .apply-dropdown__list {
  display: block;
}

.apply-dropdown__item {
  width: 100%;
  height: 54px;

  border: 0;
  border-bottom: 1px solid #d8d8d8;
  background: #f5f5f5;
  color: #111111;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 200;
  line-height: 1;

  text-align: center;
  cursor: pointer;
}

.apply-dropdown__item:hover {
  background: #ffffff;
  color: #111111;
}

.apply-dropdown__item:last-child {
  border-bottom: 0;
}

.apply-form__textarea {
  width: 100%;
  height: 310px;
  margin-bottom: 30px;
  padding: 120px 40px 40px;

  resize: none;

  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #111111;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 200;
  line-height: 1.2;

  text-align: center;
  outline: none;
}

.apply-form__textarea::placeholder {
  color: #b8b8b8;
}

.apply-form__textarea:focus::placeholder {
  opacity: 0;
}

.apply-form__textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.apply-form__textarea:focus::-moz-placeholder {
  opacity: 0;
}

.apply-form__textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.apply-form__input {
  width: 100%;
  height: 62px;
  margin-bottom: 30px;

  border: 1px solid #b8b8b8;
  background: #ffffff;
  color: #111111;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 200;
  line-height: 1;

  text-align: center;
  outline: none;
}

.apply-form__input::placeholder {
  color: #b8b8b8;
}

.apply-form__input:focus::placeholder {
  opacity: 0;
}

.apply-form__input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.apply-form__input:focus::-moz-placeholder {
  opacity: 0;
}

.apply-form__input:focus:-ms-input-placeholder {
  opacity: 0;
}

.apply-form__submit {
  width: 100%;
  height: 62px;

  border: 0;
  background: #000000;
  color: #ffffff;

  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
}

.apply-form__submit:hover {
  opacity: 1;
  filter: none;
}

.apply-form__text {
  margin: 28px 0 0;

  color: #777777;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
}

.apply-dropdown__item--selected {
  background: #111111;
  color: #ffffff;
}

.apply-dropdown__item--selected:hover {
  background: #111111;
  color: #ffffff;
}

.apply-selected {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-bottom: 30px;
}

.apply-selected-wrap {
  display: none;
  margin-bottom: 30px;
}

.apply-selected-wrap--active {
  display: block;
}

.apply-selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 14px;
}

.apply-selected-head__title {
  margin: 0;

  color: #777777;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;
}

.apply-selected-head__clear {
  padding: 0;
  border: 0;
  background: transparent;

  color: #777777;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

.apply-selected-head__clear:hover {
  opacity: 1;
  color: #ff5dfc;
}

.apply-selected:empty {
  display: none;
}

.apply-selected__model {
  min-height: 70px;

  display: grid;
  grid-template-columns: 70px 1fr 24px;
  align-items: center;
  gap: 18px;

  border: 1px solid #e3e3e3;
  padding: 12px;
  background: #ffffff;
}

.apply-selected__model img {
  width: 70px;
  height: 70px;
  display: block;

  object-fit: cover;
  object-position: center top;
}

.apply-selected__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.apply-selected__info span {
  color: #111111;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.apply-selected__info small {
  color: #777777;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
}

.apply-selected__remove {
  width: 24px;
  height: 24px;

  border: 0;
  background: #111111;
  color: #ffffff;

  display: grid;
  place-items: center;

  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.girl-card__booking--selected,
.model-profile__booking--selected,
.apply-form__gender-button--active,
.apply-dropdown__item--selected {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.girl-card__booking--selected:hover,
.model-profile__booking--selected:hover,
.apply-form__gender-button--active:hover,
.apply-dropdown__item--selected:hover {
  background: #ff5dfc;
  border-color: #ff5dfc;
  color: #ffffff;
  opacity: 1;
  filter: none;
}

/* Adaptive for apply page */

@media (max-width: 1200px) {
  .apply-section {
    width: calc(100% - 48px);
  }

  .apply-section__title {
    font-size: 46px;
  }
}

@media (max-width: 640px) {
  .apply-main {
    padding-top: 60px;
  }

  .apply-section {
    width: calc(100% - 32px);
  }

  .apply-section__title {
    margin-bottom: 28px;
    font-size: 38px;
  }

  .apply-form__gender-button {
    width: 110px;
    height: 40px;
    font-size: 24px;
  }

  .apply-dropdown__button,
  .apply-form__input,
  .apply-form__submit {
    height: 52px;
    font-size: 24px;
  }

  .apply-form__textarea {
    height: 230px;
    padding: 86px 20px 30px;
    font-size: 24px;
  }

  .apply-form__text {
    font-size: 24px;
  }

  .apply-selected__model {
    grid-template-columns: 58px 1fr 24px;
  }

  .apply-selected__model img {
    width: 58px;
    height: 58px;
  }

  .apply-selected__info span {
    font-size: 24px;
  }
}

/* New Faces badge */

.girl-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 10px 18px;
  background: #ff5dfc !important; /* Restore pink badge on desktop */
  color: #ffffff !important; /* Restore white text */
  font-family: var(--font-ui);
  font-size: 22px !important; /* Restore desktop size */
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

/* =========================
   ABOUT PAGE
========================= */

/* ─── REVEAL ANIMATION ─────────────────────────────────────── */

.js-reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-item:nth-child(2) {
  transition-delay: 0.1s;
}

.js-reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}

.js-reveal-item:nth-child(4) {
  transition-delay: 0.3s;
}

/* ─── PAGE BASE ─────────────────────────────────────────────── */

.about-page {
  background: #000;
  color: #f5f5f5;
}

.about-main {
  overflow-x: hidden;
}

/* ─── HEADER ────────────────────────────────────────────────── */



/* ─── HERO ──────────────────────────────────────────────────── */

.about-hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.about-hero__text {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}

.about-hero__title {
  font-family: var(--font-ui);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0;
}

.about-hero__sub {
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
  margin: 0;
}

/* Hero collage */

.about-hero__collage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.about-hero__img {
  position: absolute;
  overflow: hidden;
  will-change: transform;
}

.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: grayscale(10%);
}

.about-hero__img:hover img {
  transform: scale(1.04);
}

.about-hero__img--1 {
  top: 8%;
  left: 4%;
  width: 52%;
  height: 48%;
}

.about-hero__img--2 {
  top: 30%;
  right: 2%;
  width: 44%;
  height: 40%;
  z-index: 2;
}

.about-hero__img--3 {
  bottom: 4%;
  left: 10%;
  width: 38%;
  height: 34%;
  z-index: 3;
}

.about-hero__img--4 {
  bottom: 12%;
  right: 5%;
  width: 32%;
  height: 28%;
  z-index: 1;
  opacity: 0.6;
}

/* ─── MARQUEE ───────────────────────────────────────────────── */

.about-marquee {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: 0.35;
}

.about-marquee__viewport {
  overflow: hidden;
}

.about-marquee__track {
  display: flex;
  width: max-content;
  animation: about-marquee-scroll 28s linear infinite;
}

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

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

.about-marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  white-space: nowrap;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.about-marquee__dot {
  color: #ff5dfc;
  font-size: 18px;
}

/* ─── MANIFESTO ─────────────────────────────────────────────── */

.about-manifesto {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  overflow: clip;
  z-index: 5;
}

.about-manifesto::before {
  content: "";
  position: absolute;
}

.manifesto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

.manifesto-text-column {
  padding: 120px 120px;
  /* Equal horizontal padding for symmetry */
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.manifesto-heading {
  font-family: var(--font-ui);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 48px 0;
  color: var(--color-light);
}

.manifesto-body {
  width: 100%;
}

.manifesto-body p {
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 32px;
}

.manifesto-visual-column {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.manifesto-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.manifesto-gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  overflow: hidden;
  pointer-events: none;
  /* Prevent clicking hidden items */
  z-index: 1;
}

.manifesto-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.manifesto-gallery-item.active {
  opacity: 1;
  pointer-events: auto;
  /* Enable clicking only active item */
  z-index: 2;
}

.manifesto-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.manifesto-gallery-item a:hover img {
  opacity: 0.8;
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .manifesto-container {
    grid-template-columns: 1fr;
  }

  .manifesto-text-column {
    padding: 80px 40px;
  }

  .manifesto-visual-column {
    height: 60vh;
  }
}

/* Keyframes */
@keyframes visual-bg-drift {
  0% {
    transform: translate(-50%, -50%) translate3d(-15px, -15px, -80px) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) translate3d(15px, 15px, -80px) scale(1.05);
  }
}

@keyframes visual-glow-pulse {
  0% {
    opacity: 0.4;
    transform: rotateZ(9deg) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: rotateZ(9deg) scale(1.05);
  }
}

@keyframes visual-model-float {
  0% {
    transform: rotateY(-9deg) rotateX(2deg) translate3d(-6px, 12px, 20px);
  }

  100% {
    transform: rotateY(-9deg) rotateX(2deg) translate3d(6px, -12px, 20px);
  }
}

@keyframes visual-wireframe-spin {
  0% {
    transform: translateZ(40px) rotateZ(-6deg) rotateX(5deg) rotateY(-5deg);
  }

  100% {
    transform: translateZ(40px) rotateZ(6deg) rotateX(-5deg) rotateY(5deg);
  }
}

@keyframes visual-crossfade {

  0%,
  100% {
    opacity: 0;
  }

  8%,
  33% {
    opacity: 1;
  }

  41%,
  90% {
    opacity: 0;
  }
}

@keyframes visual-slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* ─── PHILOSOPHY ────────────────────────────────────────────── */

.about-philosophy {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  overflow: clip;
  z-index: 5;
}

.philosophy-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

.philosophy-text-column {
  padding: 120px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.philosophy-visual-column {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.philosophy-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.philosophy-gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  overflow: hidden;
  pointer-events: none;
  /* Prevent clicking hidden items */
  z-index: 1;
}

.philosophy-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.philosophy-gallery-item.active {
  opacity: 1;
  pointer-events: auto;
  /* Enable clicking only active item */
  z-index: 2;
}

.philosophy-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.philosophy-gallery-item a:hover img {
  opacity: 0.8;
  transform: scale(1.03);
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.philosophy-item-title {
  font-family: var(--font-ui);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.philosophy-item-desc {
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.6);
  margin: 0;
}


/* ─── SERVICES ──────────────────────────────────────────────── */

.about-services {
  padding: 120px 60px;
  background: #000;
}

.about-services__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.about-services__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.4);
}

.about-services__heading {
  font-family: var(--font-ui);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.about-service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.about-service-card:hover {
  background: #f5f5f5;
  transform: translateY(-4px);
}

.about-service-card:hover .about-service-card__num,
.about-service-card:hover .about-service-card__title,
.about-service-card:hover .about-service-card__desc {
  color: #000;
}

.about-service-card__num {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 245, 0.3);
  transition: color 0.35s ease;
}

.about-service-card__title {
  font-family: var(--font-ui);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #f5f5f5;
  transition: color 0.35s ease;
}

.about-service-card__desc {
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.6);
  margin-top: auto;
  transition: color 0.35s ease;
}

/* ─── EDITORIAL ─────────────────────────────────────────────── */

.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-editorial__image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.about-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.about-editorial__image img:hover {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.about-editorial__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 64px;
  background: #000;
}

.about-editorial__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.4);
}

.about-editorial__heading {
  font-family: var(--font-ui);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0;
}

.about-editorial__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-editorial__text p {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.65);
  margin: 0;
}



/* ─── FOOTER ────────────────────────────────────────────────── */

.about-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Remove footer divider specifically for Gallery page to maintain deep black aesthetic */
.gallery-page .about-footer {
  border-top: none !important;
}

/* ─── RESPONSIVE: TABLET (≤ 1100px) ────────────────────────── */

@media (max-width: 1100px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero__text {
    padding: 120px 32px 60px;
    text-align: center;
    align-items: center;
  }

  .about-hero__collage {
    height: 60vw;
    min-height: 380px;
  }

  .about-hero__img--4 {
    display: none;
  }

  .manifesto-container {
    grid-template-columns: 1fr;
  }

  .manifesto-text-column {
    padding: 80px 40px;
  }

  .manifesto-visual-column {
    height: 70vh;
  }

  .philosophy-container {
    grid-template-columns: 1fr;
  }

  .philosophy-text-column {
    padding: 80px 40px;
  }

  .philosophy-visual-column {
    height: 70vh;
  }

  .about-services {
    padding: 80px 32px;
  }

  .about-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-editorial {
    grid-template-columns: 1fr;
  }

  .about-editorial__image {
    height: 60vw;
    min-height: 320px;
  }

  .about-editorial__content {
    padding: 60px 32px;
  }


}

/* ─── RESPONSIVE: MOBILE (≤ 640px) ─────────────────────────── */

@media (max-width: 640px) {

  .about-hero__text {
    padding: 100px 20px 48px;
  }

  .about-hero__collage {
    height: 80vw;
  }

  .about-hero__img--3 {
    display: none;
  }

  .manifesto-text-column {
    padding: 60px 20px;
  }

  .manifesto-visual-column {
    height: 50vh;
  }

  .manifesto-heading {
    margin-bottom: 24px;
  }

  .manifesto-body p {
    font-size: 16px;
  }

  .philosophy-text-column {
    padding: 60px 20px;
  }

  .philosophy-visual-column {
    height: 50vh;
  }

  .philosophy-item-title {
    font-size: 24px;
  }

  .philosophy-item-desc {
    font-size: 16px;
  }

  .about-services {
    padding: 64px 20px;
  }

  .about-services__grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .about-service-card {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-editorial__image {
    grid-template-columns: 1fr;
    height: 60vw;
  }

  .about-editorial__image img:last-child {
    display: none;
  }

  .about-editorial__content {
    padding: 48px 20px;
  }


}

/* ─── CTA BOOKING BLOCK: REDESIGNED ────────────────────────── */

.about-cta {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #000;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}



.cta-container {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: stretch;
}

.cta-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 48px;
}

.cta-heading {
  font-family: var(--font-ui);
  font-size: clamp(52px, 6vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #fff;
}

.cta-heading-accent {
  color: var(--color-accent);
  white-space: nowrap;
}

.cta-subtext {
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 200;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 245, 0.5);
  margin: 0;
  max-width: 440px;
  line-height: 1.3;
}

.cta-video-container {
  width: 100%;
  max-width: 480px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 48px;
}

.cta-video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.cta-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-btn {
  width: 100%;
  max-width: 480px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 245, 245, 0.15);
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 20px rgba(255, 93, 252, 0.1);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .cta-container {
    gap: 60px;
  }

  .cta-heading {
    font-size: clamp(48px, 8vw, 90px);
  }
}

@media (max-width: 960px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
  }

  .cta-content,
  .cta-video-container {
    flex-grow: 0;
    padding-bottom: 36px;
  }

  .cta-side {
    width: 100%;
  }

  .cta-side--left {
    order: 1;
  }

  .cta-side--right {
    order: 2;
  }

  .cta-btn {
    max-width: 520px;
  }
}

/* ─── SCROLL TO TOP ─────────────────────────────────────────── */

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border: 1px solid currentColor;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Hide when lightbox is open */
body.is-lightbox-open .scroll-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 1. Page Specific Themes */

/* Home & Gallery: PINK */
body.page-home .scroll-to-top,
body.page-gallery .scroll-to-top {
  color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

/* All other pages: BLACK */
body:not(.page-home):not(.page-gallery) .scroll-to-top {
  color: #000 !important;
  border-color: #000 !important;
}

/* 2. Neutral Interactive States (STRICTLY NO HIGHLIGHTS) */
.scroll-to-top:hover,
.scroll-to-top:active,
.scroll-to-top:focus,
.scroll-to-top:focus-visible {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
}

.scroll-to-top:active {
  transform: translateY(-5px) scale(0.95);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* ─── BURGER & MOBILE MENU ──────────────────────────────────── */

.header__burger {
  display: none;
  /* Hidden on Desktop */
}

@media (max-width: 1180px) {

  /* Header adjustments */
  .header {
    width: calc(100% - 40px);
    margin-top: 24px;
    padding: 0;
    justify-content: space-between;
    height: auto;
    position: absolute;
    left: 20px;
    transform: none;
    z-index: 3100;
    /* Ensure header elements stay above mobile overlay */
  }

  .header__logo {
    flex: none;
    order: 1;
  }

  .header__logo img {
    width: 80px;
    /* Compact logo for mobile */
    height: auto;
  }

  .header__nav {
    display: none !important;
    /* Force hide classic nav */
  }

  .header__lang {
    flex: none;
    order: 2;
    gap: 16px;
    /* Increased gap for larger text */
  }

  .header__lang .lang-switcher__item {
    width: auto;
    height: auto;
    font-size: 24px;
    /* Increased by 50% for better mobile visibility */
    padding: 8px 12px;
    /* Larger clickable area */
    background: transparent;
    color: #fff;
  }

  .header__lang .lang-switcher__item--active {
    color: var(--color-accent);
    font-weight: 600;
  }

  /* ── Tablet: larger logo and lang within compact breakpoint ──────────── */
  @media (min-width: 768px) {
    .header__logo img {
      width: 120px;
    }

    .header__lang .lang-switcher__item {
      font-size: 28px;
      padding: 10px 16px;
    }
  }

  /* Hide header elements when menu is open */
  body.menu-open .header__logo,
  body.menu-open .lang-switcher {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Burger Button - Fixed Bottom Right */
  .header__burger {
    display: flex;
    position: fixed;
    right: 24px;
    bottom: 40px; /* Unified bottom axis with booking cart */
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 50px;
    height: 50px; /* Unified height for perfect parallel alignment */
    justify-content: center;
    background: none;
    border: none;
    padding: 0; /* Centering handled by height + justify-content */
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease;
    pointer-events: auto !important;
  }

  .header__burger-icon {
    position: relative;
    width: 40px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .header__burger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    left: 0;
    transform-origin: center center;
  }

  .header__burger-icon span:nth-child(1) {
    top: 0;
  }

  .header__burger-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .header__burger-icon span:nth-child(3) {
    bottom: 0;
  }

  .header__burger-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    transition: opacity 0.3s ease;
  }

  /* Morph to Cross */
  .header__burger.is-active .header__burger-icon span:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    background-color: #ff5dfc !important; /* Forced Pink for consistency */
  }

  .header__burger.is-active .header__burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .header__burger.is-active .header__burger-icon span:nth-child(3) {
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
    background-color: #ff5dfc !important; /* Forced Pink for consistency */
  }

  .header__burger.is-active .header__burger-label {
    opacity: 0;
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .mobile-menu__nav a {
    font-family: var(--font-ui);
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
  }

  /* Active Link Highlighting in Mobile Menu */
  .about-page .mobile-menu__nav a[href*="index"],
  .girls-page .mobile-menu__nav a[href*="girls"],
  .boys-page .mobile-menu__nav a[href*="boys"],
  .new-faces-page .mobile-menu__nav a[href*="new-faces"],
  .gallery-page .mobile-menu__nav a[href*="gallery"] {
    color: #ff5dfc !important;
  }

  .mobile-menu__nav a:hover,
  .mobile-menu__nav a[aria-current="page"] {
    color: var(--color-accent);
  }

  /* Scroll to top button adjustment for mobile */
  .scroll-to-top {
    right: 24px;
    bottom: 106px; /* 40px (burger bottom) + 50px (burger height) + 16px (gap) */
    width: 50px;
    height: 50px;
  }

  /* HARD FIX: Compact Mobile Footer - Grouped in Center */
  .footer {
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 30px 0 !important; /* Shifted up by reducing top padding */
    gap: 150px !important; /* Increased safe area (150px) to clear scroll-top button (110px) */
  }

  .footer__main {
    padding: 0 24px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px !important;
    width: 100% !important;
    margin: 0 auto !important;
    min-height: auto !important;
  }

  .footer__nav {
    display: none !important;
  }

  .footer__brand {
    text-align: left;
    flex: 0 1 auto;
    padding-top: 4px !important; /* Visual alignment with "Email" label top */
  }

  .footer__brand img {
    width: 130px;
    height: auto;
  }

  .footer__info {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    gap: 24px !important;
    flex: 0 1 auto;
  }

  .footer__contacts,
  .footer__socials {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .footer__contacts p,
  .footer__socials p {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    text-indent: 0 !important;
    font-weight: 100 !important;
    text-transform: none !important;
    letter-spacing: 0.1em !important;
    -webkit-font-smoothing: antialiased;
  }

  .footer__contacts a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    font-weight: 200 !important; /* Subtle distinction for links */
    text-transform: none !important;
    letter-spacing: 0.1em !important;
    -webkit-font-smoothing: antialiased;
  }

  .dark-page .footer__contacts p,
  .dark-page .footer__socials p {
    color: #ffffff !important;
  }

  .light-page .footer__contacts p,
  .light-page .footer__socials p {
    color: #b8b8b8 !important;
  }

  .footer__contacts a {
    color: var(--color-accent) !important;
  }

  .footer__social-list {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: auto !important;
    margin-top: 4px !important;
  }

  .footer__social-list img {
    width: 32px !important;
    /* Extra large icons */
    height: 32px !important;
  }

  .footer__bottom {
    height: auto !important;
    min-height: auto !important;
    text-align: center !important;
    padding: 0 24px !important; /* Reduced to maintain position while main content moves up */
    width: 100% !important;
    border-top: none !important;
    display: block !important;
  }

  .footer__bottom a {
    font-size: 11px !important;
    opacity: 0.5 !important;
  }

  /* Language Switcher Mobile Fix - Page-Specific Styling */
  .lang-switcher {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    order: 3;
    flex: none !important;
  }

  /* BLACK/WHITE STYLE: Women / Men / New Faces (.light-page) */
  .light-page .lang-switcher__item {
    width: 44px !important;
    height: 32px !important;
    font-size: 13px !important;
    border: 1px solid #111 !important;
    background: transparent !important;
    color: #111 !important;
  }

  .light-page .lang-switcher__item--active {
    background: #111 !important;
    color: #fff !important;
  }

  /* PINK STYLE: Home / Gallery (.dark-page) */
  .dark-page .lang-switcher__item {
    width: 44px !important;
    height: 32px !important;
    font-size: 13px !important;
    border: 1px solid var(--color-accent) !important;
    background: transparent !important;
    color: var(--color-accent) !important; /* Pink for inactive */
  }

  .dark-page .lang-switcher__item--active {
    background: var(--color-accent) !important;
    color: #ffffff !important; /* White for active */
  }

  /* Catalog Sortbar Mobile: Collapsible Filter Panel */
  .catalog-sortbar {
    margin-bottom: 32px !important;
    width: 100% !important;
  }

  .catalog-sortbar__toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100% !important;
    height: 48px !important;
    background: #ffffff !important;
    border: 1px solid #111111 !important;
    font-family: var(--font-ui);
    font-size: 14px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111111;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease;
  }

  .catalog-sortbar__toggle::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 6H21M6 12H18M10 18H14" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
  }

  .catalog-sortbar__items {
    display: none !important; /* Collapsed by default on mobile */
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    background: #ffffff;
    border: 1px solid #111111; /* Full, closed border */
    margin-top: 8px !important; /* Separates the panel from the toggle button */
    padding: 12px 16px !important; /* Increased top padding to prevent content from sticking to border */
  }

  .catalog-sortbar--expanded .catalog-sortbar__items {
    display: flex !important;
  }

  .catalog-sortbar--expanded .catalog-sortbar__toggle {
    background: #111 !important;
    color: #fff !important;
  }

  .catalog-sortbar--expanded .catalog-sortbar__toggle::before {
    filter: invert(1);
  }

  .catalog-filter {
    width: 100% !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .catalog-filter:last-child {
    border-bottom: none;
  }

  .catalog-filter__button {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 0 !important;
    height: auto !important;
    background: none !important;
    border: none !important;
  }

  .catalog-filter__label {
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #111;
  }

  .catalog-filter__value {
    font-size: 13px !important;
    color: #888;
    margin-left: auto;
    margin-right: 6px;
  }

  .catalog-filter__arrow {
    font-size: 9px !important;
    opacity: 0.4;
  }

  .catalog-sortbar__reset {
    width: 100% !important;
    height: 44px !important;
    margin: 16px 0 !important;
    font-size: 12px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #888 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Catalog Grid: 2 Columns on Mobile */
  .girls-catalog__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 16px !important;
    row-gap: 32px !important;
    padding: 0 4px !important;
  }

  .girl-card, .boy-card {
    display: flex;
    flex-direction: column;
  }

  .girl-card__name, .boy-card__name {
    font-size: 18px !important; /* Increased by ~30% for better readability */
    margin: 10px 0 !important; /* Balanced mobile spacing: 10px top and bottom */
    font-weight: 500;
  }

  /* Compact Booking Buttons */
  .booking-button {
    width: 100% !important;
    height: 34px !important;
    padding: 0 !important;
    font-size: 10px !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #cfcfcf !important; /* Minimalist gray border to match desktop */
    background: transparent !important;
    color: #b8b8b8 !important; /* Minimalist gray text to match desktop */
    margin-top: 0 !important;
  }

  /* Mobile Selected State: Active feedback for catalog and personal pages */
  .booking-button.girl-card__booking--selected,
  .booking-button.model-profile__booking--selected {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
  }

  /* Compact Badge NEW on Mobile */
  .girl-card__badge, .boy-card__badge {
    font-size: 9px !important;
    padding: 3px 8px !important;
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    width: fit-content !important;
    letter-spacing: 0.1em !important;
    min-width: auto !important;
  }

  /* Hero Content Mobile: Center Align & Raised */
  .hero__content {
    align-items: center !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 14vh !important;
    /* Raised slightly to balance with burger menu */
  }

  .hero__title {
    text-align: center !important;
    width: 100% !important;
    font-size: clamp(54px, 14vw, 120px) !important;
    /* Balanced premium typography */
  }

  .hero__desc {
    text-align: center !important;
    max-width: 90% !important;
    margin: 15px auto 0 !important;
    letter-spacing: 0.15em !important;
    font-size: 13px !important;
  }

  /* Manifesto Mobile Layout: Text first, then Gallery */
  .manifesto-container {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .manifesto-text-column {
    min-height: 100vh;
    padding: 100px 24px 60px !important;
    justify-content: center;
  }

  .manifesto-visual-column {
    height: 100vh !important;
    /* Fallback */
    height: 100dvh !important;
    /* Fullscreen visual for mobile */
  }

  .manifesto-heading {
    font-size: 48px !important;
    margin-bottom: 32px !important;
    text-align: left;
  }

  .manifesto-body {
    text-align: left;
  }

  /* Philosophy Mobile Layout: Vertical Split */
  .philosophy-container {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .philosophy-text-column {
    min-height: 100vh;
    padding: 100px 24px 60px !important;
    justify-content: center;
    order: 1;
    /* Text first */
  }

  .philosophy-visual-column {
    height: 100vh !important;
    /* Fallback */
    height: 100dvh !important;
    /* Fullscreen visual for mobile */
    order: 2;
    /* Gallery after text */
  }

  .philosophy-item-title {
    font-size: 32px !important;
    text-align: left;
  }

  .philosophy-item-desc {
    text-align: left;
    max-width: 100% !important;
  }

  /* Services Section Spacing Refinement */
  .about-services {
    padding: 60px 24px !important;
  }

  .about-services__header {
    margin-bottom: 32px !important;
    /* Reduced to connect title with cards */
  }

  .about-service-card {
    padding: 40px 24px !important;
    /* Added horizontal air for editorial feel */
    border-right: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .about-services__grid {
    grid-template-columns: 1fr !important;
    border-left: none !important;
  }

  /* Gallery Lightbox Mobile Refinement */
  .lightbox__close {
    display: none !important; /* User closes via tap on background */
  }

  .lightbox__prev,
  .lightbox__next {
    font-size: 50px !important;
    padding: 10px !important;
  }

  .lightbox__image {
    max-width: 95% !important;
    max-height: 80vh !important;
  }
}

@media (max-width: 480px) {

  .hero__desc {
    font-size: 11px !important;
    letter-spacing: 0.15em !important;
  }

}