﻿:root {
  --bg: #000000;
  --bg-soft: #090a0d;
  --line: #1b1d21;
  --heading: #cccc;
  --content: #818181;
  --header-height: 44px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--content);
  padding-top: var(--header-height);
  padding-bottom: 82px;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

p {
  text-align: justify;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: inherit !important;
}

.form-control:focus,
.form-select:focus,
.btn:focus,
.btn-check:focus + .btn,
.btn-close:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 1200;
  background: #fff;
  color: #000;
  padding: 8px 12px;
}

.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.home-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.home-preloader-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-preloader-gif {
  width: 70px;
  height: 70px;
  display: block;
}

.glass-header {
  height: 60px !important;
  background:
    radial-gradient(circle at 12% -120%, rgba(176, 176, 176, 0.22), transparent 45%),
    radial-gradient(circle at 88% -140%, rgba(142, 142, 142, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.8), rgba(6, 6, 8, 0.72));
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 rgba(181, 181, 181, 0.12), 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(165%);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
  transition: background-color 220ms ease, border-color 220ms ease;
  z-index: 1100;
}

.glass-header.is-scrolled {
  background:
    radial-gradient(circle at 14% -110%, rgba(170, 170, 170, 0.16), transparent 46%),
    radial-gradient(circle at 84% -135%, rgba(132, 132, 132, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.92), rgba(6, 6, 8, 0.9));
  border-bottom-color: transparent;
}

.glass-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(220, 220, 220, 0.12) 0.5px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.12;
}

.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-mark,
.header-logo-text {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-mark img,
.header-logo-text img {
  display: block;
}

.header-logo-mark-img {
  width: 24px;
  height: 24px;
}

.header-logo-text-img {
  width: 150px;
  height: 20px;
  margin-left: 25px;
}

.header-icon-eye {
  width: 20px;
  height: 20px;
  display: block;
  transform: translateY(1px);
}

.header-icon-menu {
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 2px !important;
}

.menu-trigger {
  position: relative;
  overflow: hidden;
}

.menu-icon-open,
.menu-icon-close {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity 220ms ease, transform 260ms ease;
}

.menu-icon-open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-icon-close {
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: rotate(-35deg) scale(0.75);
}

.menu-trigger.is-open .menu-icon-open {
  opacity: 0;
  transform: rotate(35deg) scale(0.75);
}

.menu-trigger.is-open .menu-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.right-side-menu {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  right: 110px;
  z-index: 2300;
  top: 75px;
  pointer-events: none;
}

.right-side-menu-card {
  width: 220px;
  border-radius: 9px;
  border: 1px solid #242424;
  background: radial-gradient(70% 70% at 20% 84%, rgba(122, 122, 122, 0.1), transparent 58%), radial-gradient(60% 65% at 82% 14%, rgba(88, 88, 88, 0.1), transparent 56%), linear-gradient(160deg, #05050657 0%, #14161880 45%, #060708b5 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(166, 175, 194, 0.06);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 300ms ease, opacity 220ms ease;
}

.right-side-menu-card a {
  position: relative;
  display: inline-block;
  color: var(--content);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.15;
  padding-left: 0;
  transition: color 280ms ease, padding-left 420ms ease;
}

.right-side-menu-card a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--heading);
  transform: translateY(-50%);
  opacity: 0.85;
  transition: width 420ms ease;
}

.right-side-menu-card a:hover,
.right-side-menu-card a:focus-visible {
  color: var(--heading);
  padding-left: 14px;
}

.right-side-menu-card a:hover::before,
.right-side-menu-card a:focus-visible::before {
  width: 6px;
}

body.menu-open .right-side-menu {
  pointer-events: auto;
}

body.menu-open .right-side-menu-card {
  transform: translateX(0);
  opacity: 1;
}

.header-actions {
  display: inline-flex;
  gap: 6px;
}

.header-icon {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.84;
  transition: opacity 140ms ease;
}

.header-icon:hover,
.header-icon:focus-visible {
  opacity: 1;
}

.hero-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-top: 1px solid #0f1012;
  border-bottom: 1px solid #0f1012;
}

.hero-image {
  display: block;
  width: 100%;
  min-height: 560px;
}


.gallery-wrap {
  padding: 80px 0 36px;
  background: var(--bg);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #393838;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.section-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 400;
}

.model-card {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid #111317;
  position: relative;
  overflow: hidden;
}

.model-link {
  display: block;
  text-decoration: none;
  position: relative;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
}

.model-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.model-link > img {
  height: 100%;
}

