:root {
    --bdsm-bg: #121212;
    --bdsm-panel: #2e2e2e;
    --bdsm-panel-dark: #242424;
    --bdsm-border: #3a3a3a;
    --bdsm-text: #ecf0f1;
    --bdsm-muted: #c8cdcf;
    --bdsm-accent: #e74c3c;
    --bdsm-accent-dark: #c0392b;
    --bdsm-gold: #d6b36a;
    --bdsm-shadow: 0 16px 40px rgba(0, 0, 0, .28);
    --bdsm-scrollbar-track: #202020;
    --bdsm-scrollbar-thumb: rgba(231, 76, 60, .86);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    background: var(--bdsm-bg);
    color: var(--bdsm-text);
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.bdsm-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.bdsm-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--bdsm-border);
    background: rgba(18, 18, 18, .96);
    backdrop-filter: blur(12px);
}

.bdsm-nav {
    position: relative;
    display: flex;
    width: min(1200px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    align-items: center;
    gap: 20px;
}

.bdsm-brand {
    display: inline-flex;
    min-width: 225px;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.bdsm-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(231, 76, 60, .45);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(231, 76, 60, .22), rgba(231, 76, 60, .04));
    color: var(--bdsm-accent);
}

.bdsm-brand__copy {
    display: grid;
    line-height: 1.15;
}

