:root {
    --vs-bg: #101012;
    --vs-bg-soft: #17171b;
    --vs-panel: #1f1f24;
    --vs-panel-2: #28282f;
    --vs-text: #f6f4f0;
    --vs-muted: #aaa69f;
    --vs-line: #34343c;
    --vs-accent: #9fb6c9;
    --vs-accent-2: #dfe6ea;
    --vs-ink: #18181c;
    --vs-paper: #f6f4f0;
    --vs-paper-2: #ebe6dc;
    --vs-max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.vs-page {
    margin: 0;
    background: var(--vs-bg);
    color: var(--vs-text);
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.vs-page img {
    display: block;
    max-width: 100%;
}

body.vs-page a {
    color: inherit;
    text-decoration: none;
}

body.vs-page button,
body.vs-page input,
body.vs-page select {
    font: inherit;
}

.vs-wrap {
    width: min(var(--vs-max), calc(100% - 40px));
    margin: 0 auto;
}

.vs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #0a0a0a;
    border-bottom: 1px solid transparent;
}

.vs-header[data-scrolled] {
    border-color: rgba(255, 255, 255, .08);
}

.vs-nav {
    position: relative;
    min-height: 75px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
}

.vs-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.vs-brand img {
    height: 54px;
    width: auto;
}

.vs-nav-panel {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
    pointer-events: none;
}

.vs-menu {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: nowrap;
    pointer-events: auto;
}

.vs-menu-link,
.vs-menu button.vs-menu-link {
    color: #f2f2f2;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.vs-menu-link:hover,
.vs-menu button.vs-menu-link:hover {
    color: #fff;
}

.vs-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.vs-chevron {
    display: block;
    opacity: .85;
    transform: translateY(1px);
}

.vs-menu-item {
    position: relative;
    line-height: 50px;
}

.vs-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 190px;
    padding: 10px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    z-index: 60;
}

.vs-menu-item:hover .vs-dropdown,
.vs-menu-item:focus-within .vs-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.vs-dropdown a {
    display: block;
    padding: 9px 12px;
    white-space: nowrap;
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.vs-dropdown a:hover {
    color: #fff;
    opacity: 0.8;
}

.vs-nav-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
    pointer-events: auto;
}

.vs-nav-cta,
.vs-btn,
.vs-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0;
}

.vs-nav-cta {
    background: #81a4b9;
    color: #0b1016 !important;
    padding: 15px 26px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 5px;
    letter-spacing: 0.01em;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background .35s, box-shadow .35s, border-color .35s;
}

.vs-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -12px color-mix(in oklch, #81a4b9 60%, transparent);
}

.vs-nav-login {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.vs-nav-login:hover {
    color: #d7d7d7;
}

.vs-burger {
    display: none;
    position: relative;
    z-index: 3;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    background: transparent;
    flex-shrink: 0;
}

.vs-burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--vs-text);
    transition: .2s ease;
}

.vs-header[data-nav-open] .vs-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.vs-header[data-nav-open] .vs-burger span:nth-child(2) {
    opacity: 0;
}

.vs-header[data-nav-open] .vs-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.vs-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 90px;
}

.vs-hero::before {
    content: "";
    position: absolute;
    top: -260px;
    left: 50%;
    width: 900px;
    height: 620px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(159, 182, 201, .14), transparent 68%);
    filter: blur(36px);
    pointer-events: none;
}

.vs-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 58px;
    align-items: center;
}

.vs-hero-copy {
    max-width: 560px;
    padding: 8px 24px 8px 0;
}

.vs-kicker,
.vs-eyebrow {
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #56544f;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.vs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, .02);
}

.vs-live-dot {
    width: 7px;
    height: 7px;
    background: #ff2e2e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 46, 46, .5);
    animation: vsPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes vsPulse {
    70% {
        box-shadow: 0 0 0 9px transparent;
    }
}

.vs-hero h1,
.vs-section-head h2,
.vs-book-copy h2 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 0;
}

.vs-hero h1 {
    font-size: clamp(42px, 5.2vw, 68px);
    max-width: none;
    color: #f1efe9;
    line-height: 1.05;
}

.vs-hero-accent {
    color: #81a4b9;
}

.vs-hero p {
    color: #a4a29b;
    font-size: 17px;
    line-height: 1.7;
    max-width: 32rem;
    margin: 28px 0 0;
    padding-right: 12px;
}