.mobile-model-card .carousel-item {
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
}

.mobile-model-card .mobile-model-image {
  height: 100%;
  object-fit: cover;
}

.model-card.is-image-loading .model-link,
.model-card.is-image-failed .model-link {
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);
}

.model-card.is-image-loading .js-skeleton-image,
.model-card.is-image-failed .js-skeleton-image {
  opacity: 0;
}

.model-card.is-image-loading .model-meta,
.model-card.is-image-failed .model-meta {
  position: relative;
  min-height: 24px;
}

.model-card.is-image-loading .model-name,
.model-card.is-image-loading .model-location,
.model-card.is-image-failed .model-name,
.model-card.is-image-failed .model-location {
  color: transparent !important;
  border-radius: 4px;
  background: linear-gradient(180deg, #494949 0%, #494949 100%);
  display: inline-block;
}

.model-card.is-image-loading .model-name,
.model-card.is-image-failed .model-name {
  width: 52%;
  height: 18px;
}

.model-card.is-image-loading .model-location,
.model-card.is-image-failed .model-location {
  width: 30%;
  height: 18px;
}

.model-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 0px;
  padding: 8px 0px 10px;
}

.model-name {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
  transition: color 160ms ease;
}

.model-location {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--content);
      text-decoration: none;
  text-align: right;
  transition: color 160ms ease;
}

.model-name,
.model-location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.model-name:hover {
  color: var(--content);
}

.model-location:hover {
  color: var(--heading);
}

.blog-main {
  background: var(--bg);
}

.blog-section {
  padding: 60px 0 36px;
}

.blog-wrap .section-heading {
  margin-bottom: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  border: 1px solid #1a1b1f;
  background: #08090b;
}

.blog-card-link {
  display: block;
  text-decoration: none;
}

.blog-card-media {
  position: relative;
}

.blog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.02) 74%);
  pointer-events: none;
}