.bdsm-brand__copy strong {
    color: var(--bdsm-accent);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.bdsm-brand__copy small {
    margin-top: 4px;
    color: var(--bdsm-muted);
    font-size: .68rem;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.bdsm-nav-links {
    display: flex;
    margin: 0 0 0 auto;
    padding: 0;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.bdsm-nav-links > li > a,
.bdsm-nav-links > li > button,
.bdsm-nav-group summary {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 11px;
    align-items: center;
    gap: 7px;
    border-radius: 6px;
    color: var(--bdsm-text);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.bdsm-nav-links > li > a:hover,
.bdsm-nav-links > li > a:focus-visible,
.bdsm-nav-links > li > button:hover,
.bdsm-nav-links > li > button:focus-visible,
.bdsm-nav-group summary:hover,
.bdsm-nav-group summary:focus-visible,
.bdsm-nav-group details[open] > summary {
    background: rgba(255, 255, 255, .055);
    color: var(--bdsm-accent);
}

.bdsm-nav-group {
    position: relative;
}

.bdsm-nav-group details {
    position: relative;
}

.bdsm-nav-group summary {
    list-style: none;
}

.bdsm-nav-group summary::-webkit-details-marker {
    display: none;
}

.bdsm-nav-group summary i {
    font-size: .68rem;
    transition: transform .18s ease;
}

.bdsm-nav-group details[open] > summary i {
    transform: rotate(180deg);
}

.bdsm-nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: grid;
    width: min(360px, calc(100vw - 40px));
    padding: 9px;
    gap: 3px;
    border: 1px solid var(--bdsm-border);
    border-radius: 9px;
    background: #1b1b1b;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .45);
}

.bdsm-nav-panel--services {
    right: 0;
    left: auto;
    width: min(430px, calc(100vw - 40px));
}

.bdsm-nav-subgroup,
.bdsm-nav-subgroup > details {
    width: 100%;
}

.bdsm-nav-subgroup > details > summary {
    display: flex;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    color: #fff;
    font-size: .9rem;
}

.bdsm-nav-panel--nested {
    position: static;
    width: 100%;
    margin: 3px 0 5px;
    padding: 5px 0 5px 9px;
    border: 0;
    border-left: 1px solid var(--bdsm-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.bdsm-nav-panel a,
.bdsm-nav-panel-action {
    display: flex;
    width: 100%;
    padding: 11px 12px;
    align-items: flex-start;
    gap: 11px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.bdsm-nav-panel a:hover,
.bdsm-nav-panel a:focus-visible,
.bdsm-nav-panel-action:hover,
.bdsm-nav-panel-action:focus-visible {
    background: #292929;
}

.bdsm-nav-panel a > i,
.bdsm-nav-panel-action > i {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 6px;
    background: rgba(231, 76, 60, .12);
    color: var(--bdsm-accent);
    text-align: center;
}

.bdsm-nav-panel a span,
.bdsm-nav-panel-action span {
    display: grid;
    min-width: 0;
}

.bdsm-nav-panel a strong,
.bdsm-nav-panel-action strong {
    color: #fff;
    font-size: .9rem;
    line-height: 1.3;
}

.bdsm-nav-panel a small {
    margin-top: 3px;
    color: var(--bdsm-muted);
    font-size: .76rem;
    line-height: 1.35;
}

.bdsm-nav-links .bdsm-nav-cta {
    display: inline-flex;
    padding: 9px 14px;
    border: 0;
    border-radius: 5px;
    background: var(--bdsm-accent);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.bdsm-nav-links .bdsm-nav-cta:hover,
.bdsm-nav-links .bdsm-nav-cta:focus-visible {
    background: var(--bdsm-accent-dark);
    color: #fff;
}

.bdsm-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border: 1px solid var(--bdsm-border);
    border-radius: 5px;
    background: var(--bdsm-panel);
    color: #fff;
    cursor: pointer;
}

.bdsm-language-switcher {
    display: flex;
    margin-left: 8px;
    align-items: center;
}

.bdsm-nav-links .bdsm-language-trigger {
    display: inline-flex;
    width: auto;
    min-width: 64px;
    height: 44px;
    padding: 6px 5px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

.bdsm-nav-links .bdsm-language-trigger > .fa-globe {
    color: var(--bdsm-muted);
    font-size: .82rem;
}

.bdsm-nav-links .bdsm-language-trigger > .fa-chevron-down {
    color: var(--bdsm-muted);
    font-size: .55rem;
}

.bdsm-nav-links .bdsm-language-trigger > span {
    color: var(--bdsm-text);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
}

.bdsm-nav-links .bdsm-language-trigger:hover,
.bdsm-nav-links .bdsm-language-trigger:focus-visible {
    background: rgba(255, 255, 255, .055);
}

.bdsm-language-modal .public-modal__dialog {
    width: min(760px, calc(100vw - 24px)) !important;
    max-width: 760px !important;
    padding: 0;
    overflow: hidden;
    border-color: #444;
    border-radius: 12px;
    background: #292929;
}

.bdsm-language-modal .public-modal__header {
    padding: 26px 28px 10px;
    align-items: center;
    border-bottom: 0;
}

.bdsm-language-modal .public-modal__title {
    font-size: 1.55rem;
    letter-spacing: -.01em;
}

.bdsm-language-modal .public-modal__body {
    padding: 8px 28px 28px;
}

html[dir="rtl"] .bdsm-language-modal .public-modal__close {
    right: auto;
    left: 13px;
}

.bdsm-language-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
}

.bdsm-language-option {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 12px;
    min-width: 0;
    min-height: 48px;
    padding: 10px 2px;
    align-items: center;
    gap: 8px;
    border: 0;
    border-bottom: 1px solid #404040;
    border-radius: 0;
    background: transparent;
    color: var(--bdsm-text);
    text-align: start;
    text-decoration: none;
}

.bdsm-language-option:hover,
.bdsm-language-option:focus-visible,
.bdsm-language-option.is-active {
    border-bottom-color: var(--bdsm-accent);
    background: rgba(255, 255, 255, .025);
    color: #fff;
}

.bdsm-language-option.is-active {
    color: var(--bdsm-accent);
}

.bdsm-language-option__code {
    display: inline-block;
    width: 26px;
    color: var(--bdsm-muted);
    direction: ltr;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: start;
}

.bdsm-language-option__name {
    min-width: 0;
    font-weight: 700;
}

.bdsm-language-option > i {
    color: var(--bdsm-accent);
    font-size: .7rem;
    opacity: 0;
}

.bdsm-language-option.is-active > i {
    opacity: 1;
}

.bdsm-language-option.is-active .bdsm-language-option__code {
    color: var(--bdsm-accent);
}

.bdsm-hero {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 96px) 0 48px;
    text-align: center;
}

.bdsm-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    align-items: center;
    gap: 8px;
    color: var(--bdsm-gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.bdsm-hero h1 {
    margin: 0;
    color: var(--bdsm-accent);
    font-size: clamp(2.1rem, 6vw, 4rem);
    line-height: 1.08;
    letter-spacing: .06em;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.bdsm-hero > p {
    margin: 18px 0 0;
    color: var(--bdsm-muted);
    font-size: clamp(1rem, 2vw, 1.28rem);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bdsm-quote {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto 48px;
    padding: 24px 30px;
    border-left: 4px solid var(--bdsm-accent);
    background: var(--bdsm-panel-dark);
    box-shadow: var(--bdsm-shadow);
}

.bdsm-quote blockquote {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-style: italic;
    text-align: center;
}

.bdsm-quote footer {
    margin-top: 8px;
    color: var(--bdsm-muted);
    font-size: .95rem;
    font-style: normal;
}

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

.bdsm-box {
    margin-bottom: 28px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--bdsm-border);
    border-radius: 10px;
    background: var(--bdsm-panel);
    box-shadow: var(--bdsm-shadow);
}

.bdsm-box--image {
    position: relative;
    isolation: isolate;
    min-height: 420px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.bdsm-box--image::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 18, 18, .94) 0%, rgba(18, 18, 18, .78) 55%, rgba(18, 18, 18, .38) 100%);
    content: "";
}

.bdsm-box--image .bdsm-reading-width {
    max-width: 720px;
}

.bdsm-box h2,
.webform-public-page h1,
.webform-public-page h2 {
    margin: 0 0 26px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bdsm-accent);
    color: var(--bdsm-accent);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.18;
}

.bdsm-box h3 {
    margin: 0 0 16px;
    color: var(--bdsm-accent);
    font-size: 1.5rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.bdsm-box p:last-child,
.bdsm-box ul:last-child {
    margin-bottom: 0;
}

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

.bdsm-icon-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bdsm-icon-list li {
    display: flex;
    margin-bottom: 14px;
    align-items: flex-start;
    gap: 12px;
}

.bdsm-icon-list i {
    width: 22px;
    margin-top: 5px;
    color: var(--bdsm-accent);
    text-align: center;
}

.bdsm-safety-note {
    padding: 22px;
    border-radius: 8px;
    background: rgba(18, 18, 18, .78);
}

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

.bdsm-event-card {
    display: flex;
    min-width: 0;
    padding: 22px;
    flex-direction: column;
    border: 1px solid #343434;
    border-radius: 7px;
    background: #2b2b2b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
}

.bdsm-event-card h3 {
    display: flex;
    margin: 0 0 16px;
    align-items: flex-start;
    gap: 11px;
    overflow-wrap: anywhere;
}

.bdsm-event-card h3 i {
    margin-top: 4px;
    flex: 0 0 auto;
}

.bdsm-event-card p {
    margin: 0 0 13px;
}

.bdsm-event-card__meta {
    display: grid;
    gap: 7px;
    color: var(--bdsm-muted);
    font-size: .9rem;
}

.bdsm-event-card__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bdsm-event-card__meta i {
    width: 16px;
    color: var(--bdsm-accent);
    text-align: center;
}

.bdsm-event-card__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
}

.bdsm-event-card__facts span {
    display: flex;
    min-width: 0;
    padding: 12px 10px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
}

.bdsm-event-card__facts span + span {
    border-left: 1px solid #424242;
}

.bdsm-event-card__facts i {
    color: var(--bdsm-accent);
    font-size: 1rem;
}

.bdsm-event-card__facts strong {
    overflow: hidden;
    font-size: .96rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bdsm-event-card__body {
    display: flex;
    height: 100%;
    padding-top: 14px;
    flex-direction: column;
}

.bdsm-event-card__body .bdsm-button {
    margin-top: auto;
    align-self: flex-start;
}

.bdsm-button,
.webform-public__submit,
.public-form-confirmation button {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 17px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: var(--bdsm-accent);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.bdsm-button:hover,
.bdsm-button:focus-visible,
.webform-public__submit:hover,
.webform-public__submit:focus-visible,
.public-form-confirmation button:hover,
.public-form-confirmation button:focus-visible {
    background: var(--bdsm-accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.bdsm-button--ghost {
    border: 1px solid #5c5c5c;
    background: rgba(18, 18, 18, .5);
}

.bdsm-button--ghost:hover,
.bdsm-button--ghost:focus-visible {
    border-color: var(--bdsm-accent);
    background: #242424;
}

.bdsm-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bdsm-accent);
    font-weight: 900;
    text-decoration: none;
}

.bdsm-text-link:hover,
.bdsm-text-link:focus-visible {
    color: #ff7669;
}

.bdsm-text-link i {
    transition: transform .18s ease;
}

.bdsm-text-link:hover i,
.bdsm-text-link:focus-visible i {
    transform: translateX(3px);
}

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

.bdsm-stat {
    padding: 22px;
    border-radius: 7px;
    background: #262626;
    text-align: center;
}

.bdsm-stat > i {
    display: block;
    margin-bottom: 7px;
    color: var(--bdsm-gold);
    font-size: 1.2rem;
}

.bdsm-stat strong {
    display: block;
    color: var(--bdsm-accent);
    font-size: 2rem;
}

.bdsm-search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.bdsm-search-wrap > i {
    position: absolute;
    top: 50%;
    left: 16px;
    color: var(--bdsm-accent);
    transform: translateY(-50%);
}

.bdsm-search {
    width: 100%;
    padding: 13px 15px 13px 45px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #444;
    color: #fff;
}

.bdsm-search:focus {
    outline: 3px solid rgba(231, 76, 60, .25);
    border-color: var(--bdsm-accent);
}

.bdsm-location-scroll {
    max-height: 430px;
    overflow-y: auto;
    scrollbar-color: var(--bdsm-accent) var(--bdsm-panel);
}

.bdsm-location-list {
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 32px;
    list-style: none;
}

.bdsm-location-item {
    break-inside: avoid;
    border-bottom: 1px solid #3a3a3a;
}

.bdsm-location-button {
    display: flex;
    width: 100%;
    padding: 11px 10px;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--bdsm-text);
    text-align: left;
    cursor: pointer;
}

.bdsm-location-button span {
    display: grid;
    flex: 1 1 auto;
}

.bdsm-location-button span strong {
    font-weight: 800;
}

.bdsm-location-button > i:last-child {
    color: #777;
    font-size: .72rem;
}

.bdsm-location-button:hover,
.bdsm-location-button:focus-visible {
    background: #3a3a3a;
    color: #fff;
}

.bdsm-location-button i {
    color: var(--bdsm-accent);
}

.bdsm-location-empty {
    margin: 18px 0 0;
    color: var(--bdsm-muted);
}

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

.bdsm-membership-card {
    display: flex;
    padding: 26px;
    flex-direction: column;
    border: 1px solid #414141;
    border-radius: 8px;
    background: #272727;
}

.bdsm-membership-card--featured {
    border-color: rgba(214, 179, 106, .7);
    background: linear-gradient(145deg, #302b25, #272727 56%);
}

.bdsm-plan-label {
    display: inline-flex;
    margin-bottom: 12px;
    align-items: center;
    gap: 7px;
    color: var(--bdsm-gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bdsm-membership-card h3 {
    text-transform: none;
}

.bdsm-membership-card .bdsm-price {
    margin-top: auto;
    color: var(--bdsm-accent);
    font-size: 1.35rem;
    font-weight: 900;
}

.bdsm-price small {
    color: var(--bdsm-muted);
    font-size: .78rem;
    font-weight: 700;
}

.bdsm-membership-card ul {
    padding-left: 1.25rem;
}

.bdsm-membership-cta {
    width: 100%;
    margin-top: 24px;
    gap: 9px;
}

.bdsm-member-area__lead {
    margin: 0 0 20px;
    color: var(--bdsm-muted);
    line-height: 1.55;
}

.bdsm-member-modal .public-modal__dialog {
    width: min(420px, calc(100vw - 24px)) !important;
    max-width: 420px !important;
    padding: 0;
    overflow: hidden;
    border-color: #444;
    border-radius: 12px;
    background: #292929;
}

.bdsm-member-modal .public-modal__header {
    padding: 24px 26px 10px;
}

.bdsm-member-modal .public-modal__title {
    padding-right: 34px;
    font-size: 1.5rem;
}

.bdsm-member-modal .public-modal__body {
    padding: 8px 26px 26px;
}

.bdsm-member-modal .webform-public {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.bdsm-member-modal .bdsm-member-area__lead {
    color: #c9c9c9;
}

.bdsm-member-modal .webform-public__field label {
    color: var(--bdsm-text);
}

.bdsm-member-login {
    max-width: none;
}

.bdsm-member-login .webform-public__submit {
    width: 100%;
    gap: 9px;
}

.bdsm-member-area__identity {
    display: flex;
    margin-bottom: 24px;
    padding: 20px;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--bdsm-border);
    border-radius: 8px;
    background: #272727;
}

.bdsm-member-logout .bdsm-button {
    width: 100%;
}

.bdsm-member-area__identity i {
    color: var(--bdsm-accent);
    font-size: 1.8rem;
}

.bdsm-member-logout {
    justify-items: start;
}

.bdsm-section-heading {
    display: flex;
    margin-bottom: 26px;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.bdsm-section-heading h2 {
    margin-bottom: 0;
    overflow-wrap: anywhere;
}

.bdsm-section-heading > * {
    min-width: 0;
}

.bdsm-section-heading > p {
    max-width: 560px;
    margin: 0;
    color: var(--bdsm-muted);
}

.bdsm-kit-rail {
    display: grid;
    width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 42px) / 4);
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--bdsm-scrollbar-thumb) var(--bdsm-scrollbar-track);
    scrollbar-width: thin;
}

.bdsm-kit-rail::-webkit-scrollbar {
    height: 4px;
}

.bdsm-kit-rail::-webkit-scrollbar-track {
    border-radius: 999px;
    background: var(--bdsm-scrollbar-track);
}

.bdsm-kit-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--bdsm-scrollbar-thumb);
}

.bdsm-kit-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #404040;
    border-radius: 9px;
    background: #272727;
    color: #fff;
    scroll-snap-align: start;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.bdsm-kit-card:hover,
.bdsm-kit-card:focus-visible {
    border-color: var(--bdsm-accent);
    background: #2d2d2d;
    transform: translateY(-2px);
}

.bdsm-kit-card img {
    display: block;
    width: 100%;
    height: 158px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.bdsm-kit-card__body {
    display: flex;
    padding: 12px 14px 14px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.bdsm-kit-card h3 {
    margin: 0;
    color: #fff;
    font-size: .9rem;
    text-transform: none;
}

.bdsm-kit-card__body > strong {
    color: var(--bdsm-gold);
    font-size: .9rem;
    line-height: 1.15;
    text-align: right;
    white-space: nowrap;
}

.bdsm-kit-card__body small {
    display: block;
    margin-top: 2px;
    color: var(--bdsm-muted);
    font-size: .65rem;
    font-weight: 700;
}

.bdsm-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
}

.bdsm-faq-item {
    border: 1px solid #404040;
    border-radius: 7px;
    background: #272727;
}

.bdsm-faq-item summary {
    display: flex;
    padding: 16px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.bdsm-faq-item summary::-webkit-details-marker {
    display: none;
}

.bdsm-faq-item summary i {
    flex: 0 0 auto;
    color: var(--bdsm-accent);
    transition: transform .18s ease;
}

.bdsm-faq-item[open] summary i {
    transform: rotate(45deg);
}

.bdsm-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--bdsm-muted);
}

.bdsm-faq-page__box {
    margin-bottom: 0;
}

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

.bdsm-flight-service {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 230px;
    margin-bottom: 24px;
    overflow: hidden;
    padding: clamp(28px, 5vw, 48px);
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(214, 179, 106, .72);
    border-radius: 10px;
    background:
        radial-gradient(circle at 8% 50%, rgba(214, 179, 106, .2), transparent 25%),
        linear-gradient(135deg, #332d25 0%, #252424 58%, #202020 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.bdsm-flight-service::after {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 9%;
    left: 9%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 179, 106, .18), transparent);
    content: "";
}

.bdsm-flight-service__icon {
    display: grid;
    width: 112px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(214, 179, 106, .55);
    border-radius: 50%;
    background: rgba(18, 18, 18, .72);
    color: var(--bdsm-gold);
    font-size: 2.4rem;
    box-shadow: inset 0 0 0 8px rgba(214, 179, 106, .04);
}

.bdsm-flight-service__body {
    min-width: 0;
}

.bdsm-flight-service h3,
.bdsm-box .bdsm-flight-service h3 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.15;
    text-transform: none;
}

.bdsm-flight-service p {
    max-width: 720px;
    margin: 0;
    color: var(--bdsm-muted);
    font-size: 1.05rem;
}

.bdsm-flight-service__action {
    position: relative;
    flex: 0 0 auto;
    gap: 8px;
}

.bdsm-service-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #404040;
    border-radius: 9px;
    background: #272727;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    transition: border-color .18s ease, transform .18s ease;
}

.bdsm-service-card:hover {
    border-color: rgba(231, 76, 60, .72);
    transform: translateY(-3px);
}

.bdsm-service-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #181818;
}