.vs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.vs-btn {
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.vs-btn-primary {
    background: #81a4b9;
    color: #0b1016 !important;
    border-color: #89a5b9;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 5px;
    letter-spacing: 0.01em;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background .35s, box-shadow .35s, border-color .35s;
}

.vs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -12px color-mix(in oklch, #81a4b9 60%, transparent);
}

.vs-btn-outline {
    background: transparent;
    color: #f1efe9 !important;
    border-color: rgba(255, 255, 255, .28);
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background .35s, box-shadow .35s, border-color .35s;
}

.vs-btn-outline:hover {
    background: rgba(255, 255, 255, 0.04);
}

.vs-btn-light {
    background: var(--vs-text);
    color: var(--vs-bg);
    border-color: var(--vs-text);
}

.vs-btn-ghost {
    color: var(--vs-text);
    border-color: var(--vs-line);
}

.vs-hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.vs-hero-stars {
    display: flex;
    gap: 4px;
}

.vs-hero-stars span {
    width: 14px;
    height: 14px;
    background: #a3bac3;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.vs-hero-rating-copy strong {
    display: block;
    color: #f1efe9;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.vs-hero-rating-copy span {
    display: block;
    margin-top: 4px;
    color: #a4a29b;
    font-size: 13px;
    line-height: 1.3;
}

.vs-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-top: 34px;
    padding-top: 4px;
}

.vs-hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: transparent;
    color: #a4a29b;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vs-hero-tags span:hover {
    border-color: #81a4b9;
    color: #f1efe9;
}

.vs-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: var(--vs-muted);
}

.vs-hero-stats b {
    display: block;
    color: var(--vs-text);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 20px;
}

.vs-live-card {
    /* background: #1a1a2e; */
    /* border: 1px solid rgba(255, 255, 255, .08); */
    /* border-radius: 16px; */
    padding: 18px;
    /* box-shadow: 0 40px 90px -42px rgba(0, 0, 0, .9); */
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #1c1c21;
    border: 1px solid #2c2c32;
    border-radius: 5px;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
}

.vs-live-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    font-size: 13px;
    color: var(--vs-muted);
}

.vs-live-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #ff4d4d;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 11px;
}

.vs-live-card__time {
    color: #a4a29b;
    font-weight: 400;
}

.vs-live-card__title {
    font-weight: 600;
    color: #a4a29b;
}

.vs-live-card__video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, .02) 8px,
        rgba(255, 255, 255, .02) 16px
    ), #12121e;
}

.vs-live-card__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vs-live-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-live-card__placeholder span {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
}

.vs-live-card__overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
}

.vs-live-card__stylist {
    padding: 6px 12px;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.vs-live-card__you {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .7);
}

.vs-live-card__products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.vs-live-card__product-item {
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    /* border: 1px solid rgba(0, 200, 180, .4); */
    overflow: hidden;
    background: #12121e;
    outline: 1px solid #81a4b9;
    outline-offset: 1px;
}

.vs-live-card__product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.vs-live-card__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0 4px;
}

.vs-live-card__ctrl {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.vs-live-card__ctrl:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .3);
}

.vs-live-card__ctrl--end {
    background: #e53e3e;
    border-color: #e53e3e;
    color: #fff;
}

.vs-live-card__ctrl--end:hover {
    background: #c53030;
    border-color: #c53030;
}


.vs-trust-strip {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.vs-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.vs-trust-strip__item {
    display: flex;
    gap: 16px;
    padding: 34px 26px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.vs-trust-strip__item:first-child {
    padding-left: 0;
}

.vs-trust-strip__item:last-child {
    padding-right: 0;
    border-right: 0;
}

.vs-trust-strip__icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #f1efe9;
}

.vs-trust-strip__icon svg {
    width: 28px;
    height: 28px;
    color: #81a4b9;
}

.vs-trust-strip__copy strong {
    display: block;
    color: #f1efe9;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.vs-trust-strip__copy span {
    display: block;
    margin-top: 5px;
    color: #a4a29b;
    font-size: 13px;
    line-height: 1.45;
}

.vs-section,
.vs-gallery,
.vs-faq {
    padding: 50px 0;
}

.vs-experience .vs-section-head {
    max-width: 100%;
    margin-bottom: 42px;
}

.vs-section-head {
    max-width: 760px;
    margin-bottom: 38px;
}

.vs-section-head h2,
.vs-book-copy h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin-top: 12px;
    color: #f1efe9;
}

.vs-section-head p,
.vs-book-copy p {
    color: #a4a29b;
    font-size: 18px;
    margin-top: 12px;
}

.vs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vs-steps article {
    min-height: 220px;
    background: #1c1c21;
    border: 1px solid #1c1c21;
    border-radius: 8px;
    padding: 28px;
}

.vs-step-label {
    display: block;
    color: #a3bac3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vs-step-label::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 12px;
    background: rgba(163, 186, 195, .55);
}

.vs-steps h3 {
    margin: 18px 0 10px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f1efe9;
}

.vs-steps p {
    margin: 0;
    color: #a4a29b;
    font-size: 15px;
}

.vs-offer {
    margin-top: 48px;
}

body.vs-page .vs-offer-desktop,
body.vs-page .vs-offer-mobile {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
}