.blog-card-media img {
  width: 100%;
  display: block;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.blog-card-body {
  padding: 14px 14px 16px;
  margin-top: -78px;
  position: relative;
  z-index: 1;
}

.blog-card-title {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.blog-card-text {
  margin: 0;
  color: var(--content);
  font-size: 13px;
  line-height: 1.38;
  font-weight: 400;
}

.single-blog-main {
  background: var(--bg);
}

.single-blog-hero {
  position: relative;
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  border-top: 1px solid #0f1012;
  border-bottom: 1px solid #0f1012;
}

.single-blog-hero-image {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
}

.single-blog-section {
  padding: 26px 0 40px;
}

.single-blog-content h1 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.single-blog-content h2 {
  margin: 30px 0 10px;
  color: var(--heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.single-blog-content h3 {
  margin: 24px 0 10px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.single-blog-content p {
  margin: 0 0 14px;
  color: var(--content);
  font-size: 13px;
  line-height: 1.65;
}

.single-blog-content ul,
.single-blog-content ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

.single-blog-content li {
  color: var(--content);
  font-size: 13px;
  line-height: 1.65;
}

.single-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-blog-sidebar-title {
  margin: 0 0 4px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #393838;
  padding-bottom: 10px;
}

.blog-card-compact .blog-card-body {
  margin-top: -72px;
}

.blog-card-compact .blog-card-title {
  font-size: 14px;
}

.blog-card-compact .blog-card-text {
  font-size: 12px;
}

.contact-main {
  background: var(--bg);
}

.contact-section {
  padding: 60px 0 36px;
}

.contact-wrap .section-heading {
  margin-bottom: 44px;
}

.contact-form {
  max-width: 920px;
  margin: 0 auto;
}

.contact-field {
  width: 100%;
  border: 1px solid #171a1f;
  border-radius: 16px;
  background: linear-gradient(180deg, #090b0f 0%, #07090d 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  margin-bottom: 20px;
}

.contact-field-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #20242d;
  background: #101318;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
}

.contact-field-icon svg {
  width: 18px;
  height: 18px;
  fill: #6f7279;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--heading);
  font-size: 14px;
  line-height: 1.4;
}

.contact-field input:-webkit-autofill,
.contact-field input:-webkit-autofill:hover,
.contact-field input:-webkit-autofill:focus,
.contact-field textarea:-webkit-autofill,
.contact-field textarea:-webkit-autofill:hover,
.contact-field textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--heading) !important;
  caret-color: var(--heading);
  -webkit-box-shadow: 0 0 0 1000px #090b0f inset !important;
  box-shadow: 0 0 0 1000px #090b0f inset !important;
  transition: background-color 9999s ease-out 0s;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--content);
  font-size: 14px;
  opacity: 1;
}

.contact-field-textarea {
  align-items: flex-start;
  padding-top: 12px;
}

.contact-field-textarea textarea {
  resize: vertical;
  min-height: 128px;
  padding-top: 8px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.contact-form-feedback {
  margin: 12px 2px 0;
  font-size: 12px;
  line-height: 1.4;
  min-height: 18px;
  color: var(--content);
}

.contact-form-feedback.is-success {
  color: var(--heading);
}

.contact-form-feedback.is-error {
  color: #b7b7b7;
}

.contact-submit-btn,
.contact-concierge-btn {
  height: 50px;
  border-radius: 14px;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #5d5f65;
  font-weight: 400;
}

.contact-submit-btn {
  background: #8f9092;
  color: #101113;
}

.contact-concierge-btn {
  background: transparent;
  color: var(--heading);
}

.contact-concierge-btn img {
  width: 20px;
  height: 20px;
}

.faq-main {
  background: var(--bg);
}

.faq-section {
  padding: 60px 0 36px;
}

.faq-wrap .section-heading {
  margin-bottom: 44px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #262a31;
  border-radius: 16px;
  background: linear-gradient(180deg, #090b0f 0%, #07090d 100%);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--heading);
  text-align: left;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 400;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.container.faq-wrap h3 {
    font-size: 16px;
}
.faq-toggle .profile-toggle-icon {
  margin-right: 0;
  border-right-color: #767a82;
  border-bottom-color: #767a82;
}

.faq-toggle.collapsed .profile-toggle-icon {
  transform: rotate(-45deg);
}

.faq-body {
  color: var(--content);
  font-size: 13px;
  line-height: 1.65;
  padding: 0 20px 16px;
}

.payments-main {
  background: var(--bg);
}

.payments-section {
  padding: 60px 0 36px;
}

.payments-wrap .section-heading {
  margin-bottom: 42px;
}

.payments-content {
  margin: 0 auto;
  color: var(--content);
}

.payments-content h2,
.payments-content h3 {
  margin: 0 0 18px;
  color: var(--heading);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.payments-content h3 {
  text-align: left;
  font-size: 16px;
  margin-top: 24px;
}

.payments-content h4 {
  margin: 30px 0px 20px 0px;
  color: var(--content);
  font-size: 15px;
  font-weight: 400;
}

.payments-content p,
.payments-content li {
  color: var(--content);
  font-size: 12px;
  line-height: 1.6;
}

.payments-content p {
  margin: 0 0 20px;
}

.payments-content ol,
.payments-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
  font-size: 12px;
}

.payments-content ul {
  list-style: disc;
}

.payment-method-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 0 16px;
}

.payment-method-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.payment-method-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4a4c52;
  border-radius: 50%;
  flex: 0 0 28px;
}

.payment-method-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #7a7d86;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.membership-main {
  background: var(--bg);
}

.membership-section {
  padding: 60px 0 36px;
}

.membership-wrap .section-heading {
  margin-bottom: 42px;
}

.membership-content {
  max-width: 1060px;
  margin: 0 auto;
}

.membership-content h2 {
  margin: 0 0 18px;
  color: var(--heading);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.membership-content h3 {
  margin: 26px auto 24px;
  max-width: 500px;
  text-align: center;
  color: var(--content);
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #393838;
  padding-bottom: 8px;
}

.membership-content p,
.membership-content li {
  color: var(--content);
  font-size: 12px;
  line-height: 3;
}

.membership-content p {
  margin: 0 0 20px;
}

.membership-content ul,
.membership-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.membership-form {
  max-width: 760px;
  margin: 0 auto;
}

.membership-agree {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--content);
  font-size: 12px;
}

.membership-agree input {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #3a3e46;
  appearance: none;
  background: transparent;
  border-radius: 5px;
}

.membership-agree input:checked {
  background: linear-gradient(180deg, #8f9092 0%, #7b7d80 100%);
}

.membership-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.membership-submit-btn {
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: #8f9092;
  color: #101113;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.membership-actions .contact-concierge-btn {
  height: 58px;
  font-size: 17px;
  border-radius: 16px;
}

.apply-main {
  background: var(--bg);
}

.apply-section {
  padding: 60px 0 36px;
}

.apply-wrap .section-heading {
  margin-bottom: 42px;
}

.apply-content {
  max-width: 1060px;
  margin: 0 auto;
}

.apply-content h2 {
  margin: 0 0 18px;
  color: var(--heading);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.apply-content p,
.apply-content li {
  color: var(--content);
  font-size: 12px;
  line-height: 1.6;
}

.apply-content p {
  margin: 0 0 20px;
}

.apply-content ul,
.apply-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.apply-content strong {
  color: var(--heading);
  font-weight: 400;
}

.apply-actions {
  max-width: 760px;
  margin: 28px auto 0;
}

.apply-form {
  max-width: 920px;
  margin: 18px auto 0;
}

.apply-actions .contact-concierge-btn {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  font-size: 17px;
}

.sitemap-main {
  background: var(--bg);
}

.sitemap-section {
  padding: 60px 0 36px;
}

.sitemap-wrap .section-heading {
  margin-bottom: 24px;
}

.sitemap-content {
  padding-top: 18px;
}

.sitemap-top-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 20px;
}

.sitemap-col h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 16px;
  font-weight: 400;
}

.sitemap-col a {
  display: block;
  color: var(--content);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.9;
  transition: color 160ms ease;
}

.sitemap-col a:hover,
.sitemap-col a:focus-visible {
  color: var(--heading);
}

.sitemap-profiles {
  padding-top: 14px;
}

.sitemap-profiles h2 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 400;
}

.sitemap-profile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 12px;
}