.bdsm-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.bdsm-service-card:hover .bdsm-service-card__media img {
    transform: scale(1.035);
}

.bdsm-service-card__body {
    display: flex;
    padding: 22px;
    flex: 1 1 auto;
    flex-direction: column;
}

.bdsm-service-card h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
    text-transform: none;
}

.bdsm-service-card h3 a {
    text-decoration: none;
}

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

.bdsm-service-card .bdsm-text-link {
    margin-top: auto;
}

.bdsm-footer {
    padding: 30px 20px;
    border-top: 1px solid var(--bdsm-border);
    background: #181818;
    color: var(--bdsm-muted);
    text-align: center;
}

.bdsm-footer p {
    margin: 4px 0;
}

.public-modal {
    --public-modal-padding: clamp(12px, 2.5vw, 30px);
    --public-modal-overlay-background: rgba(0, 0, 0, .78);
    --public-modal-backdrop: transparent;
    --public-modal-dialog-max-height: calc(100dvh - 40px);
    --public-modal-dialog-padding: 30px;
    --public-modal-dialog-border: 1px solid var(--bdsm-border);
    --public-modal-dialog-radius: 10px;
    --public-modal-dialog-background: var(--bdsm-panel);
    --public-modal-dialog-shadow: var(--bdsm-shadow);
    --public-modal-header-gap: 20px;
    --public-modal-header-padding: 0;
    --public-modal-header-border: 0;
    --public-modal-title-color: var(--bdsm-accent);
    --public-modal-title-size: clamp(1.65rem, 4vw, 2.2rem);
    --public-modal-title-line-height: 1.2;
    --public-modal-close-size: 40px;
    --public-modal-close-border: 0;
    --public-modal-close-background: transparent;
    --public-modal-close-color: #fff;
    --public-modal-close-font-size: 1.8rem;
}