body.vs-page .vs-offer-desktop {
    display: block;
}

body.vs-page .vs-offer-mobile {
    display: none;
}

.vs-booking {
    background: #16161a;
    padding: 50px 0;
}

.vs-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 56px;
    align-items: start;
}

.vs-form {
    background: #fff;
    color: #141414;
    border-radius: 8px;
    padding: 34px 34px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.vs-form-head {
    margin-bottom: 26px;
}

.vs-form-kicker {
    display: block;
    color: #8a8a8a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vs-form-head h2 {
    margin: 6px 0 0;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    color: #111;
}

.vs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vs-field {
    margin-bottom: 15px;
}

.vs-field label {
    display: block;
    margin-bottom: 7px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 11px;
    font-weight: 800;
}

.vs-field label span {
    color: #c42a2a;
}

.vs-field-spacer {
    display: block;
    height: 18px;
}

.vs-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vs-field input,
.vs-field select {
    width: 100%;
    border: 1px solid #ddd8cf;
    background: #f8f8f5;
    color: #141414;
    border-radius: 5px;
    padding: 12px 13px;
    min-height: 47px;
}

.vs-field input::placeholder {
    color: #9a958d;
}

.vs-phone-group {
    display: flex;
    align-items: stretch;
    border: 1px solid #ddd8cf;
    border-radius: 5px;
    background: #f8f8f5;
    overflow: hidden;
    min-height: 47px;
}

.vs-dial-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 0 12px;
    border-right: 1px solid #ddd8cf;
    background: #f0f0ec;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.vs-phone-group input {
    border: 0;
    background: transparent;
    min-height: 45px;
    border-radius: 0;
}

.vs-captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 47px;
    padding: 0 12px 0 16px;
    border-radius: 5px;
    border: 1px solid #ddd8cf;
    background: #f0f0ec;
}

.vs-captcha-code {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .28em;
    color: #2f2f2f;
}

.vs-captcha-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #666;
    cursor: pointer;
}

.vs-captcha-refresh:hover {
    color: #111;
    background: rgba(0, 0, 0, .05);
}

.vs-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-size: 14px !important;
    margin-top: 4px;
    background: #81a4b9;
    color: #0b1016;
    padding: 15px 26px;
    border-radius: 5px;
    font-weight: 600 !important;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background .35s, box-shadow .35s, border-color .35s;
}

.vs-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -12px color-mix(in oklch, #81a4b9 60%, transparent);
}

.vs-error {
    color: #c42a2a;
    font-weight: 700;
    margin-top: 10px;
}

.vs-form-note {
    color: #8a857c;
    font-size: 13px;
    margin: 14px 0 0;
    text-align: center;
}

.vs-book-aside h2 {
    margin: 12px 0 0;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.08;
    color: #f1efe9;
}

.vs-contact-list {
    margin-top: 0;
}

.vs-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
    color: inherit;
    transition: color .2s ease;
}

.vs-contact-item:hover .vs-contact-copy strong {
    color: #a3bac3;
}

.vs-contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.vs-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .02);
    color: #fff;
    flex-shrink: 0;
}

.vs-contact-copy small {
    display: block;
    color: #a4a29b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.vs-contact-copy strong {
    display: block;
    color: #f1efe9;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .2s ease;
    word-break: break-all;
}

.vs-book-meta {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: start;
    gap: 12px 28px;
    margin-top: 28px;
    padding-top: 0;
}

.vs-book-meta small {
    display: block;
    color: #a4a29b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.vs-book-meta strong {
    display: block;
    color: #f1efe9;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.vs-testimonials,
.vs-collections,
.vs-gallery {
    --vs-gutter: max(20px, calc((100vw - min(var(--vs-max), calc(100vw - 40px))) / 2));
    --vs-card-gap: 18px;
    --vs-cards-visible: 3.18;
    overflow: hidden;
}

.vs-testimonials {
    background: #101012;
    padding: 50px 0;
}

.vs-carousel-block {
    width: 100%;
}

.vs-carousel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 36px;
}

.vs-carousel-head h2 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 12px 0 0;
    color: #f1efe9;
}

.vs-gallery .vs-carousel-head-copy {
    max-width: 720px;
}

.vs-gallery .vs-carousel-head-copy p {
    color: #a4a29b;
    font-size: 18px;
    line-height: 1.6;
    margin: 14px 0 0;
    max-width: 640px;
}

.vs-gallery-actions {
    margin-top: 30px;
}

.vs-gallery-cta {
    padding: 12px 24px;
    font-size: 15px;
}

.vs-carousel-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.vs-carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #444;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, background .2s ease;
}

.vs-carousel-btn:hover:not(:disabled) {
    border-color: #888;
    background: rgba(255, 255, 255, .04);
}