.philosophy-main {
  background: var(--bg);
}

.philosophy-section {
  padding: 60px 0 36px;
}

.philosophy-wrap .section-heading {
  margin-bottom: 22px;
}

.philosophy-content {
  margin: 0 auto;
  padding-bottom: 8px;
  border-bottom: 1px solid #232427;
}

.philosophy-content p {
  margin: 0 0 22px;
  color: var(--content);
  font-size: 12px;
  line-height: 1.65;
}

.terms-main {
  background: var(--bg);
}

.terms-section {
  padding: 60px 0 36px;
}

.terms-wrap .section-heading {
  margin-bottom: 22px;
}

.terms-content {
  margin: 0 auto;
  padding-bottom: 8px;
}

.terms-content h2 {
    margin: 40px 0px 20px 20px;
    color: var(--heading);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.terms-content p,
.terms-content li {
  color: var(--content);
  font-size: 12px;
  line-height: 2;
}

.terms-content p {
  margin: 0 0 20px;
}

.terms-content ul,
.terms-content ol {
  margin: 0 0 20px;
  padding-left: 18px;
}

.terms-content strong {
  color: var(--heading);
  font-weight: 400;
}

.site-footer {
  padding: 0 0 20px;
  border-top: 0;
}

.footer-promo {
  padding: 44px 0 34px;
  border-bottom: 1px solid #232427;
}

.footer-promo-toggle {
  color: var(--content);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 160ms ease;
}

.footer-promo-toggle:hover,
.footer-promo-toggle:focus-visible {
  color: var(--heading);
}

.footer-promo-chevron {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.footer-promo-toggle:not(.collapsed) .footer-promo-chevron {
  transform: rotate(90deg);
}

.footer-rich-content {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #232427;
}

.footer-rich-content.collapsing {
  transition-duration: 420ms;
  transition-timing-function: ease;
}


.footer-rich-inner h1,
.footer-rich-inner h2,
.footer-rich-inner h3,
.footer-rich-inner h4 {
  margin: 0 0 10px;
  color: var(--heading);
  font-weight: 500;
  line-height: 1.35;
}

.footer-rich-inner h1 {
  font-size: 22px;
}

.footer-rich-inner h2 {
  font-size: 19px;
}

.footer-rich-inner h3 {
  font-size: 17px;
}

.footer-rich-inner h4 {
  font-size: 15px;
}

.footer-rich-inner p,
.footer-rich-inner li {
  margin: 0 0 10px;
  color: var(--content);
  font-size: 14px;
  line-height: 1.75;
}

.footer-rich-inner ul,
.footer-rich-inner ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.footer-rich-inner a {
  color: var(--heading);
  text-decoration: none;
}

.footer-rich-inner a:hover,
.footer-rich-inner a:focus-visible {
  color: var(--content);
}

.footer-top {
  padding: 42px 0 40px;
  border-bottom: 1px solid #232427;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.footer-right {
  align-items: flex-end;
  text-align: right;
}

.footer-nav a {
  text-decoration: none;
  color: var(--content);
  font-size: 13px;
  line-height: 1.7;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--heading);
}

.footer-brand {
  text-align: center;
}

.footer-brand a {
  display: inline-block;
}

.footer-brand img {
  display: block;
  margin: 0 auto;
  margin-top: 18px;
  width: 90px;
}


.footer-bottom {
  margin-top: 0;
  padding-top: 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.2;
  color: var(--heading);
  text-align: center !important;
  width: 100%;
  display: block;
}

.footer-legal a {
  color: var(--heading);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--content);
}