html,
.public-modal__dialog,
.webform-public-document--modal {
    scrollbar-color: var(--bdsm-scrollbar-thumb) var(--bdsm-scrollbar-track);
    scrollbar-width: thin;
}

.webform-public-document--modal {
    overflow-y: auto;
}

html::-webkit-scrollbar,
.public-modal__dialog::-webkit-scrollbar,
.webform-public-document--modal::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

html::-webkit-scrollbar-track,
.public-modal__dialog::-webkit-scrollbar-track,
.webform-public-document--modal::-webkit-scrollbar-track {
    border-radius: 999px;
    background: var(--bdsm-scrollbar-track);
}

html::-webkit-scrollbar-thumb,
.public-modal__dialog::-webkit-scrollbar-thumb,
.webform-public-document--modal::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--bdsm-scrollbar-thumb);
}

html::-webkit-scrollbar-thumb:hover,
.public-modal__dialog::-webkit-scrollbar-thumb:hover,
.webform-public-document--modal::-webkit-scrollbar-thumb:hover {
    background: var(--bdsm-accent);
}

.public-modal__dialog > h2 {
    margin: 0 48px 10px 0;
    color: var(--bdsm-accent);
    font-size: clamp(1.65rem, 4vw, 2.2rem);
    line-height: 1.2;
}