.vs-carousel-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.vs-carousel-bleed {
    /* margin-left: var(--vs-gutter);
    width: calc(100vw - var(--vs-gutter));
    max-width: none; */
    width: min(var(--vs-max), calc(100% - 40px));
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
}

.vs-carousel-bleed::-webkit-scrollbar {
    display: none;
}

.vs-carousel-track {
    display: flex;
    gap: var(--vs-card-gap);
    width: max-content;
    padding-right: var(--vs-gutter);
}

.vs-testimonial-card {
    flex: 0 0 calc((100vw - var(--vs-gutter) - (var(--vs-card-gap) * 2)) / var(--vs-cards-visible));
    width: calc((100vw - var(--vs-gutter) - (var(--vs-card-gap) * 2)) / var(--vs-cards-visible));
    max-width: 350px;
    min-width: 250px;
    scroll-snap-align: start;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.vs-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.vs-testimonial-stars span {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #3ecf8e;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.vs-testimonial-card h3 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1efe9;
    margin: 0 0 12px;
    line-height: 1.3;
}

.vs-testimonial-card p {
    color: #a4a29b;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.vs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.vs-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-testimonial-meta strong {
    display: block;
    color: #f1efe9;
    font-size: 14px;
    font-weight: 700;
}

.vs-testimonial-meta small {
    display: block;
    color: #a4a29b;
    font-size: 12px;
    margin-top: 2px;
}

.vs-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vs-collections .vs-collection-card {
    flex: 0 0 calc((100vw - var(--vs-gutter) - (var(--vs-card-gap) * 2)) / var(--vs-cards-visible));
    width: calc((100vw - var(--vs-gutter) - (var(--vs-card-gap) * 2)) / var(--vs-cards-visible));
    max-width: 320px;
    min-width: 240px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.vs-collection-card {
    position: relative;
    display: block;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.vs-collection-card img,
.cat__media1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.vs-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 10, 0.82) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.vs-collection-card__copy {
    display: block;
    padding: 16px 18px 18px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 2;
}

.vs-collection-card__copy strong {
    display: block;
    color: #fff;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.vs-collection-card__copy em {
    position: relative;
    display: inline-block;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9fbcce;
    z-index: 1;
}

.vs-trustpilot-card {
    flex: 0 0 min(var(--vs-max), calc(100vw - 40px));
    width: min(var(--vs-max), calc(100vw - 40px));
    min-width: min(100%, 280px);
    scroll-snap-align: start;
}

.vs-gallery {
    background: #101012;
    padding: 50px 0;
    --vs-card-gap: 14px;
    --vs-gallery-visible: 1.5;
    position: relative;
}

.vs-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, color-mix(in oklch, #81a4b9 16%, transparent), transparent 60%);
    pointer-events: none;
}

.vs-gallery-card {
    position: relative;
    display: block;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    height: 480px;
    width: calc((min(var(--vs-max), calc(100vw - 40px)) - var(--vs-card-gap)) / var(--vs-gallery-visible));
}

.vs-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vs-gallery-card--wide,
.vs-gallery-card--narrow {
    height: 480px;
    width: calc((min(var(--vs-max), calc(100vw - 40px)) - var(--vs-card-gap)) / var(--vs-gallery-visible));
}

.vs-gallery-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 20px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .15) 24%, rgba(0, 0, 0, .78) 100%);
}

.vs-gallery-card__overlay strong {
    display: block;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 8px;
}

.vs-gallery-card__overlay em {
    display: inline-block;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
}

.vs-faq {
    background: #16161a;
    color: #f6f4f0;
    padding: 50px 0;
}

.vs-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 56px;
    align-items: start;
}

.vs-faq-intro h2 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 12px 0 0;
    color: #f1efe9;
}

.vs-faq-intro p {
    color: #a4a29b;
    font-size: 17px;
    line-height: 1.65;
    margin: 14px 0 28px;
    max-width: 40ch;
}

.vs-faq-cta {
    padding: 15px 26px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 600;
    color: #f1efe9 !important;
    border-color: rgba(255, 255, 255, .22);
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background .35s, box-shadow .35s, border-color .35s;
}

.vs-faq-cta:hover {
    background: rgba(255, 255, 255, 0.04);
}

.vs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: none;
}

.vs-faq-list article {
    border: 0;
    background: transparent;
    overflow: hidden;
}

.vs-faq-list button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: #f1efe9;
    padding: 22px 24px;
    background: #1c1c21;
    border: 1px solid #2c2c32;
    border-radius: 5px;
    text-align: left;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif !important;
}

.vs-faq-list article[data-open] button {
    border-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #2c2c32;
    border-bottom: 0px solid #2c2c32 !important;
}

.vs-faq-list button>span:first-child {
    flex: 1;
}

.vs-faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #9fbcce;
    font-size: 0;
    line-height: 0;
}