.footer-legal span {
  margin-inline: 8px;
  color: var(--heading);
}

.footer-copy {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.2;
  color: var(--content);
  text-align: center !important;
  width: 100%;
}

.mobile-model-list {
  display: grid;
  gap: 18px;
}

.mobile-model-card {
  background: #040506;
  border: 1px solid #111317;
}

.mobile-model-image {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  touch-action: pan-y;
}

.mobile-model-card .carousel {
  position: relative;
}

.mobile-carousel-indicators {
  bottom: -7px;
  margin: 0;
  gap: 4px;
}

.mobile-carousel-indicators [data-bs-target] {
  width: 100%;
  height: 1.5px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: #4e5054;
  opacity: 0.75;
}

.mobile-carousel-indicators .active {
  background-color: #cccc;
  opacity: 1;
}

.whatsapp-fixed-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  border-radius: 0;
  padding: 8px 12px;
  background:
    radial-gradient(circle at 20% 30%, rgba(168, 168, 168, 0.18), transparent 36%),
    radial-gradient(circle at 82% 70%, rgba(131, 131, 131, 0.16), transparent 42%),
    rgba(42, 42, 42, 0.55);
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

.whatsapp-fixed-bar {
  height: 46px;
  border-radius: 16px;
  background: #585858;
  color: #cccc;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.whatsapp-fixed-bar img {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}

.modal-backdrop.show {
  opacity: 0.72;
}

.modal-backdrop {
  z-index: 4000 !important;
}

.modal {
  z-index: 4010 !important;
}

.age-gate-modal .modal-dialog {
  max-width: 520px;
}

.age-gate-content {
      background: radial-gradient(70% 85% at 15% 110%, rgba(168, 168, 168, 0.2), transparent 55%), radial-gradient(55% 60% at 88% 8%, rgba(120, 120, 120, 0.18), transparent 58%), radial-gradient(50% 50% at 52% 46%, rgba(90, 90, 90, 0.12), transparent 70%), linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 45%, #0f0f0f 100%);
    border: 1px solid rgb(66 66 66 / 35%);
    border-radius: 12px;
    color: var(--heading);
    position: relative;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(205, 210, 220, 0.16), inset 0 -1px 0 rgba(24, 26, 31, 0.9);
    backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.age-gate-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(220, 224, 233, 0.14) 0.55px, transparent 0.65px);
  background-size: 3px 3px;
  opacity: 0.2;
}

.age-gate-modal .modal-body {
  padding: 28px 30px 30px;
}

.age-gate-title {
  margin: 0 0 12px;
  text-align: center;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.age-gate-text {
  margin: 0 auto 18px;
  max-width: 480px;
  text-align: center;
  color: var(--content);
  font-size: 12px;
  margin-bottom: 50px;
  line-height: 1.7;
}

.age-gate-actions {
  display: grid;
  gap: 10px;
}

.age-btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.age-btn-primary {
  border: 1px solid #6f7175;
  background: #81818196;
  color: #cccc;
}

.age-btn-primary:hover,
.age-btn-primary:focus-visible {
  background: #66686d;
}

.age-btn-secondary {
  border: 1px solid #2f3238;
  background: #14161a;
  color: var(--heading);
}

.age-btn-secondary:hover,
.age-btn-secondary:focus-visible {
  border-color: #45484f;
  background: #181b20;
}

.modal-backdrop.age-gate-backdrop {
  background:
    radial-gradient(70% 60% at 20% 12%, rgba(108, 108, 108, 0.22), transparent 60%),
    radial-gradient(55% 65% at 80% 85%, rgba(78, 78, 78, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.86), rgba(6, 6, 8, 0.92));
  opacity: 0.92;
}

.access-modal .modal-dialog {
  max-width: 410px;
  position: relative;
  left: -130px;
}

.access-modal-dialog {
  margin: calc(var(--header-height) + 12px) 22px 0 auto;
}

.access-modal-content {
  background: radial-gradient(circle at 20% 18%, rgba(86, 86, 86, 0.12), transparent 42%), radial-gradient(circle at 86% 82%, rgba(52, 52, 52, 0.14), transparent 44%), #131313;
  border: 1px solid #2b2d33;
  border-radius: 14px;
  color: var(--heading);
  position: relative;
}

.access-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border: 0;
  color: #b7b7b7;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.access-modal .modal-body {
  padding: 30px 28px 24px;
}