.public-modal__close {
    position: absolute;
    top: 13px;
    right: 13px;
}

.bdsm-map {
    margin: 24px 0;
    overflow: hidden;
    border: 1px solid #494949;
    border-radius: 8px;
    background: #1c1c1c;
}

.bdsm-map__header {
    display: flex;
    min-height: 48px;
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #494949;
}

.bdsm-map__header a {
    color: var(--bdsm-accent);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.bdsm-map__canvas {
    position: relative;
    aspect-ratio: 16 / 8;
    min-height: 260px;
    background: #222;
}

.bdsm-map__canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.bdsm-map__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    padding: 26px;
    place-content: center;
    gap: 10px;
    background:
        linear-gradient(30deg, transparent 24%, rgba(255, 255, 255, .035) 25%, rgba(255, 255, 255, .035) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .035) 75%, rgba(255, 255, 255, .035) 76%, transparent 77%),
        linear-gradient(120deg, #242424, #1b1b1b);
    background-size: 52px 52px, auto;
    color: var(--bdsm-muted);
    text-align: center;
}

.bdsm-map__placeholder[hidden] {
    display: none;
}

.bdsm-map__placeholder i {
    color: var(--bdsm-accent);
    font-size: 2rem;
}

.bdsm-modal-subtitle {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.1rem;
}

.bdsm-modal-subtitle--services {
    margin-top: 34px;
}