.vs-faq-icon::before,
.vs-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.vs-faq-icon::before {
    width: 14px;
    height: 1px;
}

.vs-faq-icon::after {
    width: 1px;
    height: 14px;
    transition: opacity .2s ease, transform .2s ease;
}

.vs-faq-list article[data-open] .vs-faq-icon {
    color: #c8c8c8;
}

.vs-faq-list article[data-open] .vs-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.vs-faq-list [data-faq-a] {
    height: 0;
    overflow: hidden;
    transition: height .25s ease;
    background: #1c1c21;
    border: 0;
    border-radius: 0 0 5px 5px;
}

.vs-faq-list article[data-open] [data-faq-a] {
    border: 0;
    border: 1px solid #2c2c32;
    border-top: 0px !important;
}

.vs-faq-list [data-faq-a] p {
    color: #a4a29b;
    margin: 0;
    padding: 0px 24px 22px;
    font-size: 15px;
    line-height: 1.65;
}

.vs-prefooter {
    background: #101012;
    color: #f1efe9;
    padding: 96px 0;
}

.vs-prefooter-intro {
    max-width: 770px;
    margin: 0 0 48px;
    font-size: 24px;
    color: #f1efe9;
    font-weight: 500;
    font-family: "Space Grotesk", Arial, sans-serif;
    line-height: 1.4;
}

.vs-prefooter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 72px;
}

.vs-prefooter-grid h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #f1efe9;
}

.vs-prefooter-grid p {
    margin: 0;
    font-size: 15.5px;
    color: #a4a29b;
    line-height: 1.7;
}

.vs-footer {
    background: #101012;
    color: #9a9a9a;
    border-top: 1px solid #2c2c32;
    padding: 68px 0 34px;
}

.vs-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.vs-footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 22px;
}

.vs-footer-brand p {
    margin: 0 0 10px;
    color: #9a9a9a;
    font-size: 14px;
    line-height: 1.7;
    max-width: none;
}

.vs-footer-address {
    max-width: 360px;
}

.vs-footer-brand a {
    color: #c8c8c8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vs-footer-brand a:hover {
    color: #f6f4f0;
}

.vs-footer-col h3 {
    margin: 0 0 18px;
    color: #a4a29b;
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vs-footer-col a {
    display: block;
    color: #9a9a9a;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease;
}

.vs-footer-col a:hover {
    color: #f6f4f0;
}

.vs-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0 24px;
    color: #8d8d8d;
    font-size: 13px;
}

.vs-footer-bottom a {
    color: #9a9a9a;
    text-decoration: none;
}

.vs-footer-bottom a:hover {
    color: #f6f4f0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-reveal][data-revealed] {
    opacity: 1;
    transform: none;
}

@media (max-width: 1440px) {
    .vs-hero h1 {
        font-size: clamp(36px, 3.6vw, 52px);
    }

    .vs-section-head h2,
    .vs-book-copy h2 {
        font-size: clamp(28px, 2.8vw, 40px);
    }

    .vs-carousel-head h2,
    .vs-faq-intro h2 {
        font-size: clamp(28px, 2.8vw, 38px);
    }

    .vs-book-aside h2 {
        font-size: clamp(26px, 2.6vw, 34px);
    }
}

@media (max-width: 1200px) {
    .vs-hero h1 {
        font-size: clamp(34px, 3.4vw, 46px);
    }

    .vs-section-head h2,
    .vs-book-copy h2 {
        font-size: clamp(26px, 2.6vw, 36px);
    }

    .vs-carousel-head h2,
    .vs-faq-intro h2 {
        font-size: clamp(26px, 2.6vw, 34px);
    }

    .vs-book-aside h2 {
        font-size: clamp(24px, 2.4vw, 32px);
    }
}

@media (max-width: 1100px) {
    .vs-menu {
        gap: 18px;
    }

    .vs-nav-actions {
        gap: 14px;
    }

    .vs-nav-cta {
        padding: 12px 16px;
    }

    .vs-booking-grid {
        gap: 36px;
    }

    .vs-testimonials,
    .vs-collections {
        --vs-cards-visible: 2.35;
    }

    .vs-hero h1 {
        font-size: clamp(32px, 3.2vw, 42px);
    }

    .vs-section-head h2,
    .vs-book-copy h2,
    .vs-carousel-head h2,
    .vs-faq-intro h2 {
        font-size: clamp(24px, 2.5vw, 32px);
    }

    .vs-book-aside h2 {
        font-size: clamp(22px, 2.4vw, 30px);
    }
}