.access-title {
  margin: 0 0 8px;
  text-align: center;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.5px !important;
  font-weight: 400;
}

.access-subtitle {
  margin: 0 auto 18px;
  max-width: 360px;
  text-align: center;
  color: var(--content);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.5px !important;
  margin-bottom: 40px !important;
}

.access-input {
  width: 100%;
  height: 46px;
  border: 1px solid #31343b;
  border-radius: 12px;
  background: rgba(21, 23, 28, 0.85);
  color: var(--heading);
  font-size: 14px;
  padding: 0 14px;
  margin-bottom: 14px;
}


.access-input:hover,
.access-input:focus,
.access-input:focus-visible,
.access-input:active {
  border-color: #31343b !important;
  background: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.access-input::placeholder {
  color: #7f838e;
  font-size: 11px;
}

.access-primary-btn {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 25px;
  background: #4d4f54;
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 1.5px;
}

.access-primary-btn img {
  width: 22px;
  height: 22px;
}

.access-help-text {
  margin: 18px 0 0;
  text-align: center;
  color: var(--content);
  font-size: 13px;
}

.access-help-text a {
  color: var(--heading);
  text-decoration: underline;
}

.pin-input-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.pin-input {
  width: 100%;
  height: 46px;
  border: 1px solid #31343b;
  border-radius: 12px;
  background: rgba(21, 23, 28, 0.85);
  color: var(--heading);
  text-align: center;
  font-size: 18px;
}

.pin-input:hover,
.pin-input:focus,
.pin-input:focus-visible,
.pin-input:active {
  border-color: #31343b !important;
  background: rgba(21, 23, 28, 0.85) !important;
  outline: none !important;
  box-shadow: none !important;
}

.profile-main {
  padding: 50px 0 10px;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 30px;
  align-items: stretch;
}

.profile-gallery-card {
  background: #070809;
  border: 1px solid #14171d;
  padding: 0 0 0px;
  height: 100%;
}

.profile-main-image-wrap {
  position: relative;
}

.profile-main-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 3.28;
  object-fit: cover;
  object-position: center top;
}

.profile-main-video {
  width: 100%;
  display: none;
  aspect-ratio: 3 / 3.28;
  object-fit: cover;
  object-position: center top;
  background: #000;
}

.profile-player-ui {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #d0d2d7;
}

.profile-progress-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 2px;
  background: #45474f;
}

.profile-progress-bar span {
  display: block;
  width: 24%;
  height: 100%;
  background: #d4d6da;
}

.profile-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.profile-thumb {
  flex: 1 1 0;
  border: 0;
  background: transparent;
  padding: 0;
  opacity: 0.75;
}

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

.profile-thumb.is-video {
  position: relative;
}

.profile-video-badge {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0f2f6;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.35);
}

.profile-thumb.is-active {
  opacity: 1;
}

.profile-mobile-carousel {
  position: relative;
}

.profile-mobile-image {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
}

.profile-details-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.profile-name {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  color: var(--heading);
  font-size: 20px;
  border-bottom: 1px solid #20232a;
  font-weight: 400;
}

.profile-mobile-name {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  color: var(--heading);
  font-size: 20px;
  border-bottom: 1px solid #20232a;
  font-weight: 400;
}

.profile-block {
  border-bottom: 1px solid #20232a;
}

.profile-block-title {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--heading);
  text-align: left;
  padding: 12px 0;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.profile-toggle-icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 1.5px solid var(--heading);
  border-bottom: 1.5px solid var(--heading);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  margin-right: 2px;
}

.profile-block-title.collapsed .profile-toggle-icon {
  transform: rotate(-45deg);
}

.profile-specs {
  padding: 0 0 10px;
}

.profile-specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.profile-specs span {
  font-size: 14px;
  line-height: 2;
}

.profile-specs div span:first-child {
  color: var(--content);
}

.profile-specs div span:last-child {
  color: var(--heading);
}

.profile-info-list {
  padding: 2px 0 12px;
}

.profile-info-list p {
  margin: 0 0 8px;
  color: var(--content);
  font-size: 12px;
  line-height: 1.6;
}

.profile-info-list ul {
  margin: 0;
  padding-left: 18px;
}