.bdsm-amenities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.bdsm-amenity {
    display: flex;
    padding: 10px;
    align-items: center;
    border-radius: 5px;
    background: #363636;
}

.bdsm-amenity[hidden],
.bdsm-location-service[hidden] {
    display: none;
}

.bdsm-amenity i {
    width: 24px;
    color: var(--bdsm-accent);
}

.bdsm-location-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.bdsm-location-service {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
    gap: 12px;
    border: 1px solid #444;
    border-radius: 7px;
    background: #343434;
}

.bdsm-location-service[data-location-camera-service] {
    grid-column: 1 / -1;
}

.bdsm-location-service > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(231, 76, 60, .14);
    color: var(--bdsm-accent);
}

.bdsm-location-service h4 {
    margin: 0;
}

.bdsm-location-service h4 {
    color: #fff;
    font-size: 1rem;
}

.bdsm-location-service .bdsm-text-link {
    margin-top: 5px;
    font-size: .82rem;
}

.bdsm-form-modal__dialog,
.bdsm-form-modal .public-modal__dialog {
    width: min(1020px, 85vw) !important;
    max-width: 1020px !important;
    padding: 0;
    overflow: hidden;
}

.bdsm-form-modal__dialog .public-modal__header,
.bdsm-form-modal .public-modal__header {
    min-height: 72px;
    padding: 22px 28px 18px;
    align-items: center;
    border-bottom: 1px solid var(--bdsm-border);
}

.bdsm-form-modal__dialog .public-modal__close,
.bdsm-form-modal .public-modal__close {
    position: static;
    flex: 0 0 auto;
}

.bdsm-form-modal__frame {
    display: block;
    width: 100%;
    height: min(720px, calc(100vh - 114px));
    border: 0;
    background: var(--bdsm-panel);
}

.bdsm-page {
    min-height: calc(100vh - 180px);
}

.bdsm-page-hero,
.bdsm-article {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.bdsm-page-hero {
    padding: clamp(62px, 9vw, 108px) 0 38px;
    text-align: center;
}

.bdsm-page-hero h1,
.bdsm-article__header h1 {
    margin: 0;
    color: var(--bdsm-accent);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.06;
}

.bdsm-page-hero > p,
.bdsm-article__header > p {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--bdsm-muted);
    font-size: 1.08rem;
}

.bdsm-article__header-actions {
    display: flex;
    margin-top: 24px;
    justify-content: center;
}

.bdsm-article__header-actions .bdsm-button {
    gap: 9px;
}

.bdsm-content--page {
    padding: 10px 0 62px;
}

.bdsm-membership-application {
    width: min(760px, calc(100% - 40px));
    padding-top: 48px;
}

.bdsm-membership-application__back {
    margin-bottom: 18px;
}

.bdsm-membership-application__back:hover i,
.bdsm-membership-application__back:focus-visible i {
    transform: translateX(-3px);
}

html[dir="rtl"] .bdsm-membership-application__back i {
    transform: rotate(180deg);
}

html[dir="rtl"] .bdsm-membership-application__back:hover i,
html[dir="rtl"] .bdsm-membership-application__back:focus-visible i {
    transform: rotate(180deg) translateX(-3px);
}

.bdsm-membership-application__box {
    margin-bottom: 0;
}

.bdsm-membership-application__header {
    margin-bottom: 28px;
}

.bdsm-membership-application__header h1 {
    margin: 12px 0 10px;
    color: var(--bdsm-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}

.bdsm-membership-application__header p {
    margin: 0;
    color: var(--bdsm-muted);
    line-height: 1.65;
}

.bdsm-article {
    padding: clamp(50px, 8vw, 90px) 0 72px;
}

.bdsm-article__header {
    max-width: 850px;
    margin: 0 auto 36px;
    text-align: center;
}

.bdsm-back-link {
    display: flex;
    margin-bottom: 26px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--bdsm-muted);
    font-weight: 800;
    text-decoration: none;
}

.bdsm-back-link:hover,
.bdsm-back-link:focus-visible {
    color: var(--bdsm-accent);
}

.bdsm-article__body {
    padding: clamp(22px, 5vw, 52px);
    border: 1px solid var(--bdsm-border);
    border-radius: 10px;
    background: var(--bdsm-panel);
    box-shadow: var(--bdsm-shadow);
}

.bdsm-article__body .public-article-content__figure {
    margin: 0 0 34px;
}

.bdsm-article__body .public-article-content__image {
    display: block;
    width: 100%;
    max-height: 560px;
    border-radius: 7px;
    object-fit: cover;
}

.bdsm-article__body .public-content__caption {
    margin: 8px 0 0;
    color: #9ea3a5;
    font-size: .78rem;
}

.bdsm-article__body .public-article-content__block--paragraph {
    max-width: 760px;
    margin: 0 auto 24px;
}

.bdsm-article__body h2 {
    margin: 40px 0 14px;
    color: var(--bdsm-accent);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.2;
}

.bdsm-article__body ul {
    padding-left: 1.3rem;
}

.bdsm-article__body a {
    color: var(--bdsm-accent);
    font-weight: 800;
}

.bdsm-equipment-catalog {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0;
    row-gap: 24px;
}