@media (max-width: 980px) {
    .vs-nav {
        min-height: 70px;
        grid-template-columns: 1fr auto;
        column-gap: 16px;
    }

    .vs-brand {
        grid-column: 1;
    }

    .vs-brand img {
        height: 46px;
    }

    .vs-burger {
        display: block;
    }

    .vs-nav-panel {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 70px;
        display: none;
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #151515;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 6px;
        pointer-events: auto;
        z-index: 55;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .vs-header[data-nav-open] .vs-nav-panel {
        display: flex;
        flex-direction: column;
    }

    .vs-menu {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .vs-menu-item {
        line-height: normal;
    }

    .vs-menu-link,
    .vs-menu button.vs-menu-link {
        display: flex;
        width: 100%;
        padding: 12px 0;
        text-align: left;
        font-size: 15px;
        white-space: normal;
    }

    .vs-menu-trigger {
        justify-content: space-between;
    }

    .vs-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        border: 0;
        padding: 0 0 0 12px;
        background: transparent;
        box-shadow: none;
    }

    .vs-menu-item:hover .vs-dropdown,
    .vs-menu-item:focus-within .vs-dropdown {
        display: block;
        transform: none;
    }

    .vs-nav-actions {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 8px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .vs-nav-cta,
    .vs-nav-login {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
        text-align: center;
    }

    .vs-nav-cta {
        margin-top: 4px;
    }

    .vs-hero {
        padding: 48px 0 56px;
    }

    .vs-hero-grid,
    .vs-booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vs-hero h1 {
        max-width: 100%;
        font-size: clamp(30px, 4.2vw, 40px);
        line-height: 1.12;
    }

    .vs-br-desktop {
        display: none;
    }

    .vs-hero-copy {
        max-width: none;
        padding: 0;
    }

    .vs-trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-trust-strip__item {
        padding: 28px 20px;
        align-items: flex-start;
    }

    .vs-trust-strip__item:nth-child(2) {
        border-right: 0;
    }

    .vs-trust-strip__item:nth-child(odd) {
        padding-left: 0;
    }

    .vs-trust-strip__item:nth-child(even) {
        padding-right: 0;
    }

    .vs-trust-strip__item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

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

    .vs-steps article {
        min-height: 0;
    }

    .vs-booking-grid {
        gap: 40px;
    }

    .vs-book-aside {
        order: 2;
    }

    .vs-form {
        order: 1;
    }

    .vs-faq-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vs-faq-intro p {
        max-width: none;
    }

    .vs-prefooter-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .vs-footer-brand {
        grid-column: 1 / -1;
    }

    .vs-testimonials,
    .vs-collections {
        --vs-gutter: 20px;
        --vs-cards-visible: 2.15;
    }

    .vs-gallery {
        --vs-gutter: 20px;
        --vs-gallery-visible: 1.5;
    }

    .vs-carousel-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px;
    }

    .vs-carousel-bleed {
        width: calc(100vw - 20px);
        margin-left: 20px;
        max-width: none;
    }

    .vs-testimonial-card {
        max-width: none;
        min-width: 280px;
    }

    .vs-collections .vs-collection-card {
        max-width: none;
        min-width: 240px;
    }

    .vs-gallery-card,
    .vs-gallery-card--wide,
    .vs-gallery-card--narrow {
        height: 420px;
        width: calc((100vw - 20px - var(--vs-card-gap)) / var(--vs-gallery-visible));
    }

    .vs-gallery-actions {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .vs-offer {
        margin-top: 28px;
    }

    body.vs-page .vs-offer-desktop {
        display: none !important;
    }

    body.vs-page .vs-offer-mobile {
        display: block !important;
    }
}

@media (max-width: 680px) {
    .vs-wrap {
        width: min(100% - 28px, var(--vs-max));
    }

    .vs-hero,
    .vs-section,
    .vs-gallery,
    .vs-faq,
    .vs-booking,
    .vs-testimonials,
    .vs-collections {
        padding: 44px 0;
    }

    .vs-hero {
        padding: 36px 0 44px;
    }

    .vs-hero-grid {
        gap: 28px;
    }

    .vs-hero p {
        font-size: 15px;
        margin-top: 20px;
        padding-right: 0;
    }

    .vs-actions {
        margin-top: 28px;
    }

    .vs-hero-rating {
        margin-top: 28px;
    }

    .vs-hero-rating-copy strong {
        font-size: 22px;
    }

    .vs-hero-tags {
        gap: 8px;
        margin-top: 34px;
    }

    .vs-hero-tags span {
        white-space: normal;
        text-align: left;
        justify-content: flex-start;
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: .08em;
    }

    .vs-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vs-actions .vs-btn {
        width: 100%;
    }

    .vs-live-card {
        padding: 14px;
        border-radius: 12px;
    }

    .vs-live-card__products {
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-live-card__ctrl {
        width: 38px;
        height: 38px;
    }

    .vs-live-card__controls {
        gap: 12px;
    }

    .vs-trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .vs-trust-strip__item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 22px 0;
    }

    .vs-trust-strip__item:last-child {
        border-bottom: 0;
    }

    .vs-section-head h2,
    .vs-carousel-head h2,
    .vs-faq-intro h2 {
        font-size: clamp(24px, 5.5vw, 32px);
    }

    .vs-section-head p,
    .vs-gallery .vs-carousel-head-copy p {
        font-size: 15px;
    }

    .vs-steps,
    .vs-form-row,
    .vs-collection-grid,
    .vs-gallery-grid,
    .vs-footer-grid {
        grid-template-columns: 1fr;
    }

    .vs-steps {
        gap: 12px;
    }

    .vs-steps article {
        padding: 22px;
    }

    .vs-steps h3 {
        font-size: 18px;
    }

    .vs-form {
        padding: 20px 18px 22px;
    }

    .vs-form-head h2 {
        font-size: 24px;
    }

    .vs-field-spacer {
        display: none;
    }

    .vs-captcha-row .vs-field:last-child label.vs-sr-only {
        position: static;
        width: auto;
        height: auto;
        margin: 0 0 7px;
        overflow: visible;
        clip: auto;
        white-space: normal;
        display: block;
        color: #666;
        text-transform: uppercase;
        letter-spacing: .06em;
        font-size: 11px;
        font-weight: 800;
    }

    .vs-captcha-code {
        font-size: 18px;
        letter-spacing: .18em;
    }

    .vs-book-meta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .vs-book-aside h2 {
        max-width: none;
        font-size: clamp(26px, 8vw, 34px);
        padding-bottom: 20px;
    }

    .vs-contact-item {
        padding: 18px 0;
        gap: 14px;
    }

    .vs-contact-copy strong {
        font-size: 15px;
    }

    .vs-prefooter {
        padding: 48px 0;
    }

    .vs-prefooter-intro {
        max-width: none;
        margin-bottom: 28px;
        font-size: 18px;
    }

    .vs-footer {
        padding: 48px 0 28px;
    }

    .vs-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vs-footer-brand {
        grid-column: auto;
    }

    .vs-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vs-testimonials,
    .vs-collections {
        --vs-gutter: 16px;
        --vs-cards-visible: 1.12;
        --vs-card-gap: 12px;
    }

    .vs-gallery {
        --vs-gutter: 16px;
        --vs-gallery-visible: 1.35;
        --vs-card-gap: 12px;
    }

    .vs-carousel-bleed {
        margin-left: 14px;
        width: calc(100vw - 14px);
    }

    .vs-carousel-track {
        padding-right: 14px;
    }

    .vs-testimonial-card {
        min-width: 260px;
        max-width: none;
        padding: 22px;
        min-height: 240px;
    }

    .vs-collections .vs-collection-card {
        min-width: 220px;
        max-width: none;
        width: calc((100vw - 14px - var(--vs-card-gap)) / var(--vs-cards-visible));
        flex-basis: calc((100vw - 14px - var(--vs-card-gap)) / var(--vs-cards-visible));
    }

    .vs-collection-card__copy {
        padding: 14px 14px 16px;
    }

    .vs-collection-card__copy strong {
        font-size: 18px;
    }

    .vs-gallery-card,
    .vs-gallery-card--wide,
    .vs-gallery-card--narrow {
        height: 340px;
        width: calc((100vw - 14px - var(--vs-card-gap)) / var(--vs-gallery-visible));
    }

    .vs-gallery-card__overlay {
        padding: 18px 16px 16px;
    }

    .vs-gallery-card__overlay strong {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .vs-gallery-actions {
        margin-top: 22px;
    }

    .vs-gallery-cta {
        width: 100%;
    }

    .vs-faq-list button {
        padding: 18px 16px;
        font-size: 15px !important;
    }

    .vs-faq-list [data-faq-a] p {
        padding: 4px 16px 18px;
        font-size: 14px;
    }

    .vs-faq-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .vs-brand img {
        height: 40px;
    }

    .vs-hero h1 {
        font-size: clamp(30px, 9vw, 36px);
    }

    .vs-book-meta {
        gap: 14px;
    }

    .vs-gallery-card,
    .vs-gallery-card--wide,
    .vs-gallery-card--narrow { height: 300px; }
}

/* —— Auth modals (login / forgot / reset) — dark theme —— */
#login_model_show.modal,
#myModalForgotPassword.modal {
    --vs-auth-bg: #1f1f24;
    --vs-auth-bg-2: #28282f;
    --vs-auth-text: #f6f4f0;
    --vs-auth-muted: #aaa69f;
    --vs-auth-line: #34343c;
    --vs-auth-accent: #81a4b9;
    --vs-auth-accent-hover: #9fb6c9;
    --vs-auth-ink: #0b1016;
}

#login_model_show .modal-dialog,
#myModalForgotPassword .modal-dialog {
    width: min(440px, calc(100% - 28px));
    margin: 1.75rem auto;
}

#login_model_show .modal-content,
#myModalForgotPassword .modal-content {
    background: var(--vs-auth-bg);
    border: 1px solid var(--vs-auth-line);
    border-radius: 12px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .65);
    overflow: hidden;
    color: var(--vs-auth-text);
}