.profile-info-list li {
  color: var(--content);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.profile-booking {
  text-align: center;
  padding: 48px 0 0;
  margin-top: auto;
}

.profile-booking h2 {
  margin: 0;
  color: var(--heading);
  font-size: 17px;
  font-weight: 400;
}

.profile-booking p {
  margin: 4px 0 14px;
  color: var(--content);
  font-size: 14px;
}

.profile-book-btn {
  display: inline-flex;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #54565e;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--heading);
  font-size: 17px;
}

.profile-book-btn img {
      width: 20px;
    height: 20px;
    margin-left: 10px;
}

@media (max-width: 991px) {
  .hero-section,
  .hero-image {
    min-height: 450px;
  }

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

  .profile-thumb img {
    height: 68px;
  }

  .profile-name {
    display: none;
  }

  .profile-mobile-carousel .mobile-carousel-indicators {
    bottom: -7px;
  }
}

@media (max-width: 575px) {
  :root {
    --header-height: 40px;
  }

  .header-row {
    position: relative;
    justify-content: center;
  }

  .home-preloader-gif {
    width: 40px;
    height: 40px;
  }

  .header-logo-text {
    display: none;
  }

  .header-logo-mark {
    position: relative;
    z-index: 2;
  }

  .header-logo-mark-img {
    width: 23px;
    height: 23px;
  }

  .header-actions {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: block;
    height: 28px;
    pointer-events: none;
  }

  #accessFlowTrigger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
  }

  .menu-trigger {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: auto;
  }

  body.menu-open .menu-trigger {
    position: fixed;
    left: auto;
    right: 10px;
    top: 10px;
    transform: none;
    width: 24px;
    height: 24px;
    z-index: 2302;
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 6, 0.78);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2200;
  }

  .hero-section,
  .hero-image {
    min-height: 340px;
  }

  .section-title {
    font-size: 16px;
  }

  .footer-promo-toggle {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
    gap: 6px;
    width: 100%;
    justify-content: flex-start;
    padding-left: 0px;
  }

  .footer-promo {
    padding: 18px 10px 16px;
  }

  .footer-top {
    padding: 24px 10px 22px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
  }

  .footer-nav {
    gap: 2px;
  }

  .footer-rich-inner h1 {
    font-size: 18px;
  }

  .footer-rich-inner h2 {
    font-size: 16px;
  }

  .footer-rich-inner h3 {
    font-size: 15px;
  }

  .footer-rich-inner h4 {
    font-size: 14px;
  }

  .footer-rich-inner p,
  .footer-rich-inner li {
    font-size: 13px;
  }

  .footer-nav a {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-brand {
    display: none;
  }

  .footer-bottom {
    padding-top: 16px;
  }

  .footer-legal {
            font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2px 2px;
        line-height: 1.35;
  }

  .footer-legal span {
    margin-inline: 2px;
  }

  .footer-copy {
    font-size: 9px;
    margin-top: 8px;
    line-height: 1.35;
  }

  .site-footer {
    padding-bottom: 18px;
  }

  .whatsapp-fixed-bar {
    height: 42px;
    border-radius: 12px;
    font-size: 16px;
    gap: 8px;
  }

  .whatsapp-fixed-wrap {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    padding: 3px;
  }

  .whatsapp-fixed-bar img {
    width: 18px;
    height: 18px;
  }

  .access-modal .modal-dialog {
    max-width: calc(100% - 20px);
    left: 0;
  }

  .age-gate-modal .modal-dialog {
    max-width: calc(100% - 20px);
  }

  .age-gate-modal .modal-body {
    padding: 26px 16px 22px;
  }

  .profile-mobile-name {
    font-size: 16px;
  }

  .profile-block-title {
    font-size: 14px;
  }

  .profile-specs span {
    font-size: 12px;
    line-height: 1.5;
  }

  .profile-booking h2 {
    font-size: 14px;
  }

  .profile-book-btn {
    font-size: 14px;
    height: 40px;
  }

  .profile-booking p {
    font-size: 12px;
  }

  .age-btn {
    height: 40px;
    border-radius: 12px;
    font-size: 13px;
  }

  .access-primary-btn {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 25px;
    background: #4d4f54;
    color: #e0e0e0;
    font-size: 12px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1.5px;
  }

  .access-subtitle {
    margin: 0 auto 18px;
    max-width: 360px;
    text-align: center;
    color: var(--content);
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 1.5px !important;
    margin-bottom: 40px !important;
  }

  .access-help-text {
    margin: 18px 0 0;
    text-align: center;
    color: var(--content);
    font-size: 11px;
  }

  .pin-input {
    width: 100%;
    height: 39px;
    border: 1px solid #31343b;
    border-radius: 12px;
    background: rgba(21, 23, 28, 0.85);
    color: var(--heading);
    text-align: center;
    font-size: 18px;
  }

  .access-modal-dialog {
    margin: 1.75rem auto;
  }

  .right-side-menu {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    z-index: 2301;
  }

  .right-side-menu-card {
    width: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    gap: 16px;
    align-items: center;
  }

  .right-side-menu-card a {
    font-size: 14px;
    text-align: center;
  }

  .blog-section,
  .contact-section,
  .faq-section,
  .payments-section,
  .membership-section,
  .apply-section,
  .sitemap-section {
    padding: 60px 0 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-card-body {
    margin-top: -58px;
    padding: 12px;
  }

  .blog-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .blog-card-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .single-blog-hero-image {
    height: 270px;
  }

  .single-blog-section {
    padding-top: 18px;
  }

  .single-blog-content h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .single-blog-content h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .single-blog-content h3 {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .single-blog-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .single-blog-content li {
    font-size: 14px;
  }

  .single-blog-sidebar-title {
    font-size: 13px;
  }

  .blog-card-compact .blog-card-title {
    font-size: 15px;
  }

  .contact-wrap .section-heading {
    margin-bottom: 24px;
  }

  .contact-field {
    border-radius: 14px;
    padding: 8px 12px 8px 8px;
    margin-bottom: 14px;
  }

  .contact-field-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .contact-field input,
  .contact-field textarea,
  .contact-field input::placeholder,
  .contact-field textarea::placeholder {
    font-size: 13px;
  }

  .contact-field-textarea textarea {
    min-height: 106px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-submit-btn,
  .contact-concierge-btn {
    height: 44px;
    font-size: 14px;
  }

  .faq-wrap .section-heading {
    margin-bottom: 24px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-toggle {
    font-size: 13px;
    padding: 14px 14px;
  }

  .faq-body {
    font-size: 12px;
    padding: 0 14px 14px;
  }

  .payments-wrap .section-heading {
    margin-bottom: 22px;
  }

  .payments-content h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .payments-content h3,
  .payments-content h4 {
    font-size: 14px;
  }

  .payments-content p,
  .payments-content li {
    font-size: 12px;
    line-height: 1.55;
  }

  .payments-content p,
  .payments-content ol,
  .payments-content ul {
    margin-bottom: 14px;
  }

  .membership-wrap .section-heading {
    margin-bottom: 22px;
  }

  .membership-content {
    max-width: 100%;
  }

  .membership-content h2 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .membership-content h3 {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .membership-content p,
  .membership-content li {
    font-size: 12px;
    line-height: 3;
  }

  .membership-content p,
  .membership-content ul,
  .membership-content ol {
    margin-bottom: 14px;
  }

  .membership-content ul,
  .membership-content ol {
    padding-left: 18px;
  }

  .membership-form {
    max-width: 100%;
  }

  .membership-agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .membership-submit-btn,
  .membership-actions .contact-concierge-btn {
    height: 46px;
    border-radius: 14px;
    font-size: 14px;
  }

  .membership-actions {
    gap: 10px;
  }

  .apply-wrap .section-heading {
    margin-bottom: 22px;
  }

  .apply-content h2 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .apply-content p,
  .apply-content li {
    font-size: 12px;
    line-height: 1.6;
  }

  .apply-content p,
  .apply-content ul,
  .apply-content ol {
    margin-bottom: 14px;
  }

  .apply-content ul,
  .apply-content ol {
    padding-left: 18px;
  }

  .apply-actions .contact-concierge-btn {
    height: 46px;
    border-radius: 14px;
    font-size: 14px;
  }

  .sitemap-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 14px;
  }

  .sitemap-col h2 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .sitemap-col a {
    font-size: 13px;
    line-height: 1.7;
  }

  .sitemap-profiles h2 {
    font-size: 18px;
  }

  .sitemap-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .philosophy-section {
    padding: 60px 0 36px;
  }

  .philosophy-wrap .section-heading {
    margin-bottom: 16px;
  }

  .philosophy-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .terms-section {
    padding: 60px 0 36px;
  }

  .terms-wrap .section-heading {
    margin-bottom: 16px;
  }

  .terms-content h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .terms-content p,
  .terms-content li {
    font-size: 12px;
    line-height:1.7;
  }

  .terms-content p,
  .terms-content ul,
  .terms-content ol {
    margin-bottom: 14px;
  }
}