.bdsm-equipment-catalog > .public-article-content__block {
    min-width: 0;
}

.bdsm-equipment-catalog > :nth-child(1),
.bdsm-equipment-catalog > :nth-child(2),
.bdsm-equipment-catalog > :last-child {
    grid-column: 1 / -1;
}

.bdsm-equipment-catalog > .public-article-content__figure:nth-child(1) {
    margin-bottom: 0;
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(2) {
    max-width: 800px;
    margin: 0 auto;
    color: #e8e8e8;
    font-size: 1.08rem;
    text-align: center;
}

.bdsm-equipment-catalog > .public-article-content__figure:nth-child(n + 3) {
    display: flex;
    margin: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #454545;
    border-right: 0;
    border-radius: 9px 0 0 9px;
    background: #1c1c1c;
}

.bdsm-equipment-catalog > .public-article-content__figure:nth-child(n + 3) .public-article-content__image {
    min-height: 310px;
    flex: 1 1 auto;
    border-radius: 0;
}

.bdsm-equipment-catalog > .public-article-content__figure:nth-child(n + 3) .public-content__caption {
    margin: 0;
    padding: 11px 14px;
    border-top: 1px solid #3b3b3b;
    background: #202020;
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(n + 4):nth-child(even):not(:last-child) {
    display: flex;
    max-width: none;
    margin: 0;
    padding: clamp(22px, 3vw, 34px);
    flex-direction: column;
    justify-content: center;
    border: 1px solid #454545;
    border-left-color: #343434;
    border-radius: 0 9px 9px 0;
    background: linear-gradient(145deg, #2c2c2c, #242424);
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(n + 4):nth-child(even):not(:last-child) h2 {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(n + 4):nth-child(even):not(:last-child) > p:first-of-type {
    margin: 0 0 14px;
    color: var(--bdsm-gold);
    font-size: 1.12rem;
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(n + 4):nth-child(even):not(:last-child) ul {
    margin: 0;
    color: #d7d7d7;
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:last-child {
    max-width: none;
    margin: 4px 0 0;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(214, 179, 106, .4);
    border-radius: 9px;
    background: linear-gradient(145deg, #302b25, #242424);
}

.bdsm-equipment-catalog > .public-article-content__block--paragraph:last-child h2:first-child {
    margin-top: 0;
}

.bdsm-article-cta {
    display: flex;
    margin-top: 28px;
    padding: 26px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(214, 179, 106, .55);
    border-radius: 10px;
    background: linear-gradient(145deg, #302b25, #242424);
}

.bdsm-article-cta h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.55rem;
}

.bdsm-article-cta p {
    margin: 0;
    color: var(--bdsm-muted);
}

.bdsm-article-cta .bdsm-button {
    flex: 0 0 auto;
}

.webform-public-page {
    width: min(760px, calc(100% - 40px));
    margin: 48px auto;
    padding: 0;
    background: transparent;
}

.webform-public-page__container {
    padding: clamp(24px, 5vw, 40px);
    border: 1px solid var(--bdsm-border);
    border-radius: 10px;
    background: var(--bdsm-panel);
    box-shadow: var(--bdsm-shadow);
}

.webform-public-document--modal {
    background: var(--bdsm-panel);
}

.webform-public-document--modal .webform-public-page {
    width: 100%;
    margin: 0;
}

.webform-public-document--modal .webform-public-page__container {
    padding: 24px 28px 32px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.webform-public-document--modal .webform-public-page__header {
    display: none;
}

.webform-public-document--modal .webform-public__page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.webform-public-document--modal .webform-public__page-title,
.webform-public-document--modal .webform-public__page-description {
    grid-column: 1 / -1;
}

.webform-public,
.webform-public__page,
.webform-public__fields,
.public-form-confirmation {
    display: grid;
    gap: 16px;
}

.webform-public-document .webform-public,
.bdsm-membership-application .webform-public {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.webform-public-document .webform-public-page__header h1 {
    color: var(--bdsm-accent);
}

.webform-public-document .webform-public__page-title,
.webform-public-document .webform-public__label,
.webform-public-document .webform-public__choice,
.webform-public-document .webform-public-system-page h2,
.webform-public-document .webform-public-system-page__body,
.bdsm-membership-application .webform-public__page-title,
.bdsm-membership-application .webform-public__label,
.bdsm-membership-application .webform-public__choice,
.bdsm-membership-application .webform-public-system-page h2,
.bdsm-membership-application .webform-public-system-page__body {
    color: var(--bdsm-text);
}

.webform-public-document .webform-public__page-description,
.webform-public-document .webform-public__help,
.bdsm-membership-application .webform-public__page-description,
.bdsm-membership-application .webform-public__help {
    color: var(--bdsm-muted);
}

.webform-public-document .webform-public-system-page,
.bdsm-membership-application .webform-public-system-page {
    border-color: var(--bdsm-border);
    background: var(--bdsm-panel-dark);
    box-shadow: none;
}

.webform-public__page h2 {
    margin-top: 12px;
    font-size: 1.5rem;
}

.webform-public__field label,
.webform-public label {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
}

.webform-public input,
.webform-public textarea,
.webform-public select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #424242;
    color: #fff;
}

.webform-public input:focus,
.webform-public textarea:focus,
.webform-public select:focus {
    outline: 3px solid rgba(231, 76, 60, .25);
    border-color: var(--bdsm-accent);
}

.webform-public__error,
.webform-public__errors,
.public-form-confirmation__error {
    color: #ffafa7;
}

.webform-public__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

@media (max-width: 940px) {
    .bdsm-event-grid,
    .bdsm-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bdsm-brand__copy small {
        display: none;
    }

    .bdsm-brand {
        min-width: 174px;
    }

    .bdsm-kit-rail {
        grid-auto-columns: calc((100% - 14px) / 2);
    }

    .bdsm-flight-service {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .bdsm-flight-service__icon {
        width: 88px;
        font-size: 2rem;
    }

    .bdsm-flight-service__action {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 1350px) {
    .bdsm-menu-button {
        display: grid;
    }

    .bdsm-nav-links {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        border: 1px solid var(--bdsm-border);
        background: #181818;
        box-shadow: var(--bdsm-shadow);
    }

    .bdsm-nav-links.is-open,
    .bdsm-nav-links[data-open="true"] {
        display: flex;
    }

    .bdsm-nav-links a,
    .bdsm-nav-links button {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .bdsm-nav-links > li > a,
    .bdsm-nav-links > li > button,
    .bdsm-nav-group summary {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .bdsm-nav-group,
    .bdsm-nav-group details {
        width: 100%;
    }

    .bdsm-nav-panel,
    .bdsm-nav-panel--services {
        position: static;
        width: 100%;
        margin: 4px 0 8px;
        border-color: #343434;
        box-shadow: none;
    }

    .bdsm-nav-panel a,
    .bdsm-nav-panel-action {
        display: flex;
        text-align: left;
    }

    .bdsm-language-switcher {
        justify-content: center;
        margin: 4px 0 0;
    }

    .bdsm-nav-links .bdsm-language-trigger {
        display: inline-flex;
        width: auto;
        min-width: 64px;
        padding: 6px 5px;
    }
}

@media (max-width: 760px) {

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

    .bdsm-safety-grid,
    .bdsm-faq-grid,
    .bdsm-membership-grid,
    .bdsm-stats {
        grid-template-columns: 1fr;
    }

    .bdsm-location-list {
        columns: 1;
    }

    .bdsm-box--image::before {
        background: rgba(18, 18, 18, .82);
    }

    .bdsm-section-heading,
    .bdsm-article-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .bdsm-flight-service {
        grid-template-columns: 1fr;
    }

    .bdsm-flight-service__icon {
        width: 72px;
        font-size: 1.65rem;
    }

    .bdsm-flight-service__action {
        grid-column: 1;
    }

    .bdsm-equipment-catalog {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 0;
    }

    .bdsm-equipment-catalog > .public-article-content__block {
        grid-column: 1;
    }

    .bdsm-equipment-catalog > .public-article-content__figure:nth-child(1),
    .bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(2),
    .bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(n + 4):nth-child(even):not(:last-child) {
        margin-bottom: 22px;
    }

    .bdsm-equipment-catalog > .public-article-content__figure:nth-child(n + 3) {
        border-right: 1px solid #454545;
        border-bottom: 0;
        border-radius: 9px 9px 0 0;
    }

    .bdsm-equipment-catalog > .public-article-content__figure:nth-child(n + 3) .public-article-content__image {
        min-height: 0;
        aspect-ratio: 3 / 2;
    }

    .bdsm-equipment-catalog > .public-article-content__block--paragraph:nth-child(n + 4):nth-child(even):not(:last-child) {
        border-left-color: #454545;
        border-radius: 0 0 9px 9px;
    }
}

@media (max-width: 420px) {
    .bdsm-language-modal .public-modal__header {
        padding: 24px 22px 8px;
    }

    .bdsm-language-modal .public-modal__body {
        padding: 6px 22px 24px;
    }

    .bdsm-language-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bdsm-nav,
    .bdsm-hero,
    .bdsm-content,
    .bdsm-quote,
    .webform-public-page {
        width: min(100% - 24px, 1200px);
    }

    .bdsm-event-grid,
    .bdsm-service-grid,
    .bdsm-amenities,
    .bdsm-location-services,
    .webform-public-document--modal .webform-public__page {
        grid-template-columns: 1fr;
    }

    .bdsm-location-service[data-location-camera-service],
    .webform-public-document--modal .webform-public__page-title,
    .webform-public-document--modal .webform-public__page-description {
        grid-column: 1;
    }

    .bdsm-box {
        padding: 22px;
    }

    .public-modal {
        --public-modal-dialog-padding: 22px;
        --public-modal-dialog-max-height: calc(100dvh - 24px);
    }

    .bdsm-form-modal__dialog,
    .bdsm-form-modal .public-modal__dialog {
        width: calc(100vw - 24px) !important;
        max-width: none !important;
        padding: 0;
    }

    .bdsm-kit-rail {
        grid-auto-columns: 82%;
    }

    .bdsm-map__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .bdsm-map__canvas {
        aspect-ratio: 4 / 3;
        min-height: 230px;
    }

    .bdsm-page-hero,
    .bdsm-article {
        width: min(100% - 24px, 980px);
    }

    .bdsm-article__body {
        padding: 20px;
    }

}