#login_model_show .modal-body,
#myModalForgotPassword .modal-body {
    padding: 40px 34px 36px;
    background: var(--vs-auth-bg);
    position: relative;
}

#login_model_show .btn-close,
#myModalForgotPassword .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    opacity: .65;
    background-size: .7em;
    filter: invert(1) grayscale(100%);
}

#login_model_show .btn-close:hover,
#myModalForgotPassword .btn-close:hover {
    opacity: 1;
}

#login_model_show .login-full-page,
#myModalForgotPassword .login-full-page {
    width: 100%;
}

#login_model_show .sign_acnt_txt,
#myModalForgotPassword .sign_acnt_txt {
    font-family: "Space Grotesk", Manrope, sans-serif;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -.02em;
    text-align: center;
    margin: 0 0 28px;
    color: var(--vs-auth-text);
}

#login_model_show .form-subtitle,
#myModalForgotPassword .form-subtitle {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--vs-auth-muted);
    text-align: center;
    margin: -12px 0 22px;
}

#login_model_show .login-form,
#myModalForgotPassword .login-form {
    width: 100%;
}

#login_model_show .login-form form,
#myModalForgotPassword .login-form form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#login_model_show .login-email-container,
#myModalForgotPassword .login-email-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

#login_model_show .login-input-txt,
#myModalForgotPassword .login-input-txt {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--vs-auth-muted);
}

#login_model_show .login-user-input,
#myModalForgotPassword .login-user-input {
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    border: 1px solid var(--vs-auth-line);
    background: var(--vs-auth-bg-2);
    color: var(--vs-auth-text);
    padding: 13px 16px;
    font-family: Manrope, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

#login_model_show .login-user-input::placeholder,
#myModalForgotPassword .login-user-input::placeholder {
    color: #6f6c66;
}

#login_model_show .login-user-input:focus,
#myModalForgotPassword .login-user-input:focus {
    border-color: var(--vs-auth-accent);
    background: #2e2e36;
    box-shadow: 0 0 0 3px rgba(129, 164, 185, .2);
    outline: none;
}

#login_model_show .login-button-container,
#myModalForgotPassword .login-button-container {
    text-align: center;
    margin-top: 22px;
}

#login_model_show .login-button,
#myModalForgotPassword .login-button {
    width: 100%;
    min-height: 52px;
    background: var(--vs-auth-accent);
    color: var(--vs-auth-ink);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

#login_model_show .login-button:hover,
#myModalForgotPassword .login-button:hover {
    background: var(--vs-auth-accent-hover);
    box-shadow: 0 14px 40px -12px color-mix(in oklch, #81a4b9 60%, transparent);
}

#login_model_show .login-button:disabled,
#myModalForgotPassword .login-button:disabled {
    opacity: .55;
    cursor: not-allowed;
    box-shadow: none;
}

#login_model_show .login-tagline,
#myModalForgotPassword .login-tagline {
    text-align: center;
    margin-top: 4px;
    font-size: 14px;
}

#login_model_show .reset-button,
#myModalForgotPassword .reset-button {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--vs-auth-accent);
    text-decoration: none;
    cursor: pointer;
}

#login_model_show .reset-button:hover,
#myModalForgotPassword .reset-button:hover {
    color: var(--vs-auth-accent-hover);
    text-decoration: underline;
}

#login_model_show #email_error,
#login_model_show #pwd_error,
#myModalForgotPassword #forgot_email_error,
#myModalForgotPassword #reset_password_error {
    display: none;
    color: #ff7b7b;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    margin-top: 2px;
    line-height: 1.35;
}

#login_model_show #email_error.show,
#login_model_show #pwd_error.show,
#myModalForgotPassword #forgot_email_error.show,
#myModalForgotPassword #reset_password_error.show {
    display: block;
}

#myModalForgotPassword #forgot_email_error.show.success,
#myModalForgotPassword #reset_password_error.show.success {
    color: #6dca8a;
}

#login_model_show .alert,
#myModalForgotPassword .alert {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    border-radius: 8px;
    background: #2a1c1c;
    border: 1px solid #5a2f2f;
    color: #ffb4b4;
}

@media (max-width: 576px) {
    #login_model_show .modal-body,
    #myModalForgotPassword .modal-body {
        padding: 32px 22px 28px;
    }

    #login_model_show .sign_acnt_txt,
    #myModalForgotPassword .sign_acnt_txt {
        font-size: 24px;
        margin-bottom: 22px;
    }
}

