:root {
    --bg: #050506;
    --bg-soft: #0d0d10;
    --bg-elevated: #151518;
    --text: #f7f3ec;
    --text-muted: #aaa39a;
    --accent: #d8b46a;
    --accent-strong: #f0cf85;
    --border: rgba(255, 255, 255, 0.12);
    --container: 1440px;
    --space: clamp(18px, 2.4vw, 34px);
    --radius: 8px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 6, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.header-shell {
    width: min(calc(100% - 32px), 1540px);
    min-height: 86px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-shell {
    min-height: 68px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 700;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 180, 106, 0.52);
    color: var(--accent-strong);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);
}

.desktop-nav a {
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-action,
.menu-button,
.slider-button,
.favorite-button {
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.icon-action {
    width: 42px;
    height: 42px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.icon-action:hover,
.menu-button:hover,
.slider-button:hover,
.favorite-button:hover {
    border-color: rgba(216, 180, 106, 0.6);
    background: rgba(216, 180, 106, 0.1);
}

.account-link {
    padding: 11px 17px;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.account-link:hover {
    color: var(--text);
    border-color: var(--border);
}

.menu-button {
    width: 46px;
    height: 42px;
    gap: 6px;
}

.menu-button span {
    width: 18px;
    height: 1px;
    background: var(--text);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    background: rgba(5, 5, 6, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.overlay-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
}

.overlay-brand {
    position: absolute;
    top: 30px;
    left: 28px;
}

.overlay-nav {
    display: grid;
    gap: 4px;
}

.overlay-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 9vw, 4.2rem);
}

.hero-section {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: end;
    padding: 150px 0 88px;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.05);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.42) 54%, rgba(5, 5, 6, 0.72)),
        linear-gradient(0deg, var(--bg), transparent 32%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-strong);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.why-shell h2,
.cta-shell h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-content h1 {
    max-width: 900px;
    font-size: clamp(3.2rem, 7vw, 7.8rem);
}

.hero-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #12100b;
    font-weight: 800;
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
}

.quick-search-section {
    position: relative;
    z-index: 4;
    margin-top: -42px;
}

.dev-note {
    width: fit-content;
    margin: 0 0 12px;
    padding: 8px 12px;
    border: 1px solid rgba(216, 180, 106, 0.34);
    background: rgba(216, 180, 106, 0.08);
    color: var(--text-muted);
    font-size: 0.82rem;
}

.quick-search {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
    gap: 1px;
    border: 1px solid var(--border);
    background: var(--border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.quick-search label {
    min-width: 0;
    display: grid;
    gap: 8px;
    padding: 16px 16px 14px;
    background: rgba(13, 13, 16, 0.98);
}

.quick-search span {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quick-search select,
.quick-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.quick-search input::placeholder {
    color: rgba(170, 163, 154, 0.7);
}

.quick-search option {
    color: #111;
}

.button-search {
    min-width: 124px;
    background: var(--text);
    color: #090909;
    border: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-block {
    padding: clamp(70px, 8vw, 126px) 0;
}

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

.section-heading h2,
.why-shell h2,
.cta-shell h2 {
    font-size: clamp(2.35rem, 4.8vw, 5.4rem);
}

.section-heading a {
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

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

.profile-card {
    position: relative;
    min-width: 0;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    overflow: hidden;
}

.profile-image {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.045);
}

.availability {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 9px;
    background: rgba(5, 5, 6, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text);
    font-size: 0.72rem;
    backdrop-filter: blur(12px);
}

.availability.available::before,
.availability.limited::before,
.availability.unavailable::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 999px;
    background: #62d37b;
}

.availability.limited::before {
    background: #d8b46a;
}

.availability.unavailable::before {
    background: #9a9a9a;
}

.profile-card-body {
    position: relative;
    padding: 16px;
}

.favorite-button {
    position: absolute;
    top: -23px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.favorite-button.is-saved {
    background: var(--accent);
    border-color: var(--accent);
    color: #100f0b;
}

.profile-card h3 {
    margin: 0 48px 4px 0;
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    font-weight: 500;
}

.profile-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.profile-meta span {
    padding: 6px 8px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.72rem;
}

.profile-meta .verified {
    border-color: rgba(216, 180, 106, 0.45);
    color: var(--accent-strong);
}

.new-profiles {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.slider-actions {
    display: flex;
    gap: 8px;
}

.slider-button {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
}

.profile-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 24%);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.profile-slider::-webkit-scrollbar {
    display: none;
}

.profile-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.slider-card {
    scroll-snap-align: start;
}

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

.location-card {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.location-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 500ms ease, opacity 220ms ease;
}

.location-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 6, 0.86), transparent 62%);
}

.location-card:hover img {
    opacity: 0.9;
    transform: scale(1.045);
}

.location-card span {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.why-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #080809;
}

.why-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(30px, 6vw, 88px);
    align-items: start;
}

.why-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.why-grid article {
    padding: 26px;
    background: var(--bg-soft);
}

.why-grid span {
    color: var(--accent-strong);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.why-grid h3 {
    margin: 12px 0 8px;
    font-size: 1.1rem;
}

.why-grid p {
    margin: 0;
    color: var(--text-muted);
}

.cta-section {
    padding: clamp(70px, 10vw, 142px) 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.58)),
        url("https://images.unsplash.com/photo-1509631179647-0177331693ae?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.cta-shell {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.cta-shell .button {
    margin-top: 30px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.cta-actions .button {
    margin-top: 0;
}

.enquiry-section {
    background: #070708;
    border-top: 1px solid var(--border);
}

.enquiry-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: start;
}

.enquiry-copy h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 1;
}

.enquiry-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--text-muted);
}

.enquiry-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);
}

.enquiry-form label {
    display: grid;
    gap: 8px;
}

.enquiry-form span {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #0d0d10;
    color: var(--text);
    outline: 0;
    padding: 13px 14px;
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: rgba(216, 180, 106, 0.58);
}

.enquiry-form button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-status.is-success {
    color: #8ee0a0;
}

.form-status.is-error {
    color: #ff9f9f;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #030304;
}

.footer-shell {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(140px, 1fr));
    gap: 34px;
    padding: 62px 0;
}

.footer-brand p {
    max-width: 390px;
    margin: 18px 0 0;
    color: var(--text-muted);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--text-muted);
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 20px 0 28px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.placeholder-page {
    min-height: 72vh;
    display: grid;
    align-items: center;
    padding: 150px 0 80px;
    background:
        linear-gradient(180deg, rgba(216, 180, 106, 0.08), transparent 260px),
        var(--bg);
}

.placeholder-page h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 1;
}

.placeholder-page p:not(.eyebrow) {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Client current-site inspired section */
.client-theme {
    --bg: #210101;
    --bg-soft: #3b0505;
    --bg-elevated: #530606;
    --text: #ffef9c;
    --text-muted: #f3d77d;
    --accent: #ffed7a;
    --accent-strong: #ffe98a;
    --border: rgba(255, 232, 126, 0.22);
    --container: 1728px;
    background:
        radial-gradient(circle at 50% 0, rgba(140, 0, 0, 0.48), transparent 380px),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 14px),
        #310202;
    color: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
}

.client-theme .site-header {
    position: static;
    background:
        radial-gradient(circle at 50% -70%, rgba(130, 0, 0, 0.85), transparent 420px),
        #360303;
    border-bottom: 0;
    backdrop-filter: none;
}

.client-theme .top-contact-strip {
    padding: 42px 0 24px;
}

.client-theme .top-strip-shell {
    min-height: 0;
    grid-template-columns: 300px 1fr auto 260px 120px;
    gap: 24px;
    align-items: center;
}

.client-theme .site-logo img,
.client-theme .brand img,
.client-theme .overlay-brand img {
    width: 260px;
    height: auto;
}

.client-theme .brand {
    display: none;
}

.client-theme .agency-title {
    text-align: center;
    text-transform: uppercase;
}

.client-theme .agency-title strong {
    display: block;
    color: var(--accent);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0.28em;
    font-weight: 900;
}

.client-theme .agency-title span {
    display: block;
    margin-top: 6px;
    color: var(--accent);
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
}

.client-theme .contact-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
    min-width: 620px;
}

.client-theme .contact-cluster a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 10px 22px;
    border: 1px solid #8d1616;
    border-radius: 7px;
    background: rgba(60, 0, 0, 0.82);
    color: var(--accent);
    font-size: 1.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.client-theme .contact-cluster span {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 800;
    font-style: italic;
}

.client-theme .diva-link {
    justify-self: center;
    padding: 9px 18px;
    border-radius: 5px;
    background: var(--accent);
    color: #8d0101;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 1000;
    text-transform: uppercase;
}

.client-theme .login-link {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.client-theme .nav-shell {
    width: min(calc(100% - 84px), var(--container));
    min-height: 78px;
    display: flex;
    justify-content: center;
    padding: 0 48px;
    border-radius: 5px;
    background: #980202;
}

.client-theme .desktop-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
}

.client-theme .desktop-nav a {
    padding: 16px 24px;
    color: var(--accent);
    border-radius: 6px;
    font-size: clamp(1rem, 1.3vw, 1.55rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.client-theme .desktop-nav a:first-child,
.client-theme .desktop-nav a:hover {
    background: #5a0505;
    color: #fff0a6;
}

.client-theme .header-actions {
    display: none;
}

.client-intro-section {
    padding: 0 0 52px;
    background:
        radial-gradient(circle at 55% 20%, rgba(119, 0, 0, 0.24), transparent 500px),
        #310202;
}

.client-intro-shell {
    padding-top: 0;
}

.client-theme .dev-note {
    color: var(--accent);
    border-color: rgba(255, 237, 122, 0.32);
    background: rgba(255, 237, 122, 0.06);
}

.popular-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: end;
    padding-top: 6px;
    border-bottom: 1px solid rgba(255, 237, 122, 0.16);
}

.popular-head h1,
.client-theme .section-heading h2 {
    margin: 0;
    color: #190000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 1000;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 237, 122, 0.12);
}

.selector-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px;
    padding-bottom: 14px;
}

.selector-row select,
.client-search input {
    min-height: 62px;
    border: 1px solid #9d1c1c;
    border-radius: 7px;
    background: #3b0505;
    color: var(--accent);
    padding: 0 18px;
    font-size: 1.28rem;
    font-weight: 900;
    outline: 0;
}

.selector-row option {
    color: #210101;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 2vw, 28px);
    padding: 22px 0 48px;
}

.gallery-tabs a {
    color: var(--accent);
    font-size: clamp(0.95rem, 1.4vw, 1.28rem);
    font-weight: 1000;
    text-transform: uppercase;
}

.client-search {
    width: min(576px, 100%);
    display: grid;
    grid-template-columns: 1fr 145px;
    margin: 0 auto;
}

.client-search input {
    border-radius: 8px 0 0 8px;
    background: #f3f4f8;
    color: #1d1d1d;
    border-color: transparent;
}

.client-search input::placeholder {
    color: #9ba1ad;
}

.client-search button {
    border: 0;
    border-radius: 0 8px 8px 0;
    background: var(--accent);
    color: #950909;
    font-size: 1.25rem;
    font-weight: 1000;
    text-transform: uppercase;
    cursor: pointer;
}

.client-theme .section-block {
    padding: 28px 0 70px;
    background: #310202;
}

.client-theme .section-heading {
    margin-bottom: 28px;
}

.client-theme .section-heading .eyebrow,
.client-theme .section-heading a {
    display: none;
}

.client-theme .profile-card {
    border: 0;
    border-radius: 4px;
    background: #960202;
}

.client-theme .profile-card-body {
    min-height: 96px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    background: #9c0202;
    padding: 20px 18px;
}

.client-theme .profile-card h3 {
    margin: 0;
    grid-row: 1 / span 2;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.45rem, 1.8vw, 2rem);
    font-weight: 1000;
}

.client-theme .profile-card h3 a,
.client-theme .profile-card p,
.client-theme .profile-meta span {
    color: var(--accent);
}

.client-theme .profile-card p {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 900;
}

.client-theme .profile-meta,
.client-theme .favorite-button,
.client-theme .availability {
    display: none;
}

.client-theme .profile-image {
    aspect-ratio: 4 / 3;
}

.client-theme .new-profiles,
.client-theme .locations-section,
.client-theme .why-section,
.client-theme .cta-section,
.client-theme .enquiry-section,
.client-theme .site-footer {
    background: #310202;
}

@media (max-width: 1200px) {
    .client-theme .top-strip-shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .client-theme .site-logo,
    .client-theme .diva-link,
    .client-theme .login-link {
        justify-self: center;
    }

    .client-theme .contact-cluster {
        min-width: 0;
        width: min(720px, 100%);
        justify-self: center;
    }

    .client-theme .nav-shell {
        width: min(calc(100% - 28px), var(--container));
        padding: 0 12px;
    }

    .client-theme .desktop-nav {
        overflow-x: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .client-theme .top-contact-strip {
        padding: 26px 0 16px;
    }

    .client-theme .agency-title strong {
        font-size: 1.65rem;
        letter-spacing: 0.16em;
    }

    .client-theme .site-logo img {
        width: 230px;
    }

    .client-theme .contact-cluster {
        grid-template-columns: 1fr;
    }

    .client-theme .contact-cluster a {
        min-height: 48px;
        font-size: 1.15rem;
    }

    .client-theme .nav-shell {
        min-height: 64px;
        justify-content: space-between;
    }

    .client-theme .desktop-nav {
        display: none;
    }

    .client-theme .brand {
        display: inline-flex;
    }

    .client-theme .brand img {
        width: 190px;
    }

    .client-theme .header-actions {
        display: flex;
    }

    .popular-head,
    .selector-row {
        grid-template-columns: 1fr;
    }

    .selector-row {
        padding-top: 18px;
    }

    .client-search {
        grid-template-columns: 1fr;
    }

    .client-search input,
    .client-search button {
        border-radius: 8px;
    }

    .client-search button {
        min-height: 56px;
        margin-top: 8px;
    }

    .client-theme .profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-theme .profile-card-body {
        grid-template-columns: 1fr;
        min-height: 82px;
        padding: 14px 12px;
    }

    .client-theme .profile-card p {
        text-align: left;
        font-size: 0.88rem;
    }
}

/* Black-background refinement requested by client */
.client-theme {
    --bg: #020000;
    --bg-soft: #090000;
    --bg-elevated: #130000;
    --text: #ffed88;
    --text-muted: #e8ca68;
    --accent: #ffed88;
    --accent-strong: #fff09a;
    --border: rgba(255, 237, 136, 0.18);
    background:
        radial-gradient(circle at 50% -12%, rgba(102, 0, 0, 0.42), transparent 460px),
        linear-gradient(180deg, #050000 0%, #010000 100%);
}

.client-theme .site-header {
    background:
        radial-gradient(circle at 50% 0, rgba(98, 0, 0, 0.5), transparent 470px),
        #050000;
}

.client-theme .top-contact-strip {
    padding: 48px 0 28px;
}

.client-theme .top-strip-shell {
    width: min(calc(100% - 170px), var(--container));
    min-height: 244px;
    display: grid;
    grid-template-columns: 340px minmax(560px, 1fr) 285px 120px;
    grid-template-areas:
        "logo title diva login"
        "logo contact diva login";
    column-gap: 44px;
    row-gap: 18px;
    align-items: center;
}

.client-theme .site-logo {
    grid-area: logo;
    align-self: center;
}

.client-theme .site-logo img {
    width: 330px;
    max-width: 100%;
}

.client-theme .agency-title {
    grid-area: title;
    align-self: end;
    text-align: center;
}

.client-theme .agency-title strong {
    max-width: none;
    color: var(--accent);
    font-size: clamp(2rem, 2.55vw, 3rem);
    line-height: 1;
    letter-spacing: 0.25em;
    white-space: nowrap;
}

.client-theme .agency-title span {
    color: var(--accent);
    font-size: 1.15rem;
}

.client-theme .contact-cluster {
    grid-area: contact;
    width: min(790px, 100%);
    min-width: 0;
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    gap: 18px;
    align-items: center;
}

.client-theme .contact-cluster a {
    min-height: 56px;
    padding: 10px 20px;
    border-color: #8c1010;
    background: rgba(20, 0, 0, 0.75);
    color: var(--accent);
    font-size: clamp(1.2rem, 1.55vw, 1.85rem);
    line-height: 1.1;
    white-space: nowrap;
}

.client-theme .contact-cluster a:nth-child(2)::before {
    content: "";
}

.client-theme .contact-cluster::after {
    content: "";
    width: 44px;
    height: 44px;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    border-radius: 50%;
    background: #169bd8;
    box-shadow: inset 0 0 0 8px rgba(255,255,255,0.08);
}

.client-theme .contact-cluster a:first-child {
    grid-column: 1;
}

.client-theme .contact-cluster a:nth-child(2) {
    grid-column: 3;
}

.client-theme .contact-cluster span {
    grid-column: 1 / -1;
    color: var(--accent);
    font-size: 1.18rem;
    margin-top: 0;
}

.client-theme .diva-link {
    grid-area: diva;
    align-self: start;
    justify-self: center;
    margin-top: 48px;
    background: var(--accent);
    color: #8f0505;
    white-space: nowrap;
}

.client-theme .login-link {
    grid-area: login;
    align-self: center;
    justify-self: center;
    color: var(--accent);
}

.client-theme .nav-shell {
    width: min(calc(100% - 170px), var(--container));
    margin-top: 0;
    min-height: 78px;
    background: #a80000;
    border-radius: 5px;
    padding: 0 48px;
}

.client-theme .desktop-nav a {
    color: var(--accent);
    font-size: clamp(1rem, 1.28vw, 1.48rem);
}

.client-intro-section,
.client-theme .section-block,
.client-theme .new-profiles,
.client-theme .locations-section,
.client-theme .why-section,
.client-theme .cta-section,
.client-theme .enquiry-section,
.client-theme .site-footer {
    background:
        radial-gradient(circle at 50% 0, rgba(86, 0, 0, 0.18), transparent 430px),
        #050000;
}

.client-intro-section {
    padding-top: 0;
}

.popular-head {
    padding-top: 10px;
    border-bottom-color: rgba(255, 237, 136, 0.14);
}

.popular-head h1,
.client-theme .section-heading h2 {
    color: #100000;
    text-shadow: 0 1px 0 rgba(142, 0, 0, 0.45);
}

.selector-row select {
    background: #0b0000;
    border-color: #a41313;
}

.gallery-tabs a,
.client-search button,
.client-theme .profile-card h3 a,
.client-theme .profile-card p {
    color: var(--accent);
}

.client-theme .profile-card,
.client-theme .profile-card-body {
    background: #9f0000;
}

@media (max-width: 1400px) {
    .client-theme .top-strip-shell,
    .client-theme .nav-shell {
        width: min(calc(100% - 60px), var(--container));
    }

    .client-theme .top-strip-shell {
        grid-template-columns: 300px minmax(460px, 1fr) 230px 100px;
        column-gap: 24px;
    }

    .client-theme .site-logo img {
        width: 290px;
    }

    .client-theme .agency-title strong {
        letter-spacing: 0.18em;
        font-size: 2.1rem;
    }
}

@media (max-width: 1100px) {
    .client-theme .top-strip-shell {
        width: min(calc(100% - 28px), var(--container));
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "title"
            "contact"
            "diva"
            "login";
        text-align: center;
    }

    .client-theme .site-logo,
    .client-theme .diva-link,
    .client-theme .login-link {
        justify-self: center;
    }

    .client-theme .agency-title strong {
        white-space: normal;
    }

    .client-theme .contact-cluster {
        width: min(760px, 100%);
    }
}

@media (max-width: 767px) {
    .client-theme .top-contact-strip {
        padding: 26px 0 18px;
    }

    .client-theme .site-logo img {
        width: 260px;
    }

    .client-theme .agency-title strong {
        font-size: 1.55rem;
        letter-spacing: 0.12em;
    }

    .client-theme .contact-cluster {
        grid-template-columns: 1fr;
    }

    .client-theme .contact-cluster::after {
        display: none;
    }

    .client-theme .contact-cluster a:first-child,
    .client-theme .contact-cluster a:nth-child(2),
    .client-theme .contact-cluster span {
        grid-column: 1;
    }

    .client-theme .nav-shell {
        width: min(calc(100% - 28px), var(--container));
        padding: 0 14px;
    }
}

/* Exact reference-style compact header correction */
.client-theme {
    background: #020000;
}

.client-theme .site-header {
    background:
        linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at 50% 10%, rgba(88, 0, 0, 0.55), transparent 520px),
        #070000;
    padding-top: 0;
}

.client-theme .top-contact-strip {
    padding: 52px 0 22px;
}

.client-theme .top-strip-shell {
    width: min(calc(100% - 170px), 1728px);
    min-height: 238px;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr) 300px;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "logo title diva"
        "logo contact login"
        "logo time login";
    column-gap: 42px;
    row-gap: 12px;
    align-items: center;
}

.client-theme .site-logo {
    grid-area: logo;
    align-self: center;
    justify-self: start;
}

.client-theme .site-logo img {
    width: 365px;
    max-width: 100%;
}

.client-theme .agency-title {
    grid-area: title;
    align-self: end;
    text-align: center;
    min-width: 0;
}

.client-theme .agency-title strong {
    display: block;
    color: #ffed88;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.15rem, 2.75vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: 0.24em;
    white-space: nowrap;
    overflow: visible;
}

.client-theme .agency-title span {
    display: block;
    margin-top: 8px;
    color: #ffed88;
    font-size: 1.18rem;
    font-weight: 800;
    font-style: italic;
}

.client-theme .contact-cluster {
    grid-area: contact;
    width: min(790px, 100%);
    justify-self: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.client-theme .contact-cluster a {
    min-height: 56px;
    padding: 10px 20px;
    border: 1px solid #8d1515;
    border-radius: 7px;
    background: rgba(28, 0, 0, 0.88);
    color: #ffed88;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.28rem, 1.65vw, 1.95rem);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.client-theme .contact-cluster a:first-child {
    grid-column: 1;
}

.client-theme .contact-cluster a:nth-child(2) {
    grid-column: 3;
}

.client-theme .contact-cluster::after {
    content: "";
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: radial-gradient(circle, #23a8e7 0 45%, #188fca 46% 100%);
}

.client-theme .contact-cluster span {
    grid-area: time;
    grid-column: 1 / -1;
    margin-top: 4px;
    color: #ffed88;
    font-size: 1.28rem;
    font-weight: 900;
    font-style: italic;
    text-align: center;
}

.client-theme .diva-link {
    grid-area: diva;
    align-self: end;
    justify-self: center;
    margin: 0;
    padding: 12px 28px;
    border-radius: 5px;
    background: #ffed88;
    color: #9c0303;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.85rem;
    font-weight: 1000;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.client-theme .login-link {
    grid-area: login;
    align-self: center;
    justify-self: center;
    color: #ffed88;
    font-size: 1.55rem;
    font-weight: 900;
    text-transform: uppercase;
}

.client-theme .nav-shell {
    width: min(calc(100% - 170px), 1728px);
    min-height: 78px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    background: #a90000;
}

.client-theme .desktop-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    overflow: visible;
}

.client-theme .desktop-nav a {
    padding: 16px 38px;
    color: #ffed88;
    border-radius: 7px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.08rem, 1.35vw, 1.55rem);
    font-weight: 1000;
    line-height: 1.18;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.client-theme .desktop-nav a:first-child {
    background: #5d0000;
}

.client-theme .desktop-nav a:hover {
    background: #6d0000;
}

.client-theme .dev-note {
    display: none;
}

.client-intro-section {
    padding: 0 0 58px;
    background:
        radial-gradient(circle at 50% 0, rgba(90, 0, 0, 0.24), transparent 520px),
        #050000;
}

.client-intro-shell {
    padding-top: 4px;
}

.popular-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 660px);
    gap: 34px;
    align-items: end;
    padding-top: 0;
    border-bottom: 1px solid rgba(255, 237, 136, 0.13);
}

.popular-head h1,
.client-theme .section-heading h2 {
    color: #160000;
    font-size: clamp(1.55rem, 1.9vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 0 rgba(130, 0, 0, 0.8);
}

.selector-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 14px;
}

.selector-row select {
    min-height: 62px;
    background: #0b0000;
    border: 1px solid #a71616;
    border-radius: 7px;
    color: #ffed88;
    font-size: 1.45rem;
    font-weight: 1000;
}

.gallery-tabs {
    padding: 18px 0 48px;
    gap: 28px;
}

.gallery-tabs a {
    color: #ffed88;
    font-size: 1.16rem;
    font-weight: 1000;
}

.client-search {
    margin-top: 0;
}

@media (max-width: 1450px) {
    .client-theme .top-strip-shell,
    .client-theme .nav-shell {
        width: min(calc(100% - 60px), 1728px);
    }

    .client-theme .top-strip-shell {
        grid-template-columns: 300px minmax(0, 1fr) 250px;
        column-gap: 26px;
    }

    .client-theme .site-logo img {
        width: 300px;
    }

    .client-theme .agency-title strong {
        font-size: 2.2rem;
        letter-spacing: 0.16em;
    }

    .client-theme .diva-link {
        font-size: 1.45rem;
    }

    .client-theme .desktop-nav a {
        padding-inline: 22px;
    }
}

@media (max-width: 1100px) {
    .client-theme .top-strip-shell {
        width: min(calc(100% - 28px), 1728px);
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "title"
            "contact"
            "diva"
            "login";
        text-align: center;
    }

    .client-theme .site-logo,
    .client-theme .diva-link,
    .client-theme .login-link {
        justify-self: center;
    }

    .client-theme .agency-title strong {
        white-space: normal;
    }

    .popular-head {
        grid-template-columns: 1fr;
    }
}

/* Scale correction: match reference smaller button/font sizes */
.client-theme .top-contact-strip {
    padding: 44px 0 20px;
}

.client-theme .top-strip-shell {
    min-height: 238px;
    grid-template-columns: 350px minmax(0, 1fr) 300px;
    column-gap: 44px;
}

.client-theme .site-logo img {
    width: 300px;
}

.client-theme .agency-title strong {
    font-size: clamp(2rem, 2.35vw, 2.8rem);
    letter-spacing: 0.22em;
    font-weight: 900;
}

.client-theme .agency-title span {
    font-size: 1rem;
    margin-top: 6px;
}

.client-theme .contact-cluster {
    width: min(790px, 100%);
    grid-template-columns: minmax(0, 330px) 58px minmax(0, 340px);
    justify-content: center;
    gap: 18px;
}

.client-theme .contact-cluster a {
    min-height: 56px;
    padding: 9px 18px;
    font-size: 1.48rem;
    letter-spacing: 0.05em;
    border-radius: 7px;
}

.client-theme .contact-cluster::after {
    width: 46px;
    height: 46px;
}

.client-theme .contact-cluster span {
    font-size: 1.1rem;
}

.client-theme .diva-link {
    width: 268px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 1.46rem;
    line-height: 1;
    letter-spacing: 0;
}

.client-theme .login-link {
    font-size: 1.32rem;
}

.client-theme .nav-shell {
    min-height: 78px;
    padding: 0 48px;
}

.client-theme .desktop-nav {
    gap: 16px;
}

.client-theme .desktop-nav a {
    min-width: 0;
    padding: 14px 22px;
    font-size: 1.3rem;
    line-height: 1.15;
    letter-spacing: 0;
}

.client-theme .desktop-nav a:first-child {
    padding-inline: 38px;
}

.popular-head h1,
.client-theme .section-heading h2 {
    font-size: 1.7rem;
}

.selector-row select {
    min-height: 60px;
    padding: 0 18px;
    font-size: 1.28rem;
}

.gallery-tabs a {
    font-size: 1.05rem;
}

.client-search {
    width: 576px;
    grid-template-columns: 1fr 145px;
}

.client-search input {
    min-height: 60px;
    font-size: 1.2rem;
}

.client-search button {
    font-size: 1.12rem;
}

@media (max-width: 1450px) {
    .client-theme .site-logo img {
        width: 270px;
    }

    .client-theme .agency-title strong {
        font-size: 2rem;
        letter-spacing: 0.16em;
    }

    .client-theme .contact-cluster a {
        font-size: 1.22rem;
    }

    .client-theme .diva-link {
        width: 238px;
        font-size: 1.22rem;
    }

    .client-theme .desktop-nav a {
        font-size: 1.12rem;
        padding-inline: 16px;
    }
}

/* Exact font match from reference DevTools */
.client-theme,
.client-theme button,
.client-theme input,
.client-theme select,
.client-theme textarea {
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.client-theme .top-contact-strip {
    padding: 48px 0 18px;
}

.client-theme .top-strip-shell {
    width: min(calc(100% - 170px), 1728px);
    min-height: 250px;
    grid-template-columns: 360px minmax(0, 1fr) 300px;
    column-gap: 40px;
}

.client-theme .site-logo img {
    width: 300px;
}

.client-theme .agency-title strong {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.client-theme .agency-title span {
    margin-top: 2px;
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 20px;
}

.client-theme .contact-cluster {
    width: min(786px, 100%);
    grid-template-columns: 330px 64px 340px;
    gap: 16px;
}

.client-theme .contact-cluster a {
    min-height: 56px;
    padding: 8px 22px;
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 1.5px;
    border: 1px solid #790003;
    border-radius: 7px;
    background: rgba(46, 16, 15, 0.72);
}

.client-theme .contact-cluster::after {
    width: 48px;
    height: 48px;
}

.client-theme .contact-cluster span {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    line-height: 28px;
}

.client-theme .diva-link {
    width: 220px;
    min-height: 77px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-theme .diva-link img {
    width: 220px;
    height: 77px;
    display: block;
}

.client-theme .login-link {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.client-theme .nav-shell {
    min-height: 78px;
    padding: 0 48px;
}

.client-theme .desktop-nav a {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
    padding: 14px 22px;
}

.client-theme .desktop-nav a:first-child {
    padding: 14px 38px;
}

.popular-head h1,
.client-theme .section-heading h2 {
    color: #790003;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: none;
}

.gallery-tabs a {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}

.selector-row select {
    min-height: 42px;
    padding: 8px 32px 8px 12px;
    color: #fce690;
    background: #2e100f;
    border: 1px solid #790003;
    border-radius: 6px;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

.client-search {
    width: 576px;
    grid-template-columns: 1fr 145px;
}

.client-search input {
    min-height: 60px;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.client-search button {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1450px) {
    .client-theme .top-strip-shell {
        width: min(calc(100% - 60px), 1728px);
        grid-template-columns: 290px minmax(0, 1fr) 250px;
        column-gap: 26px;
    }

    .client-theme .site-logo img {
        width: 270px;
    }

    .client-theme .agency-title strong {
        font-size: 26px;
        letter-spacing: 5px;
    }

    .client-theme .contact-cluster {
        grid-template-columns: 290px 54px 300px;
    }

    .client-theme .contact-cluster a {
        font-size: 18px;
        padding-inline: 16px;
    }

    .client-theme .desktop-nav a {
        font-size: 18px;
        padding-inline: 16px;
    }
}

/* First-fold spacing match: reduce top margin and header height */
.client-theme .site-header {
    background:
        radial-gradient(circle at 50% 0, rgba(88, 0, 0, 0.55), transparent 520px),
        #050000;
}

.client-theme .top-contact-strip {
    padding: 28px 0 14px;
}

.client-theme .top-strip-shell {
    min-height: 206px;
    width: min(calc(100% - 170px), 1728px);
    grid-template-columns: 360px minmax(0, 1fr) 300px;
    row-gap: 6px;
    column-gap: 40px;
}

.client-theme .site-logo img {
    width: 300px;
}

.client-theme .agency-title {
    align-self: end;
}

.client-theme .agency-title strong {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 7px;
}

.client-theme .agency-title span {
    margin-top: 0;
}

.client-theme .contact-cluster {
    margin-top: 8px;
}

.client-theme .contact-cluster a {
    min-height: 56px;
}

.client-theme .contact-cluster span {
    margin-top: 0;
}

.client-theme .diva-link {
    align-self: center;
    margin-top: -2px;
}

.client-theme .login-link {
    align-self: center;
    margin-top: 42px;
}

.client-theme .nav-shell {
    width: min(calc(100% - 170px), 1728px);
    min-height: 78px;
    margin-top: 0;
}

.client-intro-section {
    padding-top: 0;
    padding-bottom: 48px;
}

.client-intro-shell {
    padding-top: 0;
}

.popular-head {
    padding-top: 0;
}

.gallery-tabs {
    padding-top: 18px;
    padding-bottom: 44px;
}

@media (max-width: 1450px) {
    .client-theme .top-contact-strip {
        padding-top: 24px;
    }

    .client-theme .top-strip-shell,
    .client-theme .nav-shell {
        width: min(calc(100% - 60px), 1728px);
    }

    .client-theme .top-strip-shell {
        min-height: 202px;
    }
}

/* Popular galleries layout: match reference row structure */
.client-intro-section {
    padding: 0 0 56px;
}

.client-intro-shell {
    padding-top: 0;
}

.popular-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 590px);
    gap: 36px;
    align-items: end;
    padding: 0 0 0;
    border-bottom: 1px solid rgba(252, 230, 144, 0.13);
}

.popular-left {
    min-width: 0;
}

.popular-head h1 {
    margin: 0 0 12px;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
    padding: 18px 0 16px;
    border-top: 1px solid rgba(121, 0, 3, 0.52);
}

.selector-row {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 0 16px;
}

.selector-row select {
    width: 100%;
    min-height: 42px;
}

.client-search {
    width: min(576px, 100%);
    margin: 60px auto 0;
    grid-template-columns: 1fr 145px;
}

.client-search input {
    min-height: 60px;
    border-radius: 8px 0 0 8px;
}

.client-search button {
    min-height: 60px;
    border-radius: 0 8px 8px 0;
    color: #790003;
}

@media (max-width: 1100px) {
    .popular-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .selector-row {
        padding-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .selector-row {
        grid-template-columns: 1fr;
    }

    .client-search {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .client-search input,
    .client-search button {
        border-radius: 8px;
    }
}

/* Final reference alignment pass */
.client-theme .top-contact-strip {
    padding: 34px 0 12px;
}

.client-theme .top-strip-shell {
    width: min(calc(100% - 170px), 1728px);
    min-height: 238px;
    grid-template-columns: 370px minmax(0, 1fr) 300px;
    grid-template-areas:
        "logo title diva"
        "logo contact login"
        "logo time login";
    column-gap: 34px;
    row-gap: 8px;
}

.client-theme .site-logo {
    align-self: center;
}

.client-theme .site-logo img {
    width: 250px;
}

.client-theme .agency-title {
    transform: translateY(4px);
}

.client-theme .agency-title strong {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 7px;
}

.client-theme .contact-cluster {
    width: 786px;
    grid-template-columns: 330px 64px 340px;
    margin-top: 8px;
}

.client-theme .contact-cluster a {
    min-height: 56px;
    font-size: 20px;
    line-height: 28px;
}

.client-theme .diva-link {
    width: 220px;
    height: 77px;
    min-height: 77px;
    align-self: end;
    justify-self: center;
    margin: 0 0 -12px 0;
    overflow: visible;
}

.client-theme .diva-link img {
    width: 220px;
    height: 77px;
    object-fit: contain;
}

.client-theme .login-link {
    margin-top: 18px;
    align-self: start;
    font-size: 20px;
}

.client-theme .nav-shell {
    width: min(calc(100% - 170px), 1728px);
    min-height: 78px;
    padding: 0 48px;
}

.client-theme .desktop-nav a {
    background: transparent !important;
    font-size: 20px;
    line-height: 28px;
    padding: 14px 22px;
}

.client-theme .desktop-nav a:first-child {
    background: #5d0000 !important;
    padding: 14px 38px;
}

.client-theme .desktop-nav a:hover {
    background: #5d0000 !important;
}

.client-intro-section {
    padding-bottom: 48px;
}

.popular-head {
    width: min(calc(100% - 24px), 1728px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) 588px;
    gap: 34px;
    align-items: end;
}

.popular-head h1 {
    margin: 0 0 12px;
}

.gallery-tabs {
    padding: 18px 0 16px;
    gap: 0 24px;
}

.selector-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-bottom: 16px;
}

.client-search {
    margin-top: 58px;
}

@media (max-width: 1450px) {
    .client-theme .top-strip-shell,
    .client-theme .nav-shell {
        width: min(calc(100% - 60px), 1728px);
    }

    .client-theme .top-strip-shell {
        grid-template-columns: 290px minmax(0, 1fr) 240px;
        column-gap: 24px;
    }

    .client-theme .site-logo img {
        width: 245px;
    }

    .client-theme .agency-title strong {
        font-size: 26px;
        letter-spacing: 5px;
    }

    .client-theme .contact-cluster {
        width: 650px;
        grid-template-columns: 286px 54px 292px;
    }

    .client-theme .contact-cluster a {
        font-size: 18px;
    }

    .client-theme .diva-link,
    .client-theme .diva-link img {
        width: 198px;
        height: 69px;
        min-height: 69px;
    }

    .client-theme .desktop-nav a {
        font-size: 18px;
        padding-inline: 14px;
    }

    .popular-head {
        grid-template-columns: minmax(0, 1fr) 560px;
    }
}

/* Reference featured girls card section using extracted client assets */
.client-theme .featured-section {
    padding: 30px 0 80px;
    background:
        radial-gradient(circle at 50% 0, rgba(90, 0, 0, 0.18), transparent 520px),
        #180000;
}

.client-theme .featured-section .section-heading {
    width: min(calc(100% - 24px), 1728px);
    margin: 0 auto 28px;
    display: block;
}

.client-theme .featured-section .section-heading h2 {
    color: #790003;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 2px;
    text-transform: none;
}

.client-theme .reference-card-grid {
    width: min(calc(100% - 24px), 1728px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.client-theme .reference-profile-card {
    display: grid;
    grid-template-rows: auto auto auto;
    border: 0;
    border-radius: 3px;
    overflow: hidden;
    background: #8f0000;
    box-shadow: none;
}

.client-theme .reference-profile-card .profile-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    min-height: 96px;
    padding: 20px 18px 16px;
    background: #980000;
}

.client-theme .reference-profile-card .profile-card-head h3 {
    margin: 0;
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.12;
}

.client-theme .reference-profile-card .profile-card-head p {
    margin: 0;
    display: grid;
    gap: 4px;
    color: #fce690;
    text-align: right;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.client-theme .reference-profile-card .profile-card-head strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.client-theme .reference-profile-card .profile-card-head span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.client-theme .reference-profile-card .profile-image {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.15;
    background: #180000;
    overflow: hidden;
}

.client-theme .reference-profile-card .profile-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(121, 0, 3, 0.78));
    pointer-events: none;
}

.client-theme .reference-profile-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 420ms ease;
}

.client-theme .reference-profile-card:hover .profile-image img {
    transform: scale(1.035);
}

.client-theme .reference-profile-card .favorite-button {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.client-theme .reference-profile-card .favorite-button.is-saved {
    background: rgba(121, 0, 3, 0.86);
    color: #fce690;
}

.client-theme .reference-profile-card .availability-note {
    position: absolute;
    z-index: 3;
    left: 18px;
    right: 58px;
    bottom: 18px;
    color: #fff;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.client-theme .reference-profile-card .status-dot {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.62);
    background: #f44a4a;
}

.client-theme .reference-profile-card .status-dot.green {
    background: #26d069;
}

.client-theme .reference-profile-card .profile-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 12px 14px;
    background: #fce690;
    color: #790003;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.client-theme .reference-profile-card .profile-card-foot span:first-child {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.client-theme .reference-profile-card .profile-card-foot span:last-child {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 1199px) {
    .client-theme .reference-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .client-theme .reference-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .client-theme .reference-profile-card .profile-card-head {
        min-height: 74px;
        padding: 12px;
    }

    .client-theme .reference-profile-card .profile-card-head h3 {
        font-size: 18px;
    }

    .client-theme .reference-profile-card .profile-card-head strong {
        font-size: 14px;
    }

    .client-theme .reference-profile-card .profile-card-head span,
    .client-theme .reference-profile-card .profile-card-foot span:last-child {
        font-size: 12px;
    }

    .client-theme .reference-profile-card .availability-note {
        left: 12px;
        right: 40px;
        bottom: 12px;
        font-size: 13px;
    }

    .client-theme .reference-profile-card .favorite-button {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .client-theme .reference-profile-card .status-dot {
        right: 12px;
        bottom: 12px;
        width: 18px;
        height: 18px;
    }

    .client-theme .reference-profile-card .profile-card-foot {
        min-height: 42px;
        padding: 9px;
    }

    .client-theme .reference-profile-card .profile-card-foot span:first-child {
        font-size: 16px;
    }
}

.client-theme .reference-profile-card .profile-image > a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Featured section is now a true horizontal slider */
.client-theme .featured-section {
    padding: 30px 0 86px;
}

.client-theme .featured-shell {
    width: min(calc(100% - 194px), 1728px);
    margin-inline: auto;
}

.client-theme .featured-heading {
    width: 100%;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-theme .featured-heading h2 {
    color: #790003;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-theme .featured-slider-actions {
    display: flex;
    gap: 8px;
}

.client-theme .featured-slider-actions .slider-button {
    width: 38px;
    height: 38px;
    border: 1px solid #790003;
    background: rgba(46, 16, 15, 0.85);
    color: #fce690;
    font-size: 18px;
}

.client-theme .reference-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 4);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.client-theme .reference-slider::-webkit-scrollbar {
    display: none;
}

.client-theme .reference-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.client-theme .reference-slider .reference-profile-card {
    scroll-snap-align: start;
    min-width: 0;
}

.client-theme .reference-profile-card .profile-card-head {
    min-height: 64px;
    padding: 12px 12px 8px;
}

.client-theme .reference-profile-card .profile-card-head h3 {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.client-theme .reference-profile-card .profile-card-head strong {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.client-theme .reference-profile-card .profile-card-head span {
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.client-theme .reference-profile-card .profile-image {
    aspect-ratio: 3 / 4.05;
}

.client-theme .reference-profile-card .availability-note {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.client-theme .reference-profile-card .profile-card-foot span:first-child {
    color: #790003;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.client-theme .reference-profile-card .profile-card-foot span:last-child {
    color: #790003;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.client-theme .reference-profile-card .favorite-button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
}

.client-theme .slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.client-theme .slider-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(252, 230, 144, 0.42);
}

.client-theme .slider-dots span.is-active {
    width: 12px;
    height: 12px;
    background: #fce690;
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .client-theme .featured-shell {
        width: min(calc(100% - 60px), 1728px);
    }

    .client-theme .reference-slider {
        grid-auto-columns: calc((100% - 32px) / 3);
    }
}

@media (max-width: 767px) {
    .client-theme .featured-shell {
        width: min(calc(100% - 28px), 1728px);
    }

    .client-theme .reference-slider {
        grid-auto-columns: calc((100% - 12px) / 2);
        gap: 12px;
    }
}

/* Guard against older grid rules overriding the featured slider */
.client-theme .featured-section .reference-card-grid,
.client-theme .featured-section .reference-slider {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-columns: none !important;
}

/* Reference-style directory sections */
.client-theme .filter-finder-section,
.client-theme .directory-section {
    background: #080000;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.client-theme .filter-finder-section {
    padding: 58px 0 72px;
}

.client-theme .filter-finder-shell,
.client-theme .directory-shell {
    width: min(calc(100% - 194px), 1704px);
    margin-inline: auto;
}

.client-theme .filter-finder-panel {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #960202;
    text-align: center;
    padding: 54px 32px 0;
}

.client-theme .filter-finder-panel p {
    max-width: 1180px;
    margin: 0;
    color: #fce690;
    font-size: 28px;
    line-height: 1.34;
    font-weight: 700;
}

.client-theme .find-disa-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    margin-top: 72px;
    padding: 0 38px;
    border-radius: 5px;
    background: #fce690;
    color: #970005;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(50%);
}

.client-theme .find-disa-button span {
    width: 38px;
    height: 72px;
    display: inline-block;
    background: #fce690;
    clip-path: polygon(42% 0, 70% 12%, 58% 28%, 82% 45%, 60% 64%, 72% 100%, 34% 86%, 20% 56%, 35% 34%, 16% 16%);
}

.client-theme .directory-section {
    padding: 70px 0 62px;
}

.client-theme .directory-section + .directory-section {
    padding-top: 42px;
}

.client-theme .directory-shell {
    background: rgba(46, 16, 15, 0.82);
    padding: 56px 48px 54px;
}

.client-theme .directory-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.client-theme .directory-heading h2 {
    margin: 0;
    color: #fce690;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
}

.client-theme .directory-actions {
    display: flex;
    gap: 12px;
}

.client-theme .section-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.22);
    color: #fce690;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
}

.client-theme .directory-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.client-theme .directory-slider::-webkit-scrollbar {
    display: none;
}

.client-theme .directory-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.client-theme .directory-card {
    min-width: 0;
    scroll-snap-align: start;
    background: #2e100f;
    overflow: hidden;
}

.client-theme .directory-card-head {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px 10px;
    background: #970005;
}

.client-theme .directory-card-head h3,
.client-theme .directory-card-head p {
    margin: 0;
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.client-theme .directory-card-head a {
    color: inherit;
}

.client-theme .directory-card-head p {
    text-align: right;
    white-space: nowrap;
}

.client-theme .directory-photo {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    color: #fff;
}

.client-theme .directory-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-theme .directory-photo::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(121, 0, 3, 0), rgba(121, 0, 3, 0.82));
}

.client-theme .rating-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    color: #fce690;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 700;
    text-align: right;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.client-theme .rating-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.client-theme .photo-note {
    position: absolute;
    left: 20px;
    right: 62px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.28;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.client-theme .directory-photo .status-dot {
    position: absolute;
    right: 20px;
    bottom: 36px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255,255,255,0.78);
    border-radius: 50%;
    background: #2ecc71;
}

.client-theme .directory-photo .status-dot.red {
    background: #f44d4d;
}

.client-theme .directory-card-meta {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    background: #2e100f;
}

.client-theme .directory-card-meta p {
    margin: 0;
    color: #fce690;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
}

.client-theme .directory-card-meta span {
    display: block;
}

.client-theme .directory-heart {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fce690;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.client-theme .directory-heart.is-saved {
    color: #fff;
}

@media (max-width: 1199px) {
    .client-theme .filter-finder-shell,
    .client-theme .directory-shell {
        width: min(calc(100% - 60px), 1704px);
    }

    .client-theme .directory-slider {
        grid-auto-columns: calc((100% - 48px) / 3);
    }
}

@media (max-width: 767px) {
    .client-theme .filter-finder-section {
        padding: 38px 0 50px;
    }

    .client-theme .filter-finder-shell,
    .client-theme .directory-shell {
        width: min(calc(100% - 28px), 1704px);
    }

    .client-theme .filter-finder-panel {
        min-height: 240px;
        padding: 36px 18px 0;
    }

    .client-theme .filter-finder-panel p {
        font-size: 20px;
    }

    .client-theme .find-disa-button {
        min-height: 62px;
        margin-top: 42px;
        padding: 0 22px;
        font-size: 22px;
    }

    .client-theme .directory-shell {
        padding: 34px 14px 38px;
    }

    .client-theme .directory-heading h2 {
        font-size: 22px;
    }

    .client-theme .directory-slider {
        grid-auto-columns: calc((100% - 12px) / 2);
        gap: 12px;
    }

    .client-theme .directory-card-head h3,
    .client-theme .directory-card-head p {
        font-size: 16px;
    }

    .client-theme .directory-photo {
        height: 310px;
    }

    .client-theme .photo-note {
        font-size: 15px;
        left: 12px;
        right: 42px;
    }

    .client-theme .directory-card-meta p {
        font-size: 14px;
    }
}
/* Lower reference sections: foreign, duo, trio, reviews, contact CTA */
.client-theme .combo-section,
.client-theme .reviews-section,
.client-theme .help-cta-section {
    background: #080000;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.client-theme .combo-section {
    padding: 56px 0 18px;
}

.client-theme .combo-shell {
    position: relative;
    width: min(calc(100% - 194px), 1704px);
    min-height: 520px;
    padding: 64px 24px 70px;
    border: 2px solid rgba(252, 230, 144, 0.68);
    border-radius: 8px;
    background: rgba(86, 0, 0, 0.2);
}

.client-theme .combo-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.client-theme .combo-heading h2,
.client-theme .reviews-shell h2 {
    margin: 0;
    color: #fce690;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
}

.client-theme .combo-heading a {
    color: #fce690;
    font-size: 24px;
    font-weight: 500;
}

.client-theme .combo-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.client-theme .combo-slider::-webkit-scrollbar {
    display: none;
}

.client-theme .combo-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.client-theme .combo-card {
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 8px;
    background: #970005;
}

.client-theme .combo-card-head {
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    color: #fce690;
    background: #970005;
}

.client-theme .combo-card-head strong {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.client-theme .combo-photos {
    position: relative;
    height: 330px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.client-theme .combo-photos > a,
.client-theme .review-image > a {
    display: block;
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.client-theme .trio-card .combo-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-theme .combo-photos img,
.client-theme .review-image > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-theme .combo-photos::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, transparent, rgba(121, 0, 3, 0.82));
}

.client-theme .combo-heart {
    position: absolute;
    top: -28px;
    left: 50%;
    z-index: 3;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}

.client-theme .combo-pill {
    position: absolute;
    left: 50%;
    top: 58%;
    z-index: 3;
    transform: translate(-50%, -50%);
    padding: 9px 18px;
    border-radius: 8px;
    background: #fce690;
    color: #790003;
    font-size: 16px;
    font-weight: 700;
}

.client-theme .combo-note {
    position: absolute;
    left: 14px;
    right: 58px;
    bottom: 18px;
    z-index: 3;
    color: #fce690;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

.client-theme .combo-photos .status-dot {
    position: absolute;
    right: 16px;
    bottom: 20px;
    z-index: 4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.28);
    background: #25cd63;
}

.client-theme .combo-photos .status-dot.red {
    background: #f03434;
}

.client-theme .combo-card-foot {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.45);
}

.client-theme .trio-card .combo-card-foot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-theme .combo-card-foot p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 12px;
    background: #970005;
    color: #fce690;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

.client-theme .combo-card-foot strong {
    font-size: 17px;
    font-weight: 700;
}

.client-theme .combo-card-foot span {
    text-align: right;
}

.client-theme .combo-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 4px;
    background: rgba(0,0,0,.42);
    color: #fce690;
    font-size: 58px;
    line-height: 1;
    cursor: pointer;
}

.client-theme .combo-prev { left: 26px; }
.client-theme .combo-next { right: 26px; }

.client-theme .reviews-section {
    padding: 72px 0 44px;
}

.client-theme .reviews-shell {
    width: min(calc(100% - 194px), 1704px);
}

.client-theme .reviews-shell h2 {
    margin-bottom: 50px;
    font-size: 42px;
}

.client-theme .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 48px;
}

.client-theme .review-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    min-height: 354px;
    background: #2e100f;
    overflow: hidden;
}

.client-theme .review-image { position: relative; min-height: 354px; }
.client-theme .review-image img { width: 100%; height: 100%; object-fit: cover; }
.client-theme .review-image span {
    position: absolute;
    left: 12px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 5px;
    background: #970005;
    color: #fce690;
    font-size: 18px;
    font-weight: 700;
}

.client-theme .review-image i {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #28c969;
}

.client-theme .review-copy {
    padding: 30px 30px 24px;
    color: #fce690;
    background: #2e100f;
}

.client-theme .review-title {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.client-theme .review-title h3 { margin: 0; font-size: 30px; line-height: 1.1; font-weight: 700; }
.client-theme .review-title em,
.client-theme .review-by { color: rgba(252, 230, 144, 0.76); font-size: 18px; font-style: italic; font-weight: 600; }
.client-theme .review-stars { margin: 28px 0 24px; color: #ffd275; font-size: 32px; line-height: 1; font-weight: 700; }
.client-theme .review-stars strong { font-size: 22px; }
.client-theme .review-copy p:not(.review-by):not(.review-stars) { margin: 0 0 12px; color: #fce690; font-size: 22px; line-height: 1.45; font-weight: 500; }
.client-theme .review-copy a { color: rgba(255,255,255,.54); font-size: 18px; font-weight: 700; text-decoration: underline; }

.client-theme .help-cta-section { padding: 72px 0 86px; }
.client-theme .help-cta-shell {
    width: min(calc(100% - 194px), 1704px);
    min-height: 468px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: center;
    padding: 74px 72px;
    background: #970005;
}

.client-theme .help-cta-shell h2 { margin: 0 0 28px; color: #fce690; font-size: 42px; line-height: 1.15; font-weight: 700; }
.client-theme .help-cta-shell p { max-width: 920px; margin: 0 0 24px; color: #fce690; font-size: 28px; line-height: 1.42; font-weight: 400; }
.client-theme .help-cta-shell em { color: #fff; font-size: 22px; font-weight: 500; }
.client-theme .help-cta-shell a {
    justify-self: end;
    min-width: 230px;
    min-height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fce690;
    color: #790003;
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .client-theme .combo-shell,
    .client-theme .reviews-shell,
    .client-theme .help-cta-shell { width: min(calc(100% - 60px), 1704px); }
    .client-theme .combo-slider { grid-auto-columns: calc((100% - 24px) / 2); }
    .client-theme .reviews-grid { grid-template-columns: 1fr; }
    .client-theme .help-cta-shell { grid-template-columns: 1fr; }
    .client-theme .help-cta-shell a { justify-self: start; }
}

@media (max-width: 767px) {
    .client-theme .combo-shell,
    .client-theme .reviews-shell,
    .client-theme .help-cta-shell { width: min(calc(100% - 28px), 1704px); }
    .client-theme .combo-shell { padding: 36px 12px 48px; min-height: 0; }
    .client-theme .combo-heading h2,
    .client-theme .reviews-shell h2,
    .client-theme .help-cta-shell h2 { font-size: 28px; }
    .client-theme .combo-slider { grid-auto-columns: 88%; gap: 14px; }
    .client-theme .combo-photos { height: 300px; }
    .client-theme .combo-arrow { width: 48px; height: 48px; font-size: 36px; }
    .client-theme .reviews-grid,
    .client-theme .review-card { grid-template-columns: 1fr; }
    .client-theme .review-image { min-height: 310px; }
    .client-theme .review-copy { padding: 22px; }
    .client-theme .review-copy p:not(.review-by):not(.review-stars),
    .client-theme .help-cta-shell p { font-size: 18px; }
    .client-theme .help-cta-shell { padding: 36px 22px; }
}
/* Compact latest reviews refinement */
.client-theme .reviews-section {
    padding: 46px 0 38px !important;
    background: #080000;
}

.client-theme .reviews-shell {
    width: min(calc(100% - 194px), 1704px) !important;
}

.client-theme .reviews-shell h2 {
    margin: 0 0 32px !important;
    color: #fce690;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 34px !important;
    line-height: 1.1 !important;
    font-weight: 700;
    letter-spacing: 0;
}

.client-theme .reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 36px !important;
}

.client-theme .review-card {
    display: grid !important;
    grid-template-columns: 42% minmax(0, 1fr) !important;
    min-height: 260px !important;
    max-height: 292px !important;
    background: #2e100f !important;
    overflow: hidden !important;
}

.client-theme .review-image {
    position: relative;
    min-height: 260px !important;
    height: 292px !important;
    overflow: hidden;
}

.client-theme .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.client-theme .review-image span {
    left: 14px !important;
    bottom: 14px !important;
    padding: 6px 10px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.client-theme .review-image i {
    right: 16px !important;
    top: 16px !important;
    width: 18px !important;
    height: 18px !important;
    border-width: 3px !important;
}

.client-theme .review-copy {
    min-width: 0;
    padding: 24px 28px 20px !important;
    background: #2e100f !important;
    overflow: hidden;
}

.client-theme .review-title {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px !important;
    margin-bottom: 12px;
}

.client-theme .review-title h3 {
    margin: 0 !important;
    color: #fce690;
    font-size: 26px !important;
    line-height: 1.12 !important;
    font-weight: 700;
}

.client-theme .review-title em {
    max-width: 150px;
    color: rgba(252, 230, 144, 0.76) !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-style: italic;
    font-weight: 600;
    text-align: right;
}

.client-theme .review-by {
    margin: 0 0 16px !important;
    color: rgba(252, 230, 144, 0.76) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-style: italic;
    font-weight: 600;
}

.client-theme .review-stars {
    margin: 0 0 18px !important;
    color: #ffd275 !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: 700;
    white-space: nowrap;
}

.client-theme .review-stars strong {
    margin-left: 8px;
    font-size: 17px !important;
    vertical-align: middle;
}

.client-theme .review-copy p:not(.review-by):not(.review-stars) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 12px !important;
    color: #fce690 !important;
    font-size: 17px !important;
    line-height: 1.38 !important;
    font-weight: 500;
}

.client-theme .review-copy a {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .client-theme .reviews-shell {
        width: min(calc(100% - 60px), 1704px) !important;
    }

    .client-theme .reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .client-theme .reviews-section {
        padding: 34px 0 28px !important;
    }

    .client-theme .reviews-shell {
        width: min(calc(100% - 28px), 1704px) !important;
    }

    .client-theme .review-card {
        grid-template-columns: 38% minmax(0, 1fr) !important;
        min-height: 220px !important;
        max-height: 244px !important;
    }

    .client-theme .review-image {
        min-height: 220px !important;
        height: 244px !important;
    }

    .client-theme .review-copy {
        padding: 16px 14px !important;
    }

    .client-theme .review-title {
        grid-template-columns: 1fr;
        gap: 4px !important;
    }

    .client-theme .review-title h3 {
        font-size: 20px !important;
    }

    .client-theme .review-title em,
    .client-theme .review-by,
    .client-theme .review-copy a {
        font-size: 12px !important;
        text-align: left;
    }

    .client-theme .review-stars {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .client-theme .review-stars strong,
    .client-theme .review-copy p:not(.review-by):not(.review-stars) {
        font-size: 12px !important;
    }
}
/* Review read more / read less behavior */
.client-theme .review-card.is-expanded {
    max-height: none !important;
}

.client-theme .review-card.is-expanded .review-copy {
    overflow: visible;
}

.client-theme .review-card.is-expanded .review-text {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    overflow: visible !important;
}

.client-theme .review-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.client-theme .review-toggle:hover {
    color: #fff;
}

.client-theme .review-copy a {
    display: none;
}
/* Global uniform typography system - keep this as the final override */
.client-theme {
    --ui-font: Poppins, Arial, Helvetica, sans-serif;
    --ui-gold: #fce690;
    --ui-red: #970005;
    --ui-deep: #2e100f;
    --type-section-heading: 30px;
    --type-card-heading: 20px;
    --type-body: 18px;
    --type-small: 16px;
    --type-button: 20px;
    --type-nav: 20px;
    --type-note: 14px;
    --lh-heading: 1.2;
    --lh-body: 1.55;
    font-family: var(--ui-font) !important;
}

.client-theme h1,
.client-theme h2,
.client-theme h3,
.client-theme h4,
.client-theme p,
.client-theme a,
.client-theme button,
.client-theme input,
.client-theme select,
.client-theme textarea,
.client-theme span,
.client-theme em,
.client-theme strong {
    font-family: var(--ui-font) !important;
}

.client-theme .agency-title strong {
    font-size: var(--type-section-heading) !important;
    line-height: 36px !important;
    font-weight: 500 !important;
    letter-spacing: 7px !important;
}

.client-theme .popular-head h1,
.client-theme .featured-heading h2,
.client-theme .directory-heading h2,
.client-theme .combo-heading h2,
.client-theme .reviews-shell h2,
.client-theme .help-cta-shell h2,
.client-theme .enquiry-copy h2,
.client-theme .footer-column h2 {
    font-size: var(--type-section-heading) !important;
    line-height: var(--lh-heading) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: var(--ui-gold) !important;
}

.client-theme .popular-head h1,
.client-theme .featured-heading h2 {
    color: #790003 !important;
}

.client-theme .desktop-nav a,
.client-theme .gallery-tabs a,
.client-theme .contact-cluster a,
.client-theme .login-link {
    font-size: var(--type-nav) !important;
    line-height: 28px !important;
    font-weight: 700 !important;
}

.client-theme .profile-card-head h3,
.client-theme .directory-card-head h3,
.client-theme .combo-card-foot strong,
.client-theme .review-title h3 {
    font-size: var(--type-card-heading) !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

.client-theme .profile-card-head strong,
.client-theme .directory-card-head p,
.client-theme .combo-card-head strong,
.client-theme .profile-card-foot span:first-child,
.client-theme .directory-card-meta p,
.client-theme .review-copy p:not(.review-by):not(.review-stars),
.client-theme .help-cta-shell p,
.client-theme .enquiry-copy p:not(.eyebrow),
.client-theme .footer-brand p,
.client-theme .footer-column a {
    font-size: var(--type-body) !important;
    line-height: var(--lh-body) !important;
    font-weight: 500 !important;
}

.client-theme .profile-card-head span,
.client-theme .profile-card-foot span:last-child,
.client-theme .directory-card-meta span,
.client-theme .combo-card-foot span,
.client-theme .review-title em,
.client-theme .review-by,
.client-theme .review-stars strong,
.client-theme .review-toggle,
.client-theme .help-cta-shell em,
.client-theme .enquiry-form span {
    font-size: var(--type-small) !important;
    line-height: 1.35 !important;
}

.client-theme .availability-note,
.client-theme .photo-note,
.client-theme .combo-note {
    font-size: var(--type-small) !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
}

.client-theme .button,
.client-theme .client-search button,
.client-theme .find-disa-button,
.client-theme .help-cta-shell a,
.client-theme .enquiry-form button,
.client-theme .combo-heading a,
.client-theme .section-arrow,
.client-theme .slider-button {
    font-size: var(--type-button) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.client-theme .client-search input,
.client-theme .selector-row select,
.client-theme .enquiry-form input,
.client-theme .enquiry-form textarea {
    font-size: var(--type-body) !important;
    line-height: 1.4 !important;
}

.client-theme .help-cta-section {
    padding: 46px 0 58px !important;
}

.client-theme .help-cta-shell {
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) 260px !important;
    padding: 48px 60px !important;
}

.client-theme .help-cta-shell h2 {
    max-width: 720px;
    margin-bottom: 22px !important;
}

.client-theme .help-cta-shell p {
    max-width: 850px;
    margin-bottom: 16px !important;
}

.client-theme .help-cta-shell a {
    min-width: 230px !important;
    min-height: 70px !important;
    border-radius: 999px !important;
}

@media (max-width: 1199px) {
    .client-theme {
        --type-section-heading: 28px;
        --type-card-heading: 19px;
        --type-body: 17px;
        --type-small: 15px;
        --type-button: 18px;
        --type-nav: 18px;
    }

    .client-theme .help-cta-shell {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }
}

@media (max-width: 767px) {
    .client-theme {
        --type-section-heading: 24px;
        --type-card-heading: 17px;
        --type-body: 15px;
        --type-small: 13px;
        --type-button: 16px;
        --type-nav: 16px;
    }

    .client-theme .agency-title strong {
        font-size: 22px !important;
        line-height: 28px !important;
        letter-spacing: 4px !important;
    }

    .client-theme .help-cta-shell {
        padding: 32px 22px !important;
    }

    .client-theme .help-cta-shell a {
        min-width: 190px !important;
        min-height: 58px !important;
    }
}
/* Agency copy and how-to-begin section */
.client-theme .agency-copy-section,
.client-theme .begin-process-section {
    background: #080000;
    color: var(--ui-gold);
    font-family: var(--ui-font);
}

.client-theme .agency-copy-section {
    padding: 70px 0 44px;
}

.client-theme .begin-process-section {
    padding: 54px 0 86px;
}

.client-theme .agency-copy-shell,
.client-theme .begin-process-shell {
    width: min(calc(100% - 194px), 1704px);
    margin-inline: auto;
}

.client-theme .agency-copy-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid rgba(252, 230, 144, 0.62);
}

.client-theme .agency-copy-heading h2 {
    margin: 0;
    color: #fbc66d;
    font-size: var(--type-section-heading);
    line-height: var(--lh-heading);
    font-weight: 800;
    letter-spacing: 0;
}

.client-theme .agency-copy-heading span {
    width: 140px;
    height: 68px;
    flex: 0 0 auto;
    background: #fbc66d;
    opacity: 0.96;
    clip-path: polygon(8% 82%, 32% 68%, 42% 28%, 54% 12%, 62% 31%, 56% 62%, 80% 52%, 92% 32%, 96% 43%, 84% 68%, 100% 82%, 64% 82%, 58% 72%, 44% 82%);
}

.client-theme .agency-copy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 78px;
    padding-top: 34px;
}

.client-theme .agency-copy-col p,
.client-theme .agency-copy-col li {
    margin: 0 0 18px;
    color: var(--ui-gold);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .agency-copy-col h3 {
    margin: 8px 0 18px;
    color: var(--ui-gold);
    font-size: var(--type-card-heading);
    line-height: 1.25;
    font-weight: 800;
}

.client-theme .agency-copy-col ul {
    margin: 0;
    padding-left: 24px;
}

.client-theme .agency-copy-col li::marker {
    color: var(--ui-gold);
}

.client-theme .begin-process-shell {
    background: rgba(46, 16, 15, 0.42);
    padding: 76px 48px 68px;
}

.client-theme .begin-process-intro {
    max-width: 940px;
    margin: 0 auto 58px;
    text-align: center;
}

.client-theme .begin-process-intro h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: calc(var(--type-section-heading) + 12px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.client-theme .begin-process-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .process-step {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 488px;
    gap: 66px;
    align-items: center;
    min-height: 430px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.client-theme .process-number {
    color: #ffc21a;
    font-size: 88px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.client-theme .process-copy h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: var(--type-section-heading);
    line-height: var(--lh-heading);
    font-weight: 800;
    text-transform: uppercase;
}

.client-theme .process-copy p,
.client-theme .process-copy li,
.client-theme .process-copy blockquote {
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .process-copy p {
    margin: 0 0 18px;
}

.client-theme .process-copy .process-kicker {
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--type-small);
    margin-bottom: 22px;
}

.client-theme .process-callout {
    display: block;
    margin-top: 28px !important;
    padding: 17px 24px;
    border: 1px solid rgba(151, 0, 5, 0.9);
    border-radius: 7px;
    background: rgba(151, 0, 5, 0.18);
    color: #ffc21a !important;
    text-align: center;
    font-weight: 800 !important;
}

.client-theme .process-copy blockquote {
    margin: 26px 0 0;
    padding-left: 26px;
    border-left: 5px solid #ffc21a;
    font-style: italic;
}

.client-theme .process-copy h4 {
    margin: 24px 0 12px;
    color: #ffc21a;
    font-size: var(--type-card-heading);
    line-height: 1.3;
    font-weight: 800;
}

.client-theme .process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.client-theme .process-list li {
    margin-bottom: 8px;
}

.client-theme .process-list li::before {
    content: "";
    margin-right: 14px;
    color: #22d46f;
    font-weight: 800;
}

.client-theme .process-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 12px;
    padding: 0 28px;
    border-radius: 5px;
    background: #d71920;
    color: #fff;
    font-size: var(--type-button);
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
}

.client-theme .process-image-card,
.client-theme .process-collage {
    height: 488px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #160807;
    position: relative;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.client-theme .process-image-card img,
.client-theme .process-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-theme .process-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.56));
}

.client-theme .process-image-card span,
.client-theme .process-image-card small {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 1;
    text-align: center;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
}

.client-theme .process-image-card span {
    bottom: 58px;
    font-size: calc(var(--type-section-heading) + 4px);
    line-height: 1.1;
    font-weight: 800;
}

.client-theme .process-image-card small {
    bottom: 28px;
    color: rgba(252, 230, 144, 0.9);
    font-size: var(--type-small);
    line-height: 1.2;
    font-weight: 600;
}

.client-theme .split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.client-theme .split-card img {
    filter: brightness(0.78) saturate(0.9);
}

.client-theme .confirm-card img,
.client-theme .waiting-card img {
    filter: brightness(0.66) saturate(0.88);
}

.client-theme .process-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.client-theme .process-collage img {
    min-height: 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.client-theme .process-finale {
    max-width: 920px;
    margin: 70px auto 0;
    text-align: center;
}

.client-theme .process-finale-image {
    width: min(100%, 864px);
    height: 280px;
    margin: 0 auto 34px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.72;
}

.client-theme .process-finale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.58) saturate(0.75);
}

.client-theme .process-finale p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .process-finale p strong {
    color: #ffc21a;
}

@media (max-width: 1199px) {
    .client-theme .agency-copy-shell,
    .client-theme .begin-process-shell {
        width: min(calc(100% - 48px), 980px);
    }

    .client-theme .agency-copy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .client-theme .begin-process-shell {
        padding: 54px 30px;
    }

    .client-theme .process-step {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 34px;
    }

    .client-theme .process-image-card,
    .client-theme .process-collage {
        grid-column: 2;
        width: min(100%, 520px);
        height: 420px;
    }

    .client-theme .process-number {
        font-size: 72px;
    }
}

@media (max-width: 767px) {
    .client-theme .agency-copy-section,
    .client-theme .begin-process-section {
        padding: 38px 0;
    }

    .client-theme .agency-copy-shell,
    .client-theme .begin-process-shell {
        width: min(calc(100% - 28px), 520px);
    }

    .client-theme .agency-copy-heading span {
        display: none;
    }

    .client-theme .agency-copy-grid {
        padding-top: 24px;
    }

    .client-theme .begin-process-shell {
        padding: 38px 18px;
    }

    .client-theme .begin-process-intro h2 {
        font-size: calc(var(--type-section-heading) + 4px);
        letter-spacing: 2px;
    }

    .client-theme .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
        padding: 34px 0;
    }

    .client-theme .process-number {
        text-align: left;
        font-size: 58px;
    }

    .client-theme .process-image-card,
    .client-theme .process-collage {
        grid-column: auto;
        width: 100%;
        height: 340px;
    }

    .client-theme .process-image-card span {
        font-size: var(--type-section-heading);
    }

    .client-theme .process-finale-image {
        height: 220px;
    }
}
/* Process section exact reference typography */
.client-theme .begin-process-section .process-copy h3 {
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.6px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
}

.client-theme .begin-process-section .process-kicker {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
    color: #9ca3af !important;
    margin-bottom: 16px !important;
}

.client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
.client-theme .begin-process-section .process-copy blockquote {
    font-size: 16px !important;
    line-height: 26px !important;
    font-weight: 500 !important;
    color: #d1d5db !important;
    margin-bottom: 16px !important;
}

.client-theme .begin-process-section .process-callout {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    color: #fbbf24 !important;
    margin-top: 18px !important;
}

.client-theme .begin-process-section .process-copy h4 {
    font-size: 18px !important;
    line-height: 26px !important;
    font-weight: 700 !important;
    color: #fbbf24 !important;
}

.client-theme .begin-process-section .process-list li {
    font-size: 16px !important;
    line-height: 26px !important;
    color: #d1d5db !important;
}

@media (max-width: 767px) {
    .client-theme .begin-process-section .process-copy h3 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
    .client-theme .begin-process-section .process-copy blockquote,
    .client-theme .begin-process-section .process-list li {
        font-size: 15px !important;
        line-height: 24px !important;
    }
}
/* Process compact 60-40 reference layout */
.client-theme .begin-process-shell {
    padding: 52px 48px 58px !important;
}

.client-theme .begin-process-intro {
    margin-bottom: 34px !important;
}

.client-theme .process-step {
    grid-template-columns: 120px minmax(0, 0.6fr) minmax(320px, 0.4fr) !important;
    gap: 42px !important;
    min-height: 0 !important;
    padding: 34px 0 !important;
}

.client-theme .process-copy {
    max-width: 768px !important;
}

.client-theme .process-image-card,
.client-theme .process-collage {
    width: 100% !important;
    max-width: 488px !important;
    height: 330px !important;
    justify-self: end !important;
}

.client-theme .process-image-card span {
    bottom: 48px !important;
    font-size: 30px !important;
    line-height: 1.1 !important;
}

.client-theme .process-image-card small {
    bottom: 24px !important;
    font-size: 14px !important;
}

.client-theme .process-copy h3 {
    margin-bottom: 10px !important;
}

.client-theme .process-copy .process-kicker,
.client-theme .begin-process-section .process-kicker {
    margin-bottom: 14px !important;
}

.client-theme .process-copy p,
.client-theme .process-copy blockquote {
    margin-bottom: 14px !important;
}

.client-theme .process-callout {
    max-width: 100% !important;
    margin-top: 14px !important;
    padding: 14px 18px !important;
}

.client-theme .process-number {
    font-size: 76px !important;
}

.client-theme .process-finale {
    margin-top: 46px !important;
}

.client-theme .process-finale-image {
    height: 230px !important;
}

@media (max-width: 1199px) {
    .client-theme .process-step {
        grid-template-columns: 86px minmax(0, 1fr) !important;
        gap: 28px !important;
        padding: 30px 0 !important;
    }

    .client-theme .process-image-card,
    .client-theme .process-collage {
        grid-column: 2 !important;
        justify-self: start !important;
        max-width: 480px !important;
        height: 310px !important;
    }
}

@media (max-width: 767px) {
    .client-theme .begin-process-shell {
        padding: 30px 16px 36px !important;
    }

    .client-theme .process-step {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 28px 0 !important;
    }

    .client-theme .process-image-card,
    .client-theme .process-collage {
        grid-column: auto !important;
        max-width: 100% !important;
        height: 280px !important;
    }

    .client-theme .process-number {
        font-size: 54px !important;
    }
}
/* Trust, surprise and other categories sections */
.client-theme .trust-section,
.client-theme .surprise-section,
.client-theme .other-categories-section {
    background: #080000;
    font-family: var(--ui-font);
}

.client-theme .trust-shell,
.client-theme .surprise-shell,
.client-theme .other-categories-shell {
    width: min(calc(100% - 194px), 1704px);
    margin-inline: auto;
}

.client-theme .trust-section {
    padding: 78px 0 62px;
}

.client-theme .trust-shell {
    background: rgba(46, 16, 15, 0.36);
    padding: 74px 48px 42px;
}

.client-theme .trust-intro {
    max-width: 1180px;
    margin: 0 auto 54px;
    text-align: center;
}

.client-theme .trust-intro h2 {
    margin: 0 auto 22px;
    max-width: 1100px;
    color: var(--ui-gold);
    font-size: calc(var(--type-section-heading) + 8px);
    line-height: 1.2;
    font-weight: 800;
}

.client-theme .trust-intro span {
    display: block;
    width: 144px;
    height: 6px;
    margin: 0 auto 30px;
    background: #ffc21a;
}

.client-theme .trust-intro p {
    margin: 0 auto;
    max-width: 980px;
    color: rgba(255, 255, 255, 0.74);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .trust-list {
    display: grid;
    gap: 42px;
}

.client-theme .trust-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.client-theme .trust-icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
    color: #fff;
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.08);
}

.client-theme .trust-red .trust-icon { color: #ff8b9a; background: rgba(151, 0, 5, 0.36); }
.client-theme .trust-amber .trust-icon { color: #fbc66d; background: rgba(251, 191, 36, 0.22); }
.client-theme .trust-green .trust-icon { color: #7ef0ae; background: rgba(34, 197, 94, 0.2); }
.client-theme .trust-blue .trust-icon { color: #9dbbff; background: rgba(37, 99, 235, 0.26); }
.client-theme .trust-purple .trust-icon { color: #e3a1ff; background: rgba(168, 85, 247, 0.25); }

.client-theme .trust-item h3 {
    margin: 0 0 12px;
    color: var(--ui-gold);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.client-theme .trust-item p {
    margin: 0;
    color: rgba(209, 213, 219, 0.86);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .surprise-section {
    padding: 40px 0 78px;
}

.client-theme .surprise-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
    gap: 70px;
    align-items: center;
    min-height: 560px;
    padding: 70px 48px;
    border-radius: 8px;
    background: #100202;
}

.client-theme .surprise-copy h2 {
    margin: 0 0 28px;
    color: var(--ui-gold);
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.client-theme .surprise-copy h2 span {
    color: #ff7077;
}

.client-theme .surprise-copy p {
    max-width: 700px;
    margin: 0 0 42px;
    color: rgba(255, 255, 255, 0.86);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    font-weight: 500;
}

.client-theme .surprise-copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 72px;
    border-radius: 7px;
    background: #f6a400;
    color: #070000;
    font-size: var(--type-button);
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
}

.client-theme .surprise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.client-theme .surprise-card {
    min-height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: transform 180ms ease, filter 180ms ease;
}

.client-theme .surprise-card:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.client-theme .surprise-card span {
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
}

.client-theme .surprise-card strong {
    color: inherit;
    font-size: var(--type-card-heading);
    line-height: 1.25;
    font-weight: 800;
}

.client-theme .card-blue { background: #2563eb; }
.client-theme .card-pink { background: #db2777; }
.client-theme .card-red { background: #dc2626; }
.client-theme .card-yellow { background: #eab308; color: #080000; }
.client-theme .card-indigo { background: #1e40af; }
.client-theme .card-cyan { background: #0284c7; }
.client-theme .card-teal { background: #0f9f90; }
.client-theme .card-rose { background: #e11d48; }
.client-theme .card-green { background: #16a34a; }

.client-theme .other-categories-section {
    padding: 0 0 86px;
}

.client-theme .other-categories-shell {
    padding: 84px 48px 76px;
    background: var(--ui-red);
}

.client-theme .other-categories-title {
    margin-bottom: 62px;
    text-align: center;
}

.client-theme .other-categories-title h2 {
    margin: 0;
    color: var(--ui-gold);
    font-size: calc(var(--type-section-heading) + 12px);
    line-height: 1.18;
    font-weight: 800;
}

.client-theme .other-categories-title p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: calc(var(--type-section-heading) + 4px);
    line-height: 1.2;
    font-weight: 400;
}

.client-theme .category-mosaic {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr;
    grid-auto-rows: 188px;
    gap: 24px;
}

.client-theme .category-tile {
    position: relative;
    min-height: 188px;
    border-radius: 8px;
    overflow: hidden;
    background: #130303;
    text-decoration: none;
}

.client-theme .category-large {
    grid-row: span 2;
}

.client-theme .category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.56) saturate(0.92);
    transition: transform 220ms ease, filter 220ms ease;
}

.client-theme .category-tile:hover img {
    transform: scale(1.04);
    filter: brightness(0.72) saturate(1.04);
}

.client-theme .category-tile span {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #fff;
    font-size: var(--type-card-heading);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.86);
}

.client-theme .category-large span {
    font-size: calc(var(--type-section-heading) + 2px);
}

@media (max-width: 1199px) {
    .client-theme .trust-shell,
    .client-theme .surprise-shell,
    .client-theme .other-categories-shell {
        width: min(calc(100% - 48px), 980px);
    }

    .client-theme .surprise-shell {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .client-theme .category-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .client-theme .trust-section,
    .client-theme .surprise-section,
    .client-theme .other-categories-section {
        padding: 36px 0;
    }

    .client-theme .trust-shell,
    .client-theme .surprise-shell,
    .client-theme .other-categories-shell {
        width: min(calc(100% - 28px), 520px);
        padding: 34px 18px;
    }

    .client-theme .trust-intro h2,
    .client-theme .other-categories-title h2 {
        font-size: calc(var(--type-section-heading) + 2px);
    }

    .client-theme .trust-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 20px;
    }

    .client-theme .trust-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .client-theme .trust-item h3 {
        font-size: 20px;
    }

    .client-theme .surprise-copy h2 {
        font-size: 34px;
    }

    .client-theme .surprise-copy a {
        min-width: 100%;
        min-height: 58px;
    }

    .client-theme .surprise-grid,
    .client-theme .category-mosaic {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .client-theme .surprise-card {
        min-height: 138px;
    }

    .client-theme .category-large {
        grid-row: span 1;
    }
}
/* Trust and category exact reference typography */
.client-theme .trust-section .trust-intro h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    font-weight: 700 !important;
    color: #fde68a !important;
    letter-spacing: 0 !important;
    margin: 40px auto 16px !important;
}

.client-theme .trust-section .trust-intro p {
    font-size: 18px !important;
    line-height: 32px !important;
    font-weight: 500 !important;
    color: #d1d5db !important;
}

.client-theme .trust-section .trust-item h3 {
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 600 !important;
    color: #fde68a !important;
    margin: 0 0 8px !important;
}

.client-theme .trust-section .trust-item p {
    font-size: 18px !important;
    line-height: 32px !important;
    font-weight: 500 !important;
    color: #d1d5db !important;
}

.client-theme .surprise-section .surprise-copy h2 {
    font-size: 36px !important;
    line-height: 40px !important;
    font-weight: 700 !important;
    color: #fbbf24 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin: 0 0 8px !important;
}

.client-theme .surprise-section .surprise-copy h2 span {
    color: #f87171 !important;
}

.client-theme .surprise-section .surprise-copy p {
    font-size: 18px !important;
    line-height: 32px !important;
    font-weight: 500 !important;
    color: #f3f4f6 !important;
}

.client-theme .surprise-section .surprise-copy a {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
}

.client-theme .surprise-section .surprise-card strong {
    font-size: 18px !important;
    line-height: 26px !important;
    font-weight: 700 !important;
}

.client-theme .other-categories-section .other-categories-title h2 {
    font-size: 36px !important;
    line-height: 44px !important;
    font-weight: 700 !important;
    color: #fde68a !important;
}

.client-theme .other-categories-section .other-categories-title p {
    font-size: 34px !important;
    line-height: 40px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

@media (max-width: 767px) {
    .client-theme .trust-section .trust-intro h2,
    .client-theme .surprise-section .surprise-copy h2,
    .client-theme .other-categories-section .other-categories-title h2 {
        font-size: 26px !important;
        line-height: 32px !important;
    }

    .client-theme .trust-section .trust-intro p,
    .client-theme .trust-section .trust-item p,
    .client-theme .surprise-section .surprise-copy p {
        font-size: 15px !important;
        line-height: 25px !important;
    }

    .client-theme .trust-section .trust-item h3 {
        font-size: 18px !important;
        line-height: 25px !important;
    }
}
/* Final process section spacing and clean text override */
.client-theme .begin-process-section {
    padding: 86px 0 100px !important;
}

.client-theme .begin-process-shell {
    width: min(calc(100% - 194px), 1704px) !important;
    padding: 72px 48px 64px !important;
    background: rgba(12, 1, 1, 0.58) !important;
}

.client-theme .begin-process-intro {
    max-width: 980px !important;
    margin: 0 auto 76px !important;
}

.client-theme .process-step {
    grid-template-columns: 120px minmax(0, 0.6fr) minmax(360px, 0.4fr) !important;
    column-gap: 72px !important;
    row-gap: 28px !important;
    align-items: center !important;
    padding: 72px 0 !important;
    min-height: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.client-theme .process-step:first-of-type {
    padding-top: 34px !important;
}

.client-theme .process-number {
    font-size: 92px !important;
    line-height: 1 !important;
    color: #fbbf24 !important;
    font-weight: 800 !important;
}

.client-theme .process-copy {
    max-width: 820px !important;
}

.client-theme .begin-process-section .process-copy h3 {
    margin: 0 0 14px !important;
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

.client-theme .begin-process-section .process-kicker {
    margin: 0 0 28px !important;
    font-size: 14px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
    color: #9ca3af !important;
}

.client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
.client-theme .begin-process-section .process-copy blockquote {
    margin: 0 0 26px !important;
    font-size: 16px !important;
    line-height: 29px !important;
    font-weight: 500 !important;
    color: #d1d5db !important;
}

.client-theme .begin-process-section .process-copy h4 {
    margin: 18px 0 16px !important;
    font-size: 18px !important;
    line-height: 26px !important;
    font-weight: 700 !important;
    color: #fbbf24 !important;
}

.client-theme .begin-process-section .process-list {
    display: grid !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.client-theme .begin-process-section .process-list li {
    position: relative !important;
    margin: 0 !important;
    padding-left: 36px !important;
    font-size: 16px !important;
    line-height: 26px !important;
    font-weight: 500 !important;
    color: #d1d5db !important;
}

.client-theme .begin-process-section .process-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 2px !important;
    top: 7px !important;
    width: 13px !important;
    height: 7px !important;
    border-left: 3px solid #22c55e !important;
    border-bottom: 3px solid #22c55e !important;
    transform: rotate(-45deg) !important;
    margin: 0 !important;
}

.client-theme .begin-process-section .process-callout {
    max-width: 100% !important;
    margin-top: 30px !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    color: #fbbf24 !important;
}

.client-theme .begin-process-section .process-image-card,
.client-theme .begin-process-section .process-collage {
    width: 100% !important;
    max-width: 488px !important;
    height: 330px !important;
    justify-self: start !important;
}

.client-theme .begin-process-section .process-image-card span {
    bottom: 46px !important;
    font-size: 32px !important;
    line-height: 36px !important;
    font-weight: 800 !important;
}

.client-theme .begin-process-section .process-image-card small {
    bottom: 22px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
    color: #fde68a !important;
}

@media (max-width: 1199px) {
    .client-theme .begin-process-section {
        padding: 58px 0 72px !important;
    }

    .client-theme .begin-process-shell {
        width: min(calc(100% - 48px), 980px) !important;
        padding: 48px 30px !important;
    }

    .client-theme .process-step {
        grid-template-columns: 86px minmax(0, 1fr) !important;
        column-gap: 34px !important;
        padding: 48px 0 !important;
    }

    .client-theme .begin-process-section .process-image-card,
    .client-theme .begin-process-section .process-collage {
        grid-column: 2 !important;
        max-width: 488px !important;
        height: 310px !important;
    }
}

@media (max-width: 767px) {
    .client-theme .begin-process-section {
        padding: 38px 0 52px !important;
    }

    .client-theme .begin-process-shell {
        width: min(calc(100% - 28px), 520px) !important;
        padding: 34px 18px !important;
    }

    .client-theme .begin-process-intro {
        margin-bottom: 36px !important;
    }

    .client-theme .process-step {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 38px 0 !important;
    }

    .client-theme .process-number {
        text-align: left !important;
        font-size: 64px !important;
    }

    .client-theme .begin-process-section .process-image-card,
    .client-theme .begin-process-section .process-collage {
        grid-column: auto !important;
        max-width: 100% !important;
        height: 300px !important;
    }
}
/* Process section reference lock: direct step view, centered compact group */
.client-theme .begin-process-section {
    padding: 0 0 82px !important;
    background: #080000 !important;
}

.client-theme .begin-process-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 48px !important;
    background: #080000 !important;
}

.client-theme .begin-process-intro {
    display: none !important;
}

.client-theme .process-step {
    width: min(100%, 1360px) !important;
    margin: 0 auto !important;
    grid-template-columns: 160px 340px 540px !important;
    column-gap: 84px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 38px 0 84px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.client-theme .process-step:first-of-type {
    min-height: calc(100vh - 182px) !important;
    padding-top: 34px !important;
}

.client-theme .process-number {
    align-self: center !important;
    justify-self: center !important;
    font-size: 112px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    color: #fbbf24 !important;
}

.client-theme .process-copy {
    width: 340px !important;
    max-width: 340px !important;
    justify-self: start !important;
}

.client-theme .begin-process-section .process-copy h3 {
    max-width: 260px !important;
    margin: 0 0 30px !important;
    font-size: 36px !important;
    line-height: 45px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

.client-theme .begin-process-section .process-kicker {
    max-width: 250px !important;
    margin: 0 0 50px !important;
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 500 !important;
    color: #9ca3af !important;
}

.client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
.client-theme .begin-process-section .process-copy blockquote {
    max-width: 330px !important;
    margin: 0 0 48px !important;
    font-size: 24px !important;
    line-height: 43px !important;
    font-weight: 600 !important;
    color: #f3f4f6 !important;
}

.client-theme .begin-process-section .process-callout {
    width: 316px !important;
    max-width: 316px !important;
    min-height: 104px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 18px 24px !important;
    border: 1px solid #970005 !important;
    border-radius: 8px !important;
    background: rgba(151, 0, 5, 0.18) !important;
    font-size: 22px !important;
    line-height: 31px !important;
    font-weight: 800 !important;
    color: #fbbf24 !important;
    text-align: center !important;
}

.client-theme .begin-process-section .process-copy h4 {
    margin: 0 0 22px !important;
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 800 !important;
    color: #fbbf24 !important;
}

.client-theme .begin-process-section .process-list {
    display: grid !important;
    gap: 12px !important;
}

.client-theme .begin-process-section .process-list li {
    padding-left: 36px !important;
    font-size: 22px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    color: #f3f4f6 !important;
}

.client-theme .begin-process-section .process-list li::before {
    top: 10px !important;
}

.client-theme .begin-process-section .process-image-card,
.client-theme .begin-process-section .process-collage {
    width: 540px !important;
    max-width: 540px !important;
    height: 496px !important;
    justify-self: start !important;
    border-radius: 8px !important;
}

.client-theme .begin-process-section .process-image-card span {
    bottom: 74px !important;
    font-size: 46px !important;
    line-height: 52px !important;
    font-weight: 800 !important;
}

.client-theme .begin-process-section .process-image-card small {
    bottom: 42px !important;
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 800 !important;
    color: #fde68a !important;
}

@media (max-width: 1199px) {
    .client-theme .process-step,
    .client-theme .process-step:first-of-type {
        width: min(calc(100% - 48px), 980px) !important;
        min-height: 0 !important;
        grid-template-columns: 86px minmax(0, 1fr) !important;
        column-gap: 30px !important;
        padding: 48px 0 !important;
        justify-content: start !important;
    }

    .client-theme .process-copy,
    .client-theme .begin-process-section .process-copy h3,
    .client-theme .begin-process-section .process-kicker,
    .client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
    .client-theme .begin-process-section .process-copy blockquote {
        width: auto !important;
        max-width: 100% !important;
    }

    .client-theme .begin-process-section .process-image-card,
    .client-theme .begin-process-section .process-collage {
        grid-column: 2 !important;
        width: 100% !important;
        max-width: 540px !important;
        height: 390px !important;
    }
}

@media (max-width: 767px) {
    .client-theme .process-step,
    .client-theme .process-step:first-of-type {
        width: min(calc(100% - 28px), 520px) !important;
        grid-template-columns: 1fr !important;
        padding: 34px 0 !important;
    }

    .client-theme .process-number {
        justify-self: start !important;
        font-size: 70px !important;
    }

    .client-theme .begin-process-section .process-copy h3 {
        font-size: 28px !important;
        line-height: 36px !important;
        margin-bottom: 18px !important;
    }

    .client-theme .begin-process-section .process-kicker,
    .client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
    .client-theme .begin-process-section .process-copy blockquote,
    .client-theme .begin-process-section .process-list li {
        font-size: 17px !important;
        line-height: 28px !important;
        margin-bottom: 20px !important;
    }

    .client-theme .begin-process-section .process-callout {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 82px !important;
        font-size: 18px !important;
        line-height: 26px !important;
    }

    .client-theme .begin-process-section .process-image-card,
    .client-theme .begin-process-section .process-collage {
        grid-column: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 330px !important;
    }
}
/* Booking process exact reference container/layout restore */
.client-theme .begin-process-section {
    padding: 96px 0 !important;
    margin-bottom: 32px !important;
    background: rgba(23, 23, 23, 0.20) !important;
    color: #d1d5db !important;
}

.client-theme .begin-process-shell {
    display: block !important;
    width: min(calc(100% - 64px), 1136px) !important;
    max-width: 1136px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    background: transparent !important;
}

.client-theme .begin-process-intro {
    display: block !important;
    max-width: 100% !important;
    margin: 0 auto 80px !important;
    text-align: center !important;
}

.client-theme .begin-process-intro h2 {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-size: 48px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}

.client-theme .begin-process-intro p {
    max-width: 768px !important;
    margin: 0 auto !important;
    color: #9ca3af !important;
    font-size: 18px !important;
    line-height: 29px !important;
    font-weight: 500 !important;
    text-align: center !important;
}

.client-theme .process-step,
.client-theme .process-step:first-of-type {
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 0 80px !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    column-gap: 48px !important;
    row-gap: 24px !important;
    align-items: center !important;
    justify-content: initial !important;
    border-bottom: 0 !important;
}

.client-theme .process-step + .process-step {
    padding-top: 80px !important;
}

.client-theme .process-step:last-of-type {
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
}

.client-theme .process-number {
    grid-column: 1 / span 2 !important;
    align-self: center !important;
    justify-self: center !important;
    width: auto !important;
    color: #fbbf24 !important;
    font-size: 72px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.client-theme .process-copy {
    grid-column: 3 / span 6 !important;
    width: auto !important;
    max-width: none !important;
    justify-self: stretch !important;
}

.client-theme .begin-process-section .process-copy h3 {
    max-width: none !important;
    margin: 0 0 12px !important;
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.client-theme .begin-process-section .process-kicker {
    max-width: none !important;
    margin: 0 0 16px !important;
    color: #9ca3af !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
}

.client-theme .begin-process-section .process-copy p:not(.process-kicker):not(.process-callout),
.client-theme .begin-process-section .process-copy blockquote {
    max-width: none !important;
    margin: 0 0 16px !important;
    color: #d1d5db !important;
    font-size: 16px !important;
    line-height: 26px !important;
    font-weight: 500 !important;
}

.client-theme .begin-process-section .process-callout {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 16px 0 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(185, 28, 28, .5) !important;
    border-radius: 6px !important;
    background: rgba(185, 28, 28, .20) !important;
    color: #fbbf24 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.client-theme .begin-process-section .process-image-card,
.client-theme .begin-process-section .process-collage {
    grid-column: 9 / span 4 !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 330px !important;
    justify-self: center !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
}

.client-theme .begin-process-section .process-image-card span {
    bottom: 44px !important;
    font-size: 36px !important;
    line-height: 40px !important;
    font-weight: 800 !important;
}

.client-theme .begin-process-section .process-image-card small {
    bottom: 24px !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    color: #fde68a !important;
}

.client-theme .process-finale {
    max-width: 920px !important;
    margin: 64px auto 0 !important;
}

@media (max-width: 1199px) {
  .client-theme .begin-process-shell { width: min(calc(100% - 48px), 980px) !important; padding: 0 24px !important; }
  .client-theme .process-step, .client-theme .process-step:first-of-type {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    column-gap: 30px !important;
    padding-bottom: 56px !important;
  }
  .client-theme .process-step + .process-step { padding-top: 56px !important; }
  .client-theme .process-number { grid-column: 1 !important; font-size: 64px !important; }
  .client-theme .process-copy { grid-column: 2 !important; }
  .client-theme .begin-process-section .process-image-card,
  .client-theme .begin-process-section .process-collage {
    grid-column: 2 !important;
    max-width: 400px !important;
    height: 320px !important;
    justify-self: start !important;
    margin-top: 24px !important;
  }
}

/* Final reference desktop first-fold lock */
@media (min-width: 1201px) {
  .client-theme .site-header {
    background:
      linear-gradient(rgba(45, 0, 0, 0.18), rgba(45, 0, 0, 0.18)),
      #3b0605 !important;
    background-size: auto, auto !important;
    padding: 0 !important;
  }

  .client-theme .top-contact-strip {
    height: 300px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .client-theme .top-strip-shell {
    position: relative !important;
    display: block !important;
    width: min(calc(100% - 170px), 1728px) !important;
    height: 300px !important;
    min-height: 300px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .client-theme .site-logo {
    position: absolute !important;
    left: 0 !important;
    top: 88px !important;
    width: 310px !important;
    height: 145px !important;
    display: flex !important;
    align-items: center !important;
  }

  .client-theme .site-logo img {
    width: 300px !important;
    max-width: 300px !important;
    height: auto !important;
  }

  .client-theme .text-logo {
    display: block !important;
    color: #ffe681 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 104px !important;
    line-height: 0.9 !important;
    font-weight: 400 !important;
    letter-spacing: -5px !important;
  }

  .client-theme .text-logo {
    display: block !important;
    color: #ffe681 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 104px !important;
    line-height: 0.9 !important;
    font-weight: 400 !important;
    letter-spacing: -5px !important;
  }

  .client-theme .agency-title {
    position: absolute !important;
    left: 410px !important;
    top: 54px !important;
    width: 900px !important;
    text-align: center !important;
  }

  .client-theme .agency-title strong {
    display: block !important;
    max-width: none !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 30px !important;
    line-height: 36px !important;
    font-weight: 500 !important;
    letter-spacing: 7px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .client-theme .agency-title span {
    display: block !important;
    margin-top: 2px !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
  }

  .client-theme .contact-cluster {
    position: absolute !important;
    left: 460px !important;
    top: 168px !important;
    width: 790px !important;
    display: grid !important;
    grid-template-columns: 330px 64px 340px !important;
    column-gap: 24px !important;
    row-gap: 22px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .client-theme .contact-cluster a {
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(171, 20, 14, 0.75) !important;
    border-radius: 8px !important;
    background: rgba(48, 0, 0, 0.45) !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 500 !important;
    letter-spacing: 7px !important;
    white-space: nowrap !important;
  }

  .client-theme .contact-cluster a:first-child {
    grid-column: 1 !important;
    order: 1 !important;
  }

  .client-theme .contact-cluster a:nth-child(2) {
    grid-column: 3 !important;
    order: 3 !important;
  }

  .client-theme .contact-cluster::after {
    grid-column: 2 !important;
    grid-row: 1 !important;
    order: 2 !important;
    width: 46px !important;
    height: 46px !important;
    justify-self: center !important;
    border-radius: 50% !important;
    background: #209fe2 !important;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.08) !important;
  }

  .client-theme .contact-cluster span {
    grid-column: 1 / -1 !important;
    order: 4 !important;
    margin: 0 !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    text-align: center !important;
  }

  .client-theme .diva-link {
    position: absolute !important;
    right: 24px !important;
    top: 96px !important;
    width: 266px !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .client-theme .diva-link img {
    display: block !important;
    width: 266px !important;
    height: auto !important;
  }

  .client-theme .login-link {
    position: absolute !important;
    right: 120px !important;
    top: 202px !important;
    margin: 0 !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 170px), 1728px) !important;
    min-height: 78px !important;
    height: 78px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
    border-radius: 5px !important;
    background: #9b0004 !important;
    overflow: visible !important;
    box-shadow: none !important;
  }

  .client-theme .desktop-nav {
    display: flex !important;
    width: 100% !important;
    height: 78px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .client-theme .desktop-nav a {
    min-height: 78px !important;
    height: 78px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    border-radius: 0 !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .client-theme .desktop-nav a:first-child,
  .client-theme .desktop-nav a:hover {
    background: transparent !important;
    color: #fff08a !important;
  }

  .client-intro-shell {
    width: min(calc(100% - 170px), 1728px) !important;
    padding-top: 0 !important;
  }

  .popular-head {
    padding-top: 4px !important;
    margin-bottom: 24px !important;
  }

  .client-search {
    margin-top: 34px !important;
  }

  .client-theme .featured-section {
    padding-top: 38px !important;
  }
}

/* Final header repair: overrides the absolute first-fold lock above. */
@media (min-width: 1201px) {
  .client-theme .site-header {
    overflow: hidden !important;
  }

  .client-theme .top-contact-strip {
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 0 14px !important;
  }

  .client-theme .top-strip-shell {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 230px minmax(300px, 430px) minmax(420px, 1fr) 230px 70px !important;
    grid-template-areas: "logo title contact diva login" !important;
    align-items: center !important;
    column-gap: 18px !important;
    width: min(calc(100% - 96px), 1800px) !important;
    height: auto !important;
    min-height: 112px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .client-theme .site-logo,
  .client-theme .agency-title,
  .client-theme .diva-link,
  .client-theme .login-link {
    position: static !important;
    width: auto !important;
    height: auto !important;
    inset: auto !important;
    margin: 0 !important;
  }

  .client-theme .site-logo {
    grid-area: logo !important;
  }

  .client-theme .text-logo {
    font-size: clamp(58px, 5vw, 84px) !important;
    letter-spacing: -2px !important;
  }

  .client-theme .agency-title {
    grid-area: title !important;
    align-self: center !important;
  }

  .client-theme .agency-title strong {
    font-size: clamp(23px, 2vw, 38px) !important;
    letter-spacing: 0.16em !important;
    white-space: normal !important;
  }

  .client-theme .contact-cluster {
    position: static !important;
    grid-area: contact !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .client-theme .contact-cluster a {
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 8px 14px !important;
    overflow: hidden !important;
    font-size: clamp(14px, 1.15vw, 22px) !important;
    letter-spacing: 0.12em !important;
    text-overflow: ellipsis !important;
  }

  .client-theme .contact-cluster::after {
    width: 54px !important;
    height: 54px !important;
  }

  .client-theme .contact-cluster span {
    font-size: 16px !important;
  }

  .client-theme .diva-link {
    grid-area: diva !important;
    width: 100% !important;
    max-width: 230px !important;
    justify-self: center !important;
  }

  .client-theme .diva-link img {
    width: 100% !important;
    max-width: 230px !important;
  }

  .client-theme .login-link {
    grid-area: login !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 96px), 1800px) !important;
    height: auto !important;
    min-height: 62px !important;
    padding: 0 24px !important;
    overflow: hidden !important;
  }

  .client-theme .desktop-nav {
    height: auto !important;
    min-height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2vw, 42px) !important;
  }

  .client-theme .desktop-nav a {
    height: auto !important;
    min-height: 62px !important;
    padding: 0 !important;
    font-size: clamp(14px, 1vw, 18px) !important;
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 190px minmax(270px, 370px) minmax(360px, 1fr) 190px 62px !important;
    column-gap: 12px !important;
  }

  .client-theme .contact-cluster a {
    font-size: 15px !important;
    letter-spacing: 0.08em !important;
  }

  .client-theme .desktop-nav {
    gap: 20px !important;
  }

  .client-theme .diva-link,
  .client-theme .diva-link img {
    max-width: 190px !important;
  }
}

/* Supplied header/logo override. Keep this at EOF. */
.client-theme .site-header {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 14, 8, 0.35), transparent 45%),
    linear-gradient(180deg, #500805 0%, #360605 100%) !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
}

.client-theme .top-contact-strip {
  padding: 38px 0 20px !important;
}

.client-theme .top-strip-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 210px !important;
  display: grid !important;
  grid-template-columns: 260px 1fr 240px !important;
  grid-template-areas:
    "logo title diva"
    "logo contact login" !important;
  gap: 25px !important;
  align-items: center !important;
  margin: 0 auto !important;
}

.client-theme .site-logo {
  grid-area: logo !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
}

.client-theme .site-logo img {
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
}

.client-theme .agency-title {
  grid-area: title !important;
  align-self: end !important;
  text-align: center !important;
}

.client-theme .agency-title strong {
  color: #ffe681 !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
  font-size: 35px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 10px !important;
  text-transform: uppercase !important;
}

.client-theme .agency-title span,
.client-theme .contact-cluster span {
  color: #ffe681 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

.client-theme .contact-cluster {
  grid-area: contact !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
}

.client-theme .contact-cluster::after {
  content: none !important;
  display: none !important;
}

.client-theme .contact-cluster a {
  min-height: 48px !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 11px 15px !important;
  border: 1px solid rgba(198, 26, 20, 0.75) !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: #ffe681 !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.client-theme .contact-cluster a:first-child {
  order: 1 !important;
}

.client-theme .contact-cluster .telegram-link {
  order: 2 !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #209ad6 !important;
  color: #ffffff !important;
  font-size: 22px !important;
}

.client-theme .contact-cluster a:nth-child(3) {
  order: 3 !important;
}

.client-theme .contact-cluster span {
  flex: 0 0 100% !important;
  order: 4 !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
}

.client-theme .diva-link {
  grid-area: diva !important;
  justify-self: center !important;
  align-self: center !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 9px 18px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #ffe681 !important;
  color: #900000 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.client-theme .login-link {
  grid-area: login !important;
  justify-self: center !important;
  align-self: start !important;
  margin-top: 18px !important;
  color: #ffe681 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.client-theme .nav-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 67px !important;
  display: block !important;
  padding: 0 !important;
  border-radius: 7px !important;
  overflow: hidden !important;
  background: #900005 !important;
}

.client-theme .nav-shell .brand,
.client-theme .header-actions {
  display: none !important;
}

.client-theme .desktop-nav {
  width: 100% !important;
  min-height: 67px !important;
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #900005 !important;
}

.client-theme .desktop-nav a {
  min-height: 67px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px !important;
  color: #ffe681 !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.client-theme .desktop-nav a:hover {
  background: #a90008 !important;
}

@media (max-width: 1100px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 180px 1fr 160px !important;
  }

  .client-theme .site-logo img {
    width: 180px !important;
    max-width: 180px !important;
  }

  .client-theme .agency-title strong {
    font-size: 25px !important;
    letter-spacing: 6px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .client-theme .top-contact-strip {
    padding: 25px 0 20px !important;
  }

  .client-theme .top-strip-shell {
    width: min(calc(100% - 30px), 1480px) !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .client-theme .site-logo {
    justify-content: center !important;
  }

  .client-theme .site-logo img {
    width: 230px !important;
    max-width: 100% !important;
  }

  .client-theme .agency-title {
    align-self: center !important;
  }

  .client-theme .agency-title strong {
    font-size: 21px !important;
    letter-spacing: 3px !important;
  }

  .client-theme .contact-cluster {
    width: 100% !important;
  }

  .client-theme .contact-cluster a:not(.telegram-link) {
    width: 100% !important;
    font-size: 16px !important;
  }

  .client-theme .login-link {
    align-self: center !important;
    margin-top: -5px !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 30px), 1480px) !important;
    margin-top: 5px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .client-theme .desktop-nav a {
    min-height: 55px !important;
    font-size: 13px !important;
  }
}

/* Header preview lock: uses the supplied High Street Girls logo and reference layout. */
.client-theme .site-header {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 14, 8, 0.35), transparent 45%),
    linear-gradient(180deg, #500805 0%, #360605 100%) !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
}

.client-theme .top-contact-strip {
  padding: 38px 0 20px !important;
}

.client-theme .top-strip-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 210px !important;
  display: grid !important;
  grid-template-columns: 260px 1fr 240px !important;
  grid-template-areas:
    "logo title diva"
    "logo contact login" !important;
  gap: 25px !important;
  align-items: center !important;
  margin: 0 auto !important;
}

.client-theme .site-logo {
  grid-area: logo !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
}

.client-theme .site-logo img {
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
}

.client-theme .agency-title {
  grid-area: title !important;
  align-self: end !important;
  text-align: center !important;
}

.client-theme .agency-title strong {
  color: #ffe681 !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
  font-size: 35px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 10px !important;
  text-transform: uppercase !important;
}

.client-theme .agency-title span,
.client-theme .contact-cluster span {
  color: #ffe681 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

.client-theme .agency-title span {
  margin-top: 6px !important;
  font-size: 18px !important;
}

.client-theme .contact-cluster {
  grid-area: contact !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
}

.client-theme .contact-cluster::after {
  content: none !important;
  display: none !important;
}

.client-theme .contact-cluster a {
  min-width: 0 !important;
  min-height: 48px !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 11px 15px !important;
  border: 1px solid rgba(198, 26, 20, 0.75) !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: #ffe681 !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.client-theme .contact-cluster a:first-child {
  order: 1 !important;
}

.client-theme .contact-cluster .telegram-link {
  order: 2 !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #209ad6 !important;
  color: #ffffff !important;
  font-size: 22px !important;
}

.client-theme .contact-cluster a:nth-child(3) {
  order: 3 !important;
}

.client-theme .contact-cluster span {
  flex: 0 0 100% !important;
  order: 4 !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.client-theme .diva-link {
  grid-area: diva !important;
  justify-self: center !important;
  align-self: center !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 9px 18px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #ffe681 !important;
  color: #900000 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.client-theme .login-link {
  grid-area: login !important;
  justify-self: center !important;
  align-self: start !important;
  margin-top: 18px !important;
  color: #ffe681 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.client-theme .nav-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 67px !important;
  display: block !important;
  padding: 0 !important;
  border-radius: 7px !important;
  overflow: hidden !important;
  background: #900005 !important;
}

.client-theme .nav-shell .brand,
.client-theme .header-actions {
  display: none !important;
}

.client-theme .desktop-nav {
  width: 100% !important;
  min-height: 67px !important;
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #900005 !important;
}

.client-theme .desktop-nav a {
  min-height: 67px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px !important;
  color: #ffe681 !important;
  font-family: Montserrat, Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.client-theme .desktop-nav a:hover {
  background: #a90008 !important;
}

@media (max-width: 1100px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 180px 1fr 160px !important;
  }

  .client-theme .site-logo img {
    width: 180px !important;
    max-width: 180px !important;
  }

  .client-theme .agency-title strong {
    font-size: 25px !important;
    letter-spacing: 6px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .client-theme .top-contact-strip {
    padding: 25px 0 20px !important;
  }

  .client-theme .top-strip-shell {
    width: min(calc(100% - 30px), 1480px) !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .client-theme .site-logo {
    justify-content: center !important;
  }

  .client-theme .site-logo img {
    width: 230px !important;
    max-width: 100% !important;
  }

  .client-theme .agency-title {
    align-self: center !important;
  }

  .client-theme .agency-title strong {
    font-size: 21px !important;
    letter-spacing: 3px !important;
  }

  .client-theme .contact-cluster {
    width: 100% !important;
  }

  .client-theme .contact-cluster a:not(.telegram-link) {
    width: 100% !important;
    font-size: 16px !important;
  }

  .client-theme .login-link {
    align-self: center !important;
    margin-top: -5px !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 30px), 1480px) !important;
    margin-top: 5px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .client-theme .desktop-nav a {
    min-height: 55px !important;
    font-size: 13px !important;
  }
}

/* Single profile page */
.client-theme .single-profile-page {
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 0, 153, 0.09), transparent 28%),
    linear-gradient(180deg, #17060a, #050203) !important;
  color: #ffffff !important;
  padding: 70px 0 90px !important;
}

.client-theme .single-profile-shell {
  width: min(calc(100% - 48px), 1450px) !important;
  margin: 0 auto !important;
}

.client-theme .single-profile-backrow {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 36px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.client-theme .single-profile-backrow a:hover {
  color: #ff0099 !important;
}

.client-theme .single-profile-title {
  margin: 0 0 38px !important;
  color: #ffffff !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.25 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.client-theme .single-profile-title span,
.client-theme .single-profile-head h2::before,
.client-theme .single-profile-row span,
.client-theme .single-profile-tab-panel h2,
.client-theme .single-profile-summary-grid strong {
  color: #ff0099 !important;
}

.client-theme .single-profile-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.95fr) !important;
  gap: 40px !important;
  align-items: start !important;
}

.client-theme .single-profile-gallery,
.client-theme .single-profile-info,
.client-theme .single-profile-tabs {
  overflow: hidden !important;
  border: 1px solid rgba(255, 0, 153, 0.32) !important;
  border-radius: 10px !important;
  background: rgba(35, 12, 15, 0.94) !important;
}

.client-theme .single-profile-head {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 20px 22px !important;
  border-bottom: 1px solid rgba(255, 0, 153, 0.2) !important;
}

.client-theme .single-profile-head h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 28px !important;
}

.client-theme .single-profile-head h2::before {
  content: "♥" !important;
  margin-right: 10px !important;
}

.client-theme .single-profile-head p {
  margin: 0 !important;
  color: #dddddd !important;
  font-weight: 600 !important;
  text-align: right !important;
}

.client-theme .single-profile-main-photo {
  min-height: 680px !important;
  padding: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1a0b0d !important;
}

.client-theme .single-profile-main-photo img {
  display: block !important;
  max-width: 100% !important;
  max-height: 720px !important;
  object-fit: contain !important;
  border-radius: 5px !important;
}

.client-theme .single-profile-thumbs {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  padding: 18px !important;
}

.client-theme .single-profile-thumb {
  width: 100px !important;
  height: 100px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  border-radius: 7px !important;
  background: transparent !important;
  cursor: pointer !important;
}

.client-theme .single-profile-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.client-theme .single-profile-thumb.active,
.client-theme .single-profile-thumb:hover {
  border-color: #ff0099 !important;
}

.client-theme .single-profile-info-tabs,
.client-theme .single-profile-tab-buttons {
  display: grid !important;
  background: #49070e !important;
}

.client-theme .single-profile-info-tabs {
  grid-template-columns: repeat(2, 1fr) !important;
}

.client-theme .single-profile-tab-buttons {
  grid-template-columns: repeat(4, 1fr) !important;
}

.client-theme .single-profile-info-tabs button,
.client-theme .single-profile-tab-buttons button {
  border: 0 !important;
  padding: 17px 12px !important;
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.client-theme .single-profile-info-tabs button.active,
.client-theme .single-profile-tab-buttons button.active {
  background: #ff0099 !important;
}

.client-theme .single-profile-info-body {
  padding: 22px !important;
}

.client-theme .single-profile-row {
  display: flex !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.client-theme .single-profile-row strong {
  color: #eeeeee !important;
  font-weight: 600 !important;
  text-align: right !important;
}

.client-theme .single-profile-side-heading {
  margin: 26px 0 14px !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
}

.client-theme .single-profile-rate-table {
  overflow: hidden !important;
  margin-bottom: 8px !important;
  border-radius: 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.client-theme .single-profile-rate-head,
.client-theme .single-profile-rate-row {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr !important;
  gap: 10px !important;
}

.client-theme .single-profile-rate-head {
  background: rgba(255, 230, 129, 0.16) !important;
  color: #ffe681 !important;
  font-weight: 800 !important;
}

.client-theme .single-profile-rate-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #eeeeee !important;
}

.client-theme .single-profile-rate-head span,
.client-theme .single-profile-rate-row span {
  padding: 12px !important;
}

.client-theme .single-profile-info-panel,
.client-theme .single-profile-tab-panel {
  display: none !important;
}

.client-theme .single-profile-info-panel.active,
.client-theme .single-profile-tab-panel.active {
  display: block !important;
}

.client-theme .single-profile-cta {
  display: block !important;
  margin-top: 24px !important;
  padding: 16px 20px !important;
  border-radius: 7px !important;
  background: #ff0099 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.client-theme .single-profile-tabs {
  margin-top: 34px !important;
}

.client-theme .single-profile-tab-panel {
  padding: 32px !important;
}

.client-theme .single-profile-tab-panel h2 {
  margin: 0 0 14px !important;
  font-size: 25px !important;
}

.client-theme .single-profile-tab-panel p {
  margin: 0 0 14px !important;
  color: #dddddd !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.client-theme .single-profile-empty-review {
  padding: 35px !important;
  color: #aaaaaa !important;
  text-align: center !important;
}

.client-theme .single-profile-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

.client-theme .single-profile-summary-grid div {
  padding: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 8px !important;
  background: #1a0b0d !important;
  text-align: center !important;
}

.client-theme .single-profile-summary-grid strong {
  display: block !important;
  margin-bottom: 5px !important;
}

@media (max-width: 1050px) {
  .client-theme .single-profile-layout {
    grid-template-columns: 1fr !important;
  }

  .client-theme .single-profile-main-photo {
    min-height: 560px !important;
  }
}

@media (max-width: 700px) {
  .client-theme .single-profile-page {
    padding: 45px 0 65px !important;
  }

  .client-theme .single-profile-shell {
    width: min(calc(100% - 24px), 1450px) !important;
  }

  .client-theme .single-profile-backrow {
    font-size: 12px !important;
  }

  .client-theme .single-profile-head,
  .client-theme .single-profile-backrow {
    flex-direction: column !important;
  }

  .client-theme .single-profile-head p {
    text-align: left !important;
  }

  .client-theme .single-profile-main-photo {
    min-height: 420px !important;
    padding: 10px !important;
  }

  .client-theme .single-profile-thumb {
    width: 74px !important;
    height: 74px !important;
  }

  .client-theme .single-profile-tab-buttons,
  .client-theme .single-profile-summary-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

.client-theme .single-profile-listing {
  padding: 60px 0 90px !important;
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 0, 153, 0.08), transparent 28%),
    #070304 !important;
}

.client-theme .single-profile-listing-shell {
  width: min(calc(100% - 48px), 1450px) !important;
  margin: 0 auto !important;
}

.client-theme .single-profile-listing h1 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: clamp(32px, 4vw, 46px) !important;
}

.client-theme .single-profile-listing h1 span,
.client-theme .single-profile-listing-card h2 {
  color: #ff0099 !important;
}

.client-theme .single-profile-listing-shell > p {
  margin: 0 0 35px !important;
  color: #bbbbbb !important;
}

.client-theme .single-profile-listing-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.client-theme .single-profile-listing-card {
  overflow: hidden !important;
  border: 1px solid rgba(255, 0, 153, 0.25) !important;
  border-radius: 10px !important;
  background: #1b0b0d !important;
}

.client-theme .single-profile-listing-card img {
  display: block !important;
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
}

.client-theme .single-profile-listing-card div {
  padding: 16px !important;
}

.client-theme .single-profile-listing-card h2 {
  margin: 0 !important;
  font-size: 20px !important;
}

.client-theme .single-profile-listing-card p {
  margin: 6px 0 0 !important;
  color: #bbbbbb !important;
}

@media (max-width: 1000px) {
  .client-theme .single-profile-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .client-theme .single-profile-listing-grid {
    grid-template-columns: 1fr !important;
  }

  .client-theme .single-profile-listing-card img {
    height: 360px !important;
  }
}

.client-theme .all-profiles-page {
  min-height: 100vh !important;
  padding: 28px 24px 70px !important;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 0, 153, 0.09), transparent 28%),
    linear-gradient(#0a0a0a, #050505) !important;
  color: #ffffff !important;
}

.client-theme .all-profiles-wrap {
  max-width: 1480px !important;
  margin: 0 auto !important;
}

.client-theme .all-profiles-toolbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 20 !important;
  display: grid !important;
  grid-template-columns: 330px 1fr 180px !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(255, 0, 153, 0.2) !important;
  border-radius: 8px !important;
  background: #16090d !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
}

.client-theme .all-profiles-count {
  color: #ffffff !important;
  font-size: 19px !important;
  font-weight: 700 !important;
}

.client-theme .all-profiles-count span,
.client-theme .all-profiles-title span {
  color: #ff0099 !important;
}

.client-theme .all-profiles-search,
.client-theme .all-profiles-sort {
  height: 50px !important;
  border-radius: 7px !important;
  font-family: Poppins, sans-serif !important;
  outline: none !important;
}

.client-theme .all-profiles-search {
  width: 100% !important;
  padding: 0 16px !important;
  border: 1px solid #3d2630 !important;
  background: #ffffff !important;
  color: #111111 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.client-theme .all-profiles-sort {
  padding: 0 12px !important;
  border: 1px solid #572033 !important;
  background: #220c13 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.client-theme .all-profiles-title {
  margin: 48px 0 28px !important;
  color: #ffffff !important;
  font-size: clamp(30px, 3.2vw, 38px) !important;
  text-align: center !important;
}

.client-theme .all-profiles-layout {
  display: grid !important;
  grid-template-columns: 245px 1fr !important;
  gap: 16px !important;
  align-items: start !important;
}

.client-theme .all-profiles-sidebar {
  position: sticky !important;
  top: 92px !important;
  overflow: hidden !important;
  border: 1px solid #33141f !important;
  border-radius: 8px !important;
  background: #160a0e !important;
}

.client-theme .all-profiles-side-head {
  display: flex !important;
  justify-content: space-between !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid #391420 !important;
  background: #210a12 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.client-theme .all-profiles-side-head button {
  border: 0 !important;
  background: transparent !important;
  color: #ff0099 !important;
  font: 600 13px Poppins, sans-serif !important;
  cursor: pointer !important;
}

.client-theme .all-profiles-filter {
  border-bottom: 1px solid #31141c !important;
}

.client-theme .all-profiles-filter-btn {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  padding: 14px 16px !important;
  border: 0 !important;
  background: #180b0f !important;
  color: #ffffff !important;
  font: 600 14px Poppins, sans-serif !important;
  cursor: pointer !important;
}

.client-theme .all-profiles-filter-body {
  display: none !important;
  padding: 12px 16px 16px !important;
  background: #12090c !important;
}

.client-theme .all-profiles-filter.open .all-profiles-filter-body {
  display: grid !important;
  gap: 11px !important;
}

.client-theme .all-profiles-filter-body label {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #dddddd !important;
  font-size: 14px !important;
}

.client-theme .all-profiles-filter-body input {
  accent-color: #ff0099 !important;
}

.client-theme .all-profiles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.client-theme .all-profiles-card {
  display: block !important;
  overflow: hidden !important;
  border: 1px solid #351722 !important;
  border-radius: 8px !important;
  background: #1a0c10 !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.client-theme .all-profiles-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(255, 0, 153, 0.65) !important;
  box-shadow: 0 14px 32px rgba(255, 0, 153, 0.08) !important;
}

.client-theme .all-profiles-card.hidden {
  display: none !important;
}

.client-theme .all-profiles-card-head {
  min-height: 66px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 13px 15px !important;
  background: #210d13 !important;
}

.client-theme .all-profiles-card-name {
  max-width: 65% !important;
  overflow: hidden !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.client-theme .all-profiles-card-tag {
  color: #ff99d6 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.client-theme .all-profiles-card-image {
  position: relative !important;
  height: 410px !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.client-theme .all-profiles-card-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.client-theme .all-profiles-availability {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  padding: 10px 14px !important;
  background: rgba(12, 8, 9, 0.78) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.client-theme .all-profiles-availability span {
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  margin-right: 7px !important;
  border-radius: 50% !important;
  background: #20d39a !important;
}

.client-theme .all-profiles-card-foot {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 13px 15px !important;
  background: #1b0b10 !important;
}

.client-theme .all-profiles-card-foot strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 14px !important;
}

.client-theme .all-profiles-card-foot small {
  display: block !important;
  margin-top: 2px !important;
  color: #aa979f !important;
}

.client-theme .all-profiles-arrow {
  color: #ff0099 !important;
  font-size: 25px !important;
}

.client-theme .all-profiles-empty {
  display: none !important;
  padding: 60px 20px !important;
  border: 1px solid #30131d !important;
  border-radius: 8px !important;
  background: #14090d !important;
  color: #bbbbbb !important;
  text-align: center !important;
}

.client-theme .all-profiles-empty.show {
  display: block !important;
}

@media (max-width: 1050px) {
  .client-theme .all-profiles-toolbar,
  .client-theme .all-profiles-layout {
    grid-template-columns: 1fr !important;
  }

  .client-theme .all-profiles-sidebar {
    position: static !important;
  }

  .client-theme .all-profiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .client-theme .all-profiles-page {
    padding: 16px 12px 50px !important;
  }

  .client-theme .all-profiles-title {
    margin-top: 32px !important;
  }

  .client-theme .all-profiles-grid {
    grid-template-columns: 1fr !important;
  }

  .client-theme .all-profiles-card-image {
    height: 460px !important;
  }
}

/* Header repair: keep the desktop header inside the viewport on static location pages. */
@media (min-width: 1201px) {
  .client-theme .site-header {
    overflow: hidden !important;
  }

  .client-theme .top-contact-strip {
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 0 14px !important;
  }

  .client-theme .top-strip-shell {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 230px minmax(300px, 430px) minmax(420px, 1fr) 230px 70px !important;
    grid-template-areas: "logo title contact diva login" !important;
    align-items: center !important;
    column-gap: 18px !important;
    width: min(calc(100% - 96px), 1800px) !important;
    height: auto !important;
    min-height: 112px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .client-theme .site-logo {
    position: static !important;
    grid-area: logo !important;
    width: auto !important;
    height: auto !important;
  }

  .client-theme .text-logo {
    font-size: clamp(58px, 5vw, 84px) !important;
    letter-spacing: -2px !important;
  }

  .client-theme .agency-title {
    position: static !important;
    grid-area: title !important;
    width: auto !important;
    align-self: center !important;
  }

  .client-theme .agency-title strong {
    font-size: clamp(23px, 2vw, 38px) !important;
    letter-spacing: 0.16em !important;
    white-space: normal !important;
  }

  .client-theme .contact-cluster {
    position: static !important;
    grid-area: contact !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .client-theme .contact-cluster a {
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 8px 14px !important;
    overflow: hidden !important;
    font-size: clamp(14px, 1.15vw, 22px) !important;
    letter-spacing: 0.12em !important;
    text-overflow: ellipsis !important;
  }

  .client-theme .contact-cluster::after {
    width: 54px !important;
    height: 54px !important;
  }

  .client-theme .contact-cluster span {
    font-size: 16px !important;
  }

  .client-theme .diva-link {
    position: static !important;
    grid-area: diva !important;
    width: 100% !important;
    max-width: 230px !important;
    justify-self: center !important;
  }

  .client-theme .diva-link img {
    width: 100% !important;
    max-width: 230px !important;
  }

  .client-theme .login-link {
    position: static !important;
    grid-area: login !important;
    margin: 0 !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 96px), 1800px) !important;
    height: auto !important;
    min-height: 62px !important;
    padding: 0 24px !important;
    overflow: hidden !important;
  }

  .client-theme .desktop-nav {
    height: auto !important;
    min-height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2vw, 42px) !important;
  }

  .client-theme .desktop-nav a {
    height: auto !important;
    min-height: 62px !important;
    padding: 0 !important;
    font-size: clamp(14px, 1vw, 18px) !important;
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 190px minmax(270px, 370px) minmax(360px, 1fr) 190px 62px !important;
    column-gap: 12px !important;
  }

  .client-theme .contact-cluster a {
    font-size: 15px !important;
    letter-spacing: 0.08em !important;
  }

  .client-theme .desktop-nav {
    gap: 20px !important;
  }

  .client-theme .diva-link,
  .client-theme .diva-link img {
    max-width: 190px !important;
  }
}

@media (max-width: 767px) {
  .client-theme .begin-process-section { padding: 56px 0 !important; }
  .client-theme .begin-process-shell { width: min(calc(100% - 28px), 520px) !important; padding: 0 14px !important; }
  .client-theme .begin-process-intro { margin-bottom: 44px !important; }
  .client-theme .begin-process-intro h2 { font-size: 34px !important; line-height: 40px !important; }
  .client-theme .begin-process-intro p { font-size: 15px !important; line-height: 25px !important; }
  .client-theme .process-step, .client-theme .process-step:first-of-type {
    grid-template-columns: 1fr !important;
    padding-bottom: 44px !important;
  }
  .client-theme .process-step + .process-step { padding-top: 44px !important; }
  .client-theme .process-number,
  .client-theme .process-copy,
  .client-theme .begin-process-section .process-image-card,
  .client-theme .begin-process-section .process-collage {
    grid-column: auto !important;
  }
  .client-theme .process-number { justify-self: start !important; font-size: 58px !important; }
  .client-theme .begin-process-section .process-image-card,
  .client-theme .begin-process-section .process-collage {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    justify-self: stretch !important;
  }
}

/* Final How To Begin reference alignment */
body.client-theme {
    scroll-padding-top: 112px;
}

.client-theme #how-to-begin {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 0 !important;
    overflow: visible !important;
    scroll-margin-top: 112px !important;
    margin: 72px 0 40px !important;
    padding: 96px 0 88px !important;
    background: rgba(10, 0, 0, 0.28) !important;
    color: #d1d5db !important;
}

.client-theme #how-to-begin .begin-process-shell {
    display: block !important;
    width: min(1136px, calc(100% - 64px)) !important;
    max-width: 1136px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
}

.client-theme #how-to-begin .begin-process-intro {
    display: block !important;
    width: 100% !important;
    max-width: 1136px !important;
    margin: 0 auto 80px !important;
    padding: 0 !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.client-theme #how-to-begin .begin-process-intro h2 {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: Poppins, sans-serif !important;
    font-size: 48px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 7px !important;
    text-transform: uppercase !important;
}

.client-theme #how-to-begin .begin-process-intro p {
    max-width: 768px !important;
    margin: 0 auto !important;
    color: #9ca3af !important;
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    text-align: center !important;
}

.client-theme #how-to-begin .process-step {
    display: grid !important;
    grid-template-columns: 128px minmax(0, 512px) minmax(320px, 400px) !important;
    column-gap: 48px !important;
    row-gap: 0 !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1136px !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 0 0 88px !important;
    border: 0 !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    overflow: visible !important;
}

.client-theme #how-to-begin .process-step + .process-step {
    padding-top: 88px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.client-theme #how-to-begin .process-number {
    grid-column: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    color: #fbbf24 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 72px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.client-theme #how-to-begin .process-copy {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 512px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    color: #d1d5db !important;
}

.client-theme #how-to-begin .process-copy h3 {
    margin: 0 0 12px !important;
    color: #ffffff !important;
    font-family: Poppins, sans-serif !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.client-theme #how-to-begin .process-kicker {
    margin: 0 0 16px !important;
    color: #9ca3af !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

.client-theme #how-to-begin .process-copy > p:not(.process-kicker):not(.process-callout) {
    margin: 0 0 16px !important;
    color: #d1d5db !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}

.client-theme #how-to-begin .process-callout {
    display: block !important;
    width: min(100%, 315px) !important;
    margin: 32px 0 0 !important;
    padding: 18px 22px !important;
    border: 1px solid rgba(220, 38, 38, 0.75) !important;
    border-radius: 8px !important;
    background: rgba(127, 0, 3, 0.18) !important;
    color: #fbbf24 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.client-theme #how-to-begin .process-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    padding: 0 24px !important;
    margin-top: 16px !important;
    border-radius: 6px !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.client-theme #how-to-begin .process-image-card,
.client-theme #how-to-begin .process-collage {
    grid-column: 3 !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 330px !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    align-self: center !important;
}

.client-theme #how-to-begin .process-image-card img,
.client-theme #how-to-begin .process-collage img {
    object-fit: cover !important;
}

.client-theme #how-to-begin .process-image-card span {
    color: #ffffff !important;
    font-family: Poppins, sans-serif !important;
    font-size: 40px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
}

.client-theme #how-to-begin .process-image-card small {
    color: #fde68a !important;
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.client-theme #how-to-begin .process-finale {
    display: block !important;
    max-width: 920px !important;
    margin: 80px auto 0 !important;
    padding: 0 !important;
    text-align: center !important;
    color: #d1d5db !important;
}

.client-theme #how-to-begin .process-finale-image {
    width: min(100%, 575px) !important;
    height: 190px !important;
    margin: 0 auto 48px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.client-theme #how-to-begin .process-finale p {
    margin: 0 auto !important;
    max-width: 760px !important;
    color: #d1d5db !important;
    font-family: Poppins, sans-serif !important;
    font-size: 26px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}

.client-theme #how-to-begin .process-finale strong {
    color: #fbbf24 !important;
    font-weight: 700 !important;
}

@media (max-width: 1199px) {
    .client-theme #how-to-begin {
        margin-top: 48px !important;
        padding: 80px 0 72px !important;
    }

    .client-theme #how-to-begin .begin-process-shell {
        width: min(100% - 40px, 900px) !important;
    }

    .client-theme #how-to-begin .process-step {
        grid-template-columns: 90px minmax(0, 1fr) !important;
        gap: 24px 32px !important;
        padding-bottom: 72px !important;
    }

    .client-theme #how-to-begin .process-step + .process-step {
        padding-top: 72px !important;
    }

    .client-theme #how-to-begin .process-copy {
        grid-column: 2 !important;
        max-width: none !important;
    }

    .client-theme #how-to-begin .process-image-card,
    .client-theme #how-to-begin .process-collage {
        grid-column: 2 !important;
        max-width: 400px !important;
        height: 310px !important;
        margin: 12px 0 0 !important;
    }
}

@media (max-width: 767px) {
    .client-theme #how-to-begin {
        scroll-margin-top: 96px !important;
        margin-top: 32px !important;
        padding: 56px 0 52px !important;
    }

    .client-theme #how-to-begin .begin-process-shell {
        width: calc(100% - 28px) !important;
    }

    .client-theme #how-to-begin .begin-process-intro {
        margin-bottom: 48px !important;
    }

    .client-theme #how-to-begin .begin-process-intro h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
        letter-spacing: 3px !important;
    }

    .client-theme #how-to-begin .begin-process-intro p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .client-theme #how-to-begin .process-step {
        display: block !important;
        padding-bottom: 56px !important;
    }

    .client-theme #how-to-begin .process-step + .process-step {
        padding-top: 56px !important;
    }

    .client-theme #how-to-begin .process-number {
        font-size: 56px !important;
        text-align: left !important;
        margin-bottom: 20px !important;
    }

    .client-theme #how-to-begin .process-copy h3 {
        font-size: 22px !important;
    }

    .client-theme #how-to-begin .process-image-card,
    .client-theme #how-to-begin .process-collage {
        max-width: none !important;
        height: 280px !important;
        margin-top: 28px !important;
    }

    .client-theme #how-to-begin .process-callout {
        width: 100% !important;
    }
}

/* Final booking process reference lock */
#booking-process,
#how-to-begin,
.client-theme #booking-process,
.client-theme #how-to-begin {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  scroll-margin-top: 112px !important;
  margin: 72px 0 40px !important;
  padding: 96px 0 88px !important;
  background: rgba(0, 0, 0, 0.28) !important;
  overflow: visible !important;
}

#booking-process > .container,
#how-to-begin > .container,
.client-theme #booking-process > .container,
.client-theme #how-to-begin > .container {
  width: min(1136px, calc(100% - 64px)) !important;
  max-width: 1136px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#booking-process h2,
#how-to-begin h2,
.client-theme #booking-process h2,
.client-theme #how-to-begin h2 {
  font-family: Poppins, sans-serif !important;
  font-size: 48px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 7px !important;
  color: #fff !important;
  text-align: center !important;
  text-transform: uppercase !important;
  margin: 0 0 16px !important;
}

#booking-process > .container > p,
#how-to-begin > .container > p,
.client-theme #booking-process > .container > p,
.client-theme #how-to-begin > .container > p {
  max-width: 768px !important;
  margin: 0 auto 80px !important;
  font-family: Poppins, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #9ca3af !important;
  text-align: center !important;
}

#booking-process .space-y-16,
#booking-process .md\:space-y-20,
#how-to-begin .space-y-16,
#how-to-begin .md\:space-y-20 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

#booking-process .step-container,
#how-to-begin .step-container,
.client-theme #booking-process .step-container,
.client-theme #how-to-begin .step-container {
  display: grid !important;
  grid-template-columns: 128px minmax(0, 512px) minmax(320px, 400px) !important;
  column-gap: 48px !important;
  align-items: center !important;
  max-width: 1136px !important;
  margin: 0 auto !important;
  padding: 0 0 88px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
}

#booking-process .step-container + .step-container,
#how-to-begin .step-container + .step-container {
  padding-top: 88px !important;
}

#booking-process .step-container > .md\:col-span-2,
#how-to-begin .step-container > .md\:col-span-2 {
  grid-column: 1 !important;
  text-align: center !important;
  margin: 0 !important;
}

#booking-process .step-container > .md\:col-span-6,
#how-to-begin .step-container > .md\:col-span-6 {
  grid-column: 2 !important;
  max-width: 512px !important;
  width: 100% !important;
}

#booking-process .step-container > .md\:col-span-4,
#how-to-begin .step-container > .md\:col-span-4 {
  grid-column: 3 !important;
  max-width: 400px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

#booking-process .step-container > .md\:col-span-2 span,
#how-to-begin .step-container > .md\:col-span-2 span {
  display: block !important;
  font-family: Poppins, sans-serif !important;
  font-size: 72px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #fbbf24 !important;
}

#booking-process .step-container h3,
#how-to-begin .step-container h3 {
  font-family: Poppins, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.33 !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  margin: 0 0 12px !important;
}

#booking-process .step-container h3 + p,
#how-to-begin .step-container h3 + p {
  font-family: Poppins, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: #9ca3af !important;
  margin: 0 0 16px !important;
}

#booking-process .step-container h3 + p + p,
#how-to-begin .step-container h3 + p + p {
  font-family: Poppins, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #d1d5db !important;
  margin: 0 0 16px !important;
}

#booking-process #live-availability,
#how-to-begin #live-availability {
  width: min(315px, 100%) !important;
  margin-top: 32px !important;
  padding: 18px 22px !important;
  border: 1px solid rgba(185, 28, 28, 0.75) !important;
  border-radius: 8px !important;
  background: rgba(127, 29, 29, 0.2) !important;
  text-align: center !important;
}

#booking-process #live-availability p,
#how-to-begin #live-availability p {
  font-family: Poppins, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: #fbbf24 !important;
  font-weight: 600 !important;
}

#booking-process .step-container img,
#how-to-begin .step-container img {
  width: 100% !important;
  height: 330px !important;
  max-height: 330px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

@media (max-width: 1199px) {
  #booking-process > .container,
  #how-to-begin > .container {
    width: min(100% - 40px, 960px) !important;
  }
  #booking-process .step-container,
  #how-to-begin .step-container {
    grid-template-columns: 96px minmax(0, 1fr) minmax(280px, 360px) !important;
    column-gap: 32px !important;
  }
  #booking-process h2,
  #how-to-begin h2 {
    font-size: 40px !important;
    letter-spacing: 5px !important;
  }
}

@media (max-width: 767px) {
  #booking-process,
  #how-to-begin {
    margin: 40px 0 28px !important;
    padding: 56px 0 52px !important;
    scroll-margin-top: 92px !important;
  }
  #booking-process > .container,
  #how-to-begin > .container {
    width: calc(100% - 28px) !important;
  }
  #booking-process h2,
  #how-to-begin h2 {
    font-size: 34px !important;
    letter-spacing: 3px !important;
  }
  #booking-process > .container > p,
  #how-to-begin > .container > p {
    font-size: 16px !important;
    margin-bottom: 48px !important;
  }
  #booking-process .step-container,
  #how-to-begin .step-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 22px !important;
    padding-bottom: 56px !important;
  }
  #booking-process .step-container + .step-container,
  #how-to-begin .step-container + .step-container {
    padding-top: 56px !important;
  }
  #booking-process .step-container > .md\:col-span-2,
  #booking-process .step-container > .md\:col-span-6,
  #booking-process .step-container > .md\:col-span-4,
  #how-to-begin .step-container > .md\:col-span-2,
  #how-to-begin .step-container > .md\:col-span-6,
  #how-to-begin .step-container > .md\:col-span-4 {
    grid-column: 1 !important;
    max-width: 100% !important;
  }
  #booking-process .step-container > .md\:col-span-2 span,
  #how-to-begin .step-container > .md\:col-span-2 span {
    font-size: 56px !important;
    text-align: left !important;
  }
  #booking-process .step-container img,
  #how-to-begin .step-container img {
    height: 280px !important;
  }
}

/* Premium girlfriend benefit section */
:root,
.client-theme {
  --hs-container-wide: min(1704px, calc(100% - 194px));
  --hs-heading-font: 36px;
  --hs-subtitle-font: 24px;
  --hs-body-font: 16px;
  --hs-gold: #fbbf24;
  --hs-heading-gold: #fcd34d;
  --hs-text: #d1d5db;
  --hs-panel-dark: rgba(9, 0, 0, 0.72);
}

.girlfriend-section,
.client-theme .girlfriend-section {
  background: transparent !important;
  padding: clamp(88px, 7vw, 126px) 0 !important;
  margin: 0 !important;
  color: var(--hs-text);
}

.girlfriend-shell,
.client-theme .girlfriend-shell {
  width: var(--hs-container-wide);
  margin: 0 auto;
  background: var(--hs-panel-dark);
  padding: clamp(76px, 5vw, 96px) clamp(48px, 5vw, 80px);
  overflow: hidden;
}

.girlfriend-grid,
.client-theme .girlfriend-grid {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(300px, 40%);
  gap: clamp(72px, 7vw, 128px);
  align-items: center;
}

.girlfriend-copy,
.client-theme .girlfriend-copy {
  max-width: 910px;
}

.girlfriend-copy h2,
.client-theme .girlfriend-copy h2 {
  margin: 0 0 8px !important;
  color: var(--hs-heading-gold) !important;
  font-family: Poppins, sans-serif !important;
  font-size: var(--hs-heading-font) !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.girlfriend-subtitle,
.client-theme .girlfriend-subtitle {
  margin: 0 0 32px !important;
  color: var(--hs-text) !important;
  font-family: Poppins, sans-serif !important;
  font-size: var(--hs-subtitle-font) !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

.girlfriend-copy p,
.client-theme .girlfriend-copy p {
  margin: 0 0 32px !important;
  color: var(--hs-text) !important;
  font-family: Poppins, sans-serif !important;
  font-size: var(--hs-body-font) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.girlfriend-copy strong,
.client-theme .girlfriend-copy strong {
  color: #ffffff;
  font-weight: 700;
}

.girlfriend-copy h3,
.client-theme .girlfriend-copy h3 {
  margin: 42px 0 18px !important;
  color: var(--hs-gold) !important;
  font-family: Poppins, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.girlfriend-copy ul,
.client-theme .girlfriend-copy ul {
  margin: 0 !important;
  padding-left: 26px !important;
  color: var(--hs-text) !important;
  font-family: Poppins, sans-serif !important;
  font-size: var(--hs-body-font) !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
}

.girlfriend-copy li,
.client-theme .girlfriend-copy li {
  margin: 0 0 10px !important;
  padding-left: 10px;
}

.girlfriend-copy li::marker,
.client-theme .girlfriend-copy li::marker {
  color: var(--hs-text);
}

.girlfriend-media,
.client-theme .girlfriend-media {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.girlfriend-media img,
.client-theme .girlfriend-media img {
  width: min(100%, 440px);
  max-height: 720px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, .35));
}

#booking-process,
#how-to-begin,
.client-theme #booking-process,
.client-theme #how-to-begin {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 1180px) {
  :root,
  .client-theme {
    --hs-container-wide: min(100% - 56px, 1136px);
  }

  .girlfriend-grid,
  .client-theme .girlfriend-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .girlfriend-copy,
  .client-theme .girlfriend-copy {
    max-width: 100%;
  }

  .girlfriend-media,
  .client-theme .girlfriend-media {
    min-height: 420px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root,
  .client-theme {
    --hs-container-wide: calc(100% - 28px);
    --hs-heading-font: 30px;
    --hs-subtitle-font: 20px;
    --hs-body-font: 15px;
  }

  .girlfriend-section,
  .client-theme .girlfriend-section {
    padding: 56px 0 !important;
  }

  .girlfriend-shell,
  .client-theme .girlfriend-shell {
    padding: 42px 20px;
  }

  .girlfriend-subtitle,
  .client-theme .girlfriend-subtitle {
    margin-bottom: 24px !important;
  }

  .girlfriend-media,
  .client-theme .girlfriend-media {
    min-height: 340px;
    justify-content: center;
  }

  .girlfriend-media img,
  .client-theme .girlfriend-media img {
    width: min(78%, 320px);
    max-height: 420px;
  }
}
/* End premium girlfriend benefit section */

/* Lower homepage reference sections */
:root,
.client-theme {
  --hs-container-wide: min(1704px, calc(100% - 194px));
  --hs-heading-font: 36px;
  --hs-subtitle-font: 24px;
  --hs-body-font: 16px;
  --hs-copy-line: 1.65;
  --hs-gold: #fde68a;
  --hs-amber: #fbbf24;
  --hs-red-panel: #990006;
  --hs-copy: #d1d5db;
}

.client-theme .dream-copy-section,
.client-theme .bangalore-locations-section,
.client-theme .escort-areas-section,
.client-theme .selection-copy-section,
.client-theme .faq-section,
.client-theme .policy-tabs-section,
.client-theme .next-copy-section,
.client-theme .conclusion-section {
  font-family: Poppins, sans-serif;
  background: transparent;
}

.client-theme .dream-copy-section {
  padding: 48px 0;
}

.client-theme .dream-copy-shell,
.client-theme .bangalore-locations-shell,
.client-theme .escort-areas-shell,
.client-theme .selection-copy-shell,
.client-theme .faq-shell,
.client-theme .policy-tabs-shell,
.client-theme .next-copy-shell,
.client-theme .conclusion-shell {
  width: var(--hs-container-wide);
  max-width: 1704px;
  margin-inline: auto;
}

.client-theme .dream-copy-shell {
  background: rgba(24, 6, 6, 0.62);
  padding: 86px 48px 82px;
  color: var(--hs-copy);
}

.client-theme .dream-copy-shell h2 {
  max-width: 1380px;
  margin: 0 0 18px !important;
  color: var(--hs-amber) !important;
  font-size: var(--hs-heading-font) !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.client-theme .dream-copy-subtitle {
  margin: 0 0 54px !important;
  color: var(--hs-copy) !important;
  font-size: var(--hs-subtitle-font) !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

.client-theme .dream-copy-shell p {
  max-width: 1510px;
  margin: 0 0 32px !important;
  color: #e5e7eb !important;
  font-size: var(--hs-body-font) !important;
  line-height: var(--hs-copy-line) !important;
  font-weight: 400 !important;
}

.client-theme .dream-copy-shell h3 {
  margin: 62px 0 44px !important;
  color: #e5e7eb !important;
  font-size: var(--hs-heading-font) !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.client-theme .dream-copy-shell h3::after {
  content: "";
  display: block;
  width: 144px;
  height: 6px;
  margin-top: 20px;
  background: var(--hs-amber);
}

.client-theme .bangalore-locations-section {
  padding: 0 0 48px;
}

.client-theme .bangalore-locations-shell {
  background: var(--hs-red-panel);
  padding: 72px 48px 96px;
}

.client-theme .bangalore-locations-title {
  max-width: 1500px;
  margin: 0 auto 72px;
  text-align: center;
}

.client-theme .bangalore-locations-title h2 {
  margin: 0 0 8px !important;
  color: var(--hs-gold) !important;
  font-size: var(--hs-heading-font) !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.client-theme .bangalore-locations-title p {
  margin: 0 0 34px !important;
  color: #f3f4f6 !important;
  font-size: var(--hs-subtitle-font) !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

.client-theme .bangalore-locations-intro {
  max-width: 1500px;
  margin: 0 auto;
  color: #f5f5f5;
  font-size: var(--hs-body-font);
  line-height: 1.6;
}

.client-theme .bangalore-locations-intro a {
  color: var(--hs-amber);
  text-decoration: underline;
  font-weight: 700;
}

.client-theme .bangalore-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 82px 36px;
}

.client-theme .bangalore-location-card {
  position: relative;
  display: block;
  height: 184px;
  overflow: hidden;
  border-radius: 8px;
  background: #260000;
  text-decoration: none;
}

.client-theme .bangalore-location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
  transform: scale(1.02);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-theme .bangalore-location-card:hover img {
  filter: brightness(0.68);
  transform: scale(1.06);
}

.client-theme .bangalore-location-label {
  position: absolute;
  right: 24px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.client-theme .bangalore-location-label::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ff7171;
  box-shadow: 0 0 0 4px rgba(255, 113, 113, 0.22);
}

.client-theme .escort-areas-section {
  padding: 0 0 72px;
}

.client-theme .escort-areas-shell {
  background: rgba(24, 6, 6, 0.58);
  padding: 82px 48px 92px;
}

.client-theme .escort-areas-title {
  text-align: center;
  margin-bottom: 72px;
}

.client-theme .escort-areas-title h2 {
  margin: 0 0 8px !important;
  color: var(--hs-amber) !important;
  font-size: var(--hs-heading-font) !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
}

.client-theme .escort-areas-title p {
  margin: 0 !important;
  color: #fca5a5 !important;
  font-size: var(--hs-subtitle-font) !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

.client-theme .escort-area-group {
  margin-bottom: 82px;
}

.client-theme .escort-area-group:last-child {
  margin-bottom: 0;
}

.client-theme .escort-area-group h3 {
  margin: 0 0 24px !important;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.55);
  color: #fff !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.client-theme .escort-area-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
}

.client-theme .escort-area-link {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(239, 68, 68, 0.95);
  border-radius: 6px;
  background: rgba(127, 29, 29, 0.6);
  color: #fcd34d;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.client-theme .escort-area-link:hover {
  background: rgba(127, 29, 29, 0.75);
  border-color: rgba(248, 113, 113, 0.98);
  color: #fde68a;
  transform: translateY(-1px);
}

.client-theme .selection-copy-section {
  padding: 0 0 72px;
}

.client-theme .selection-copy-shell {
  background: rgba(24, 6, 6, 0.62);
  padding: 86px 48px 76px;
  color: #e5e7eb;
}

.client-theme .selection-copy-shell h2 {
  max-width: 1320px;
  margin: 0 0 14px !important;
  color: var(--hs-amber) !important;
  font-family: Poppins, sans-serif !important;
  font-size: clamp(30px, 3vw, 36px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.client-theme .selection-copy-subtitle {
  margin: 0 0 56px !important;
  color: #fca5a5 !important;
  font-size: clamp(23px, 2.2vw, 36px) !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

.client-theme .selection-copy-shell p {
  max-width: 1560px;
  margin: 0 0 30px !important;
  color: #f3f4f6 !important;
  font-size: clamp(16px, 1.45vw, 27px) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.client-theme .selection-copy-shell h3 {
  margin: 48px 0 28px !important;
  color: var(--hs-gold) !important;
  font-family: Poppins, sans-serif !important;
  font-size: clamp(28px, 2.8vw, 36px) !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.client-theme .selection-copy-shell a {
  color: var(--hs-amber);
  font-weight: 800;
  text-decoration: underline;
}

.client-theme .selection-copy-shell hr {
  height: 1px;
  margin: 60px 0;
  border: 0;
  background: rgba(239, 68, 68, 0.55);
}

.client-theme .faq-section {
  padding: 0 0 72px;
}

.client-theme .faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.25fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: start;
  min-height: 520px;
  padding: 96px 48px;
  background: rgba(24, 6, 6, 0.58);
}

.client-theme .faq-copy h2 {
  margin: 0 0 18px !important;
  color: var(--hs-amber) !important;
  font-family: Poppins, sans-serif !important;
  font-size: clamp(30px, 3vw, 36px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.client-theme .faq-copy p {
  max-width: 520px;
  margin: 0 !important;
  color: #f3f4f6 !important;
  font-size: clamp(18px, 1.7vw, 28px) !important;
  line-height: 1.35 !important;
  font-style: italic;
}

.client-theme .faq-list {
  display: grid;
  gap: 24px;
}

.client-theme .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #242424;
  color: var(--hs-gold);
  overflow: hidden;
}

.client-theme .faq-item summary {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 34px;
  cursor: pointer;
  list-style: none;
}

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

.client-theme .faq-item summary span {
  color: #fcd34d;
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.25;
  font-weight: 800;
}

.client-theme .faq-item summary b {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.client-theme .faq-item summary b::before,
.client-theme .faq-item summary b::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 22px;
  height: 3px;
  background: #fcd34d;
  transform: translate(-50%, -50%);
}

.client-theme .faq-item summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.client-theme .faq-item[open] summary b::after {
  opacity: 0;
}

.client-theme .faq-item p {
  margin: 0 !important;
  padding: 0 34px 30px;
  color: #e5e7eb !important;
  font-size: clamp(15px, 1.25vw, 19px) !important;
  line-height: 1.65 !important;
}

.client-theme .policy-tabs-section {
  padding: 0 0 80px;
}

.client-theme .policy-tabs-shell {
  padding: 96px 48px;
  background: var(--hs-red-panel);
}

.client-theme .policy-tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  background: rgba(48, 0, 0, 0.55);
}

.client-theme .policy-tab {
  min-height: 84px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  border: 0;
  background: rgba(70, 0, 0, 0.55);
  color: #f3f4f6;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  cursor: pointer;
}

.client-theme .policy-tab span {
  color: #ffffff;
  font-size: 20px;
}

.client-theme .policy-tab.is-active {
  background: #a60f12;
  color: var(--hs-gold);
}

.client-theme .policy-panel {
  min-height: 330px;
  padding: 38px 36px;
  border-radius: 8px;
  background: rgba(24, 6, 6, 0.72);
}

.client-theme .policy-panel h2 {
  margin: 0 0 22px !important;
  color: var(--hs-gold) !important;
  font-family: Poppins, sans-serif !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.client-theme .policy-panel p {
  max-width: 1500px;
  margin: 0 0 20px !important;
  color: #e5e7eb !important;
  font-size: clamp(16px, 1.5vw, 25px) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.client-theme .next-copy-section {
  padding: 0 0 72px;
}

.client-theme .next-copy-shell {
  background: rgba(24, 6, 6, 0.62);
  padding: 92px 48px 120px;
}

.client-theme .next-copy-shell h2 {
  max-width: 1540px;
  margin: 0 0 32px !important;
  color: var(--hs-amber) !important;
  font-family: Poppins, sans-serif !important;
  font-size: clamp(30px, 3vw, 36px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.client-theme .next-copy-shell h2:not(:first-child) {
  margin-top: 56px !important;
}

.client-theme .next-copy-shell h2::after {
  content: "";
  display: block;
  width: 144px;
  height: 6px;
  margin-top: 18px;
  background: var(--hs-amber);
}

.client-theme .next-copy-shell p {
  max-width: 1590px;
  margin: 0 0 28px !important;
  color: #e5e7eb !important;
  font-size: clamp(22px, 1.55vw, 27px) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.client-theme .next-copy-shell a {
  color: var(--hs-amber);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.client-theme .conclusion-section {
  padding: 0 0 80px;
}

.client-theme .conclusion-shell {
  background: rgba(24, 6, 6, 0.62);
  padding: 68px 48px 92px;
  color: #e5e7eb;
}

.client-theme .conclusion-shell h2 {
  margin: 0 auto 22px !important;
  color: var(--hs-gold) !important;
  font-family: Poppins, sans-serif !important;
  font-size: 36px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-align: center;
}

.client-theme .conclusion-rule {
  display: block;
  width: 144px;
  height: 6px;
  margin: 0 auto 58px;
  background: var(--hs-amber);
}

.client-theme .conclusion-copy {
  max-width: 1540px;
  margin: 0 auto;
}

.client-theme .conclusion-copy p,
.client-theme .conclusion-note {
  margin: 0 0 28px !important;
  color: #e5e7eb !important;
  font-size: clamp(18px, 1.55vw, 27px) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.client-theme .conclusion-copy p:first-child {
  text-align: center;
}

.client-theme .conclusion-cta {
  margin: 54px auto 62px;
  text-align: center;
}

.client-theme .conclusion-cta h3 {
  margin: 0 0 34px !important;
  color: var(--hs-gold) !important;
  font-family: Poppins, sans-serif !important;
  font-size: 28px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.client-theme .conclusion-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

.client-theme .conclusion-actions a {
  min-width: 330px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  background: #f59e0b;
  color: #050000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.client-theme .conclusion-actions .conclusion-secondary {
  background: #990006;
  color: #ffffff;
}

.client-theme .conclusion-note {
  margin-top: 0 !important;
}

.client-theme .conclusion-note a {
  color: var(--hs-amber);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.client-theme .conclusion-signoff {
  margin: 76px 0 0 !important;
  color: var(--hs-amber) !important;
  font-size: clamp(20px, 1.7vw, 28px) !important;
  line-height: 1.35 !important;
  font-style: italic;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1200px) {
  :root,
  .client-theme {
    --hs-container-wide: min(100% - 56px, 1136px);
  }

  .client-theme .bangalore-locations-grid,
  .client-theme .escort-area-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .client-theme .dream-copy-shell,
  .client-theme .bangalore-locations-shell,
  .client-theme .escort-areas-shell,
  .client-theme .selection-copy-shell,
  .client-theme .faq-shell,
  .client-theme .policy-tabs-shell,
  .client-theme .next-copy-shell,
  .client-theme .conclusion-shell {
    padding-inline: 32px;
  }

  .client-theme .faq-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .client-theme .policy-tab-list {
    width: 100%;
  }
}

@media (max-width: 767px) {
  :root,
  .client-theme {
    --hs-container-wide: calc(100% - 28px);
    --hs-heading-font: 28px;
    --hs-subtitle-font: 20px;
    --hs-body-font: 15px;
  }

  .client-theme .dream-copy-section,
  .client-theme .bangalore-locations-section,
  .client-theme .escort-areas-section,
  .client-theme .selection-copy-section,
  .client-theme .faq-section,
  .client-theme .policy-tabs-section,
  .client-theme .next-copy-section,
  .client-theme .conclusion-section {
    padding-bottom: 38px;
  }

  .client-theme .dream-copy-shell,
  .client-theme .bangalore-locations-shell,
  .client-theme .escort-areas-shell,
  .client-theme .selection-copy-shell,
  .client-theme .faq-shell,
  .client-theme .policy-tabs-shell,
  .client-theme .next-copy-shell,
  .client-theme .conclusion-shell {
    padding: 42px 20px;
  }

  .client-theme .bangalore-locations-grid,
  .client-theme .escort-area-link-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-theme .bangalore-location-card {
    height: 178px;
  }

  .client-theme .escort-area-group {
    margin-bottom: 48px;
  }

  .client-theme .selection-copy-shell h2 {
    font-size: 31px !important;
  }

  .client-theme .next-copy-shell h2 {
    margin-bottom: 24px !important;
    font-size: 34px !important;
  }

  .client-theme .next-copy-shell h2:not(:first-child) {
    margin-top: 42px !important;
  }

  .client-theme .selection-copy-shell p,
  .client-theme .next-copy-shell p,
  .client-theme .conclusion-copy p,
  .client-theme .conclusion-note,
  .client-theme .policy-panel p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .client-theme .conclusion-rule {
    margin-bottom: 38px;
  }

  .client-theme .conclusion-actions {
    gap: 16px;
  }

  .client-theme .conclusion-actions a {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 18px;
  }

  .client-theme .conclusion-signoff {
    margin-top: 42px !important;
    font-size: 18px !important;
  }

  .client-theme .faq-shell {
    gap: 30px;
  }

  .client-theme .faq-item summary {
    min-height: 76px;
    padding: 18px 20px;
  }

  .client-theme .faq-item p {
    padding: 0 20px 22px;
  }

  .client-theme .policy-tab-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-theme .policy-tab {
    width: 100%;
    min-height: 64px;
    justify-content: flex-start;
    padding: 14px 18px;
  }

  .client-theme .policy-panel {
    min-height: 0;
    padding: 28px 22px;
  }
}

/* Heading size cap: do not use headings above 36px. */
.client-theme .hero-content h1,
.client-theme .placeholder-page h1,
.client-theme .section-heading h2,
.client-theme .why-shell h2,
.client-theme .cta-shell h2,
.client-theme .enquiry-copy h2,
.client-theme .reviews-shell h2,
.client-theme .help-cta-shell h2,
.client-theme .agency-copy-heading h2,
.client-theme .begin-process-intro h2,
.client-theme #how-to-begin .begin-process-intro h2,
#booking-process h2,
#how-to-begin h2,
.client-theme #booking-process h2,
.client-theme #how-to-begin h2,
.client-theme .trust-intro h2,
.client-theme .surprise-copy h2,
.client-theme .other-categories-title h2,
.client-theme .girlfriend-copy h2,
.client-theme .dream-copy-shell h2,
.client-theme .dream-copy-shell h3,
.client-theme .bangalore-locations-title h2,
.client-theme .escort-areas-title h2,
.client-theme .selection-copy-shell h2,
.client-theme .selection-copy-shell h3,
.client-theme .faq-copy h2,
.client-theme .next-copy-shell h2,
.client-theme .conclusion-shell h2 {
  font-size: 36px !important;
}

@media (max-width: 767px) {
  .client-theme .hero-content h1,
  .client-theme .placeholder-page h1,
  .client-theme .section-heading h2,
  .client-theme .why-shell h2,
  .client-theme .cta-shell h2,
  .client-theme .enquiry-copy h2,
  .client-theme .reviews-shell h2,
  .client-theme .help-cta-shell h2,
  .client-theme .agency-copy-heading h2,
  .client-theme .begin-process-intro h2,
  .client-theme #how-to-begin .begin-process-intro h2,
  #booking-process h2,
  #how-to-begin h2,
  .client-theme #booking-process h2,
  .client-theme #how-to-begin h2,
  .client-theme .trust-intro h2,
  .client-theme .surprise-copy h2,
  .client-theme .other-categories-title h2,
  .client-theme .girlfriend-copy h2,
  .client-theme .dream-copy-shell h2,
  .client-theme .dream-copy-shell h3,
  .client-theme .bangalore-locations-title h2,
  .client-theme .escort-areas-title h2,
  .client-theme .selection-copy-shell h2,
  .client-theme .selection-copy-shell h3,
  .client-theme .faq-copy h2,
  .client-theme .next-copy-shell h2,
  .client-theme .conclusion-shell h2 {
    font-size: 34px !important;
  }
}

/* Reference footer */
.client-theme .site-footer {
  border-top: 0 !important;
  background: #8b0016 !important;
  color: #ffffff !important;
  font-family: Poppins, Arial, Helvetica, sans-serif !important;
}

.client-theme .footer-shell {
  width: min(calc(100% - 264px), 1632px) !important;
  max-width: 1632px !important;
  display: grid !important;
  grid-template-columns: minmax(190px, 1fr) minmax(260px, 1fr) minmax(300px, 0.95fr) minmax(340px, 0.9fr) !important;
  gap: clamp(52px, 5vw, 96px) !important;
  align-items: start !important;
  margin: 0 auto !important;
  padding: 106px 0 70px !important;
  background: transparent !important;
}

.client-theme .footer-column,
.client-theme .footer-brand,
.client-theme .footer-newsletter {
  display: block !important;
  min-width: 0 !important;
}

.client-theme .footer-column h2,
.client-theme .footer-newsletter h2 {
  margin: 0 0 28px !important;
  color: #ffffff !important;
  font-family: Poppins, Arial, Helvetica, sans-serif !important;
  font-size: 28px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.client-theme .footer-column a {
  display: block !important;
  width: fit-content !important;
  margin: 0 0 22px !important;
  color: #ffffff !important;
  font-family: Poppins, Arial, Helvetica, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.client-theme .footer-column a:hover,
.client-theme .footer-sister a:hover {
  color: #fbbf24 !important;
}

.client-theme .footer-logo {
  display: inline-grid !important;
  gap: 0 !important;
  margin: 0 0 26px !important;
  color: #fce690 !important;
  text-decoration: none !important;
  text-align: center !important;
  filter: drop-shadow(0 2px 0 rgba(90, 0, 0, 0.7));
}

.client-theme .footer-logo span {
  display: block !important;
  color: #fce690 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 50px !important;
  line-height: 0.9 !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.client-theme .footer-logo small {
  display: block !important;
  color: #fce690 !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.client-theme .footer-brand p {
  max-width: none !important;
  margin: 0 0 40px !important;
  color: #ffffff !important;
  font-size: 21px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

.client-theme .footer-sister {
  display: grid !important;
  gap: 4px !important;
}

.client-theme .footer-sister span {
  color: #ff9faf !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

.client-theme .footer-sister a {
  color: #fbbf24 !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.client-theme .footer-sister em {
  color: #ff9faf !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-style: normal !important;
  font-weight: 500 !important;
}

.client-theme .footer-newsletter form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 126px !important;
  width: 372px !important;
  max-width: 100% !important;
  margin: 0 0 34px !important;
}

.client-theme .footer-newsletter input {
  width: 100% !important;
  min-width: 0 !important;
  height: 56px !important;
  border: 0 !important;
  border-radius: 8px 0 0 8px !important;
  background: #ffffff !important;
  color: #111827 !important;
  padding: 0 18px !important;
  font-size: 22px !important;
  line-height: 1 !important;
  outline: 0 !important;
}

.client-theme .footer-newsletter input::placeholder {
  color: #6b7280 !important;
}

.client-theme .footer-newsletter button {
  height: 56px !important;
  border: 0 !important;
  border-radius: 0 8px 8px 0 !important;
  background: #f4b400 !important;
  color: #000000 !important;
  font-size: 21px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}

.client-theme .footer-newsletter img {
  width: 288px !important;
  max-width: 100% !important;
  height: auto !important;
}

.client-theme .footer-bottom {
  width: min(calc(100% - 264px), 1632px) !important;
  margin: 0 auto !important;
  padding: 36px 0 80px !important;
  border-top: 1px solid rgba(252, 230, 144, 0.25) !important;
  color: #ffffff !important;
  text-align: center !important;
  background: transparent !important;
}

.client-theme .footer-bottom p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 22px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

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

@media (max-width: 1200px) {
  .client-theme .footer-shell,
  .client-theme .footer-bottom {
    width: min(calc(100% - 56px), 1136px) !important;
  }

  .client-theme .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 52px !important;
  }
}

@media (max-width: 767px) {
  .client-theme .footer-shell,
  .client-theme .footer-bottom {
    width: calc(100% - 28px) !important;
  }

  .client-theme .footer-shell {
    grid-template-columns: 1fr !important;
    padding: 62px 0 42px !important;
    gap: 38px !important;
  }

  .client-theme .footer-column h2,
  .client-theme .footer-newsletter h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }

  .client-theme .footer-column a,
  .client-theme .footer-brand p,
  .client-theme .footer-bottom p {
    font-size: 18px !important;
  }

  .client-theme .footer-logo span {
    font-size: 40px !important;
  }

  .client-theme .footer-newsletter form {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .client-theme .footer-newsletter input,
  .client-theme .footer-newsletter button {
    border-radius: 8px !important;
  }

  .client-theme .footer-bottom {
    padding: 28px 0 54px !important;
    text-align: left !important;
  }
}

/* First fold reference lock */
body.client-theme {
  background:
    radial-gradient(circle at 50% 0, rgba(120, 0, 0, 0.28), transparent 420px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 14px),
    #2d0202 !important;
}

.client-theme .site-header,
.client-theme .top-contact-strip,
.client-theme .client-intro-section,
.client-theme .featured-section {
  background:
    radial-gradient(circle at 50% 0, rgba(120, 0, 0, 0.20), transparent 520px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 14px),
    #2d0202 !important;
}

.client-theme .top-contact-strip {
  padding: 30px 0 12px !important;
}

.client-theme .top-strip-shell {
  width: min(calc(100% - 170px), 1728px) !important;
  min-height: 258px !important;
  display: grid !important;
  grid-template-columns: 370px minmax(0, 1fr) 300px !important;
  grid-template-rows: auto auto auto !important;
  grid-template-areas:
    "logo title diva"
    "logo contact login"
    "logo time login" !important;
  align-items: center !important;
  column-gap: 34px !important;
  row-gap: 4px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.client-theme .site-logo {
  grid-area: logo !important;
  align-self: center !important;
  justify-self: start !important;
}

.client-theme .site-logo img {
  width: 260px !important;
  max-height: 170px !important;
  object-fit: contain !important;
}

.client-theme .agency-title {
  grid-area: title !important;
  align-self: end !important;
  justify-self: center !important;
  text-align: center !important;
  transform: none !important;
}

.client-theme .agency-title strong {
  color: #fce690 !important;
  font-size: 36px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
  letter-spacing: 10px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.client-theme .agency-title span {
  display: block !important;
  margin-top: 6px !important;
  color: #fce690 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  font-style: italic !important;
}

.client-theme .contact-cluster {
  grid-area: contact !important;
  width: 786px !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 330px 66px 340px !important;
  gap: 22px !important;
  align-items: center !important;
  justify-self: center !important;
  margin: 20px 0 0 !important;
}

.client-theme .contact-cluster a {
  min-height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #790003 !important;
  border-radius: 8px !important;
  background: rgba(66, 10, 10, 0.72) !important;
  color: #fce690 !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}

.client-theme .contact-cluster a:first-child::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 16px;
  border-radius: 50%;
  background: #fce690;
}

.client-theme .contact-cluster a:nth-child(2)::before {
  content: "\260E";
  margin-right: 16px;
  color: #fce690;
  font-size: 24px;
  line-height: 1;
}

.client-theme .contact-cluster::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1da1f2;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.10);
  justify-self: center;
}

.client-theme .contact-cluster a:first-child {
  grid-column: 1 !important;
}

.client-theme .contact-cluster a:nth-child(2) {
  grid-column: 3 !important;
}

.client-theme .contact-cluster span {
  grid-area: time !important;
  display: block !important;
  justify-self: center !important;
  margin-top: 8px !important;
  color: #fce690 !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-style: italic !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.client-theme .diva-link {
  grid-area: diva !important;
  width: 270px !important;
  height: 86px !important;
  min-height: 86px !important;
  align-self: center !important;
  justify-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.client-theme .diva-link img {
  width: 270px !important;
  height: 86px !important;
  object-fit: contain !important;
}

.client-theme .login-link {
  grid-area: login !important;
  justify-self: center !important;
  align-self: start !important;
  margin: 8px 0 0 !important;
  color: #fce690 !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.client-theme .nav-shell {
  width: min(calc(100% - 170px), 1728px) !important;
  min-height: 78px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  border-radius: 6px !important;
  background: #b90000 !important;
}

.client-theme .desktop-nav {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 0 !important;
}

.client-theme .desktop-nav a {
  min-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 38px !important;
  border-radius: 8px !important;
  color: #fce690 !important;
  background: transparent !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.client-theme .desktop-nav a:first-child,
.client-theme .desktop-nav a:hover {
  background: #5d0000 !important;
}

.client-intro-section {
  padding: 0 0 28px !important;
}

.client-intro-shell {
  width: min(calc(100% - 194px), 1728px) !important;
  padding-top: 0 !important;
}

.popular-head {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 588px !important;
  gap: 34px !important;
  align-items: end !important;
  margin: 0 !important;
  padding-top: 0 !important;
  border-bottom: 1px solid rgba(252, 230, 144, 0.12) !important;
}

.popular-head h1 {
  margin: 0 0 16px !important;
  color: #790003 !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}

.gallery-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 24px !important;
  padding: 18px 0 16px !important;
}

.gallery-tabs a {
  color: #fce690 !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

.selector-row {
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  padding-bottom: 16px !important;
}

.selector-row select {
  min-height: 62px !important;
  border-radius: 8px !important;
  background: #3b0505 !important;
  color: #fce690 !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

.client-search {
  width: 576px !important;
  max-width: 100% !important;
  grid-template-columns: 1fr 145px !important;
  margin: 42px auto 0 !important;
}

.client-search input,
.client-search button {
  min-height: 60px !important;
}

.client-search input {
  font-size: 24px !important;
}

.client-search button {
  font-size: 20px !important;
}

.client-theme .featured-section {
  padding: 26px 0 70px !important;
}

.client-theme .featured-shell {
  width: min(calc(100% - 194px), 1728px) !important;
}

.client-theme .featured-heading {
  margin: 0 0 28px !important;
}

.client-theme .featured-heading h2 {
  color: #790003 !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}

.client-theme .reference-slider {
  grid-auto-columns: calc((100% - 72px) / 4) !important;
  gap: 24px !important;
}

.client-theme .reference-profile-card .profile-card-head {
  min-height: 96px !important;
  padding: 18px 18px 12px !important;
}

.client-theme .reference-profile-card .profile-card-head h3 {
  font-size: 28px !important;
  line-height: 1.15 !important;
}

.client-theme .reference-profile-card .profile-card-head strong {
  font-size: 24px !important;
  line-height: 1.15 !important;
}

.client-theme .reference-profile-card .profile-card-head span {
  font-size: 18px !important;
  line-height: 1.2 !important;
}

@media (max-width: 1450px) {
  .client-theme .top-strip-shell,
  .client-theme .nav-shell,
  .client-intro-shell,
  .client-theme .featured-shell {
    width: min(calc(100% - 96px), 1728px) !important;
  }

  .client-theme .top-strip-shell {
    min-height: 260px !important;
    grid-template-columns: 380px minmax(0, 1fr) 310px !important;
  }

  .client-theme .site-logo img {
    width: 260px !important;
  }

  .client-theme .agency-title strong {
    font-size: 36px !important;
    letter-spacing: 9px !important;
  }

  .client-theme .contact-cluster {
    width: 996px !important;
    grid-template-columns: minmax(0, 430px) 70px minmax(0, 438px) !important;
  }

  .client-theme .desktop-nav a {
    font-size: 24px !important;
    padding-inline: 30px !important;
  }

  .popular-head {
    grid-template-columns: minmax(0, 1fr) 840px !important;
  }
}

@media (max-width: 1199px) {
  .client-theme .top-strip-shell {
    width: min(calc(100% - 48px), 980px) !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "logo"
      "title"
      "contact"
      "time"
      "diva"
      "login" !important;
    row-gap: 18px !important;
    text-align: center !important;
  }

  .client-theme .site-logo,
  .client-theme .diva-link,
  .client-theme .login-link {
    justify-self: center !important;
  }

  .client-theme .contact-cluster {
    width: min(100%, 786px) !important;
  }

  .client-theme .nav-shell,
  .client-intro-shell,
  .client-theme .featured-shell {
    width: min(calc(100% - 48px), 980px) !important;
  }

  .client-theme .desktop-nav {
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }

  .popular-head {
    grid-template-columns: 1fr !important;
  }

  .selector-row {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .client-theme .top-contact-strip {
    padding: 24px 0 10px !important;
  }

  .client-theme .agency-title strong,
  .client-theme .featured-heading h2,
  .popular-head h1 {
    font-size: 30px !important;
  }

  .client-theme .agency-title strong {
    letter-spacing: 4px !important;
    white-space: normal !important;
  }

  .client-theme .contact-cluster {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .client-theme .contact-cluster::after {
    display: none !important;
  }

  .client-theme .contact-cluster a,
  .client-theme .contact-cluster a:first-child,
  .client-theme .contact-cluster a:nth-child(2) {
    grid-column: auto !important;
    font-size: 20px !important;
  }

  .client-theme .contact-cluster span {
    grid-area: auto !important;
    font-size: 22px !important;
  }

  .client-theme .nav-shell,
  .client-intro-shell,
  .client-theme .featured-shell {
    width: min(calc(100% - 28px), 520px) !important;
  }

  .client-theme .desktop-nav {
    display: none !important;
  }

  .client-theme .header-actions {
    display: flex !important;
  }

  .client-theme .reference-slider {
    grid-auto-columns: calc((100% - 12px) / 2) !important;
    gap: 12px !important;
  }
}

/* Exact first-fold font pass from reference DevTools */
.client-theme .top-contact-strip {
  padding: 26px 0 10px !important;
}

.client-theme .top-strip-shell {
  min-height: 242px !important;
}

.client-theme .agency-title strong {
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 500 !important;
  letter-spacing: 7px !important;
}

.client-theme .agency-title span {
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.client-theme .contact-cluster {
  margin-top: 12px !important;
}

.client-theme .contact-cluster a {
  min-height: 56px !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}

.client-theme .contact-cluster span {
  margin-top: 4px !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 600 !important;
  font-style: italic !important;
}

.client-theme .login-link {
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

.client-theme .nav-shell {
  min-height: 78px !important;
  padding: 0 48px !important;
}

.client-theme .desktop-nav a {
  min-height: 36px !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
}

.client-theme .desktop-nav a:first-child {
  padding: 8px 16px !important;
}

.client-intro-section {
  padding-bottom: 26px !important;
}

.popular-head h1 {
  margin-bottom: 12px !important;
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.gallery-tabs {
  padding: 14px 0 12px !important;
  gap: 0 24px !important;
}

.gallery-tabs a {
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
}

.selector-row select {
  min-height: 42px !important;
  padding: 8px 32px 8px 12px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
}

.client-search {
  margin-top: 36px !important;
}

.client-search input,
.client-search button {
  min-height: 40px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.client-search input {
  font-size: 16px !important;
  line-height: 24px !important;
}

.client-search button {
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 700 !important;
}

.client-theme .featured-section {
  padding-top: 28px !important;
}

.client-theme .featured-heading h2 {
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.client-theme .reference-profile-card .profile-card-head {
  min-height: 72px !important;
  padding: 14px 18px 10px !important;
}

.client-theme .reference-profile-card .profile-card-head h3 {
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
}

.client-theme .reference-profile-card .profile-card-head strong {
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
}

.client-theme .reference-profile-card .profile-card-head span {
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
}

@media (max-width: 1450px) {
  .client-theme .agency-title strong {
    font-size: 30px !important;
    letter-spacing: 7px !important;
  }

  .client-theme .contact-cluster a,
  .client-theme .contact-cluster span {
    font-size: 20px !important;
  }

  .client-theme .desktop-nav a {
    font-size: 16px !important;
    padding: 8px 16px !important;
  }
}

@media (max-width: 767px) {
  .client-theme .agency-title strong,
  .popular-head h1,
  .client-theme .featured-heading h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }

  .client-theme .contact-cluster a,
  .client-theme .contact-cluster span {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}

/* Reference header final lock */
.client-theme .site-header,
.client-theme .top-contact-strip {
  background:
    radial-gradient(circle at 50% 0, rgba(120, 0, 0, 0.20), transparent 520px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 14px),
    #2d0202 !important;
}

.client-theme .top-contact-strip {
  padding: 26px 0 10px !important;
}

.client-theme .top-strip-shell {
  width: min(calc(100% - 170px), 1728px) !important;
  min-height: 242px !important;
  display: grid !important;
  grid-template-columns: 370px minmax(0, 1fr) 300px !important;
  grid-template-rows: auto auto auto !important;
  grid-template-areas:
    "logo title diva"
    "logo contact login"
    "logo time login" !important;
  column-gap: 34px !important;
  row-gap: 4px !important;
  align-items: center !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.client-theme .site-logo {
  grid-area: logo !important;
  justify-self: start !important;
  align-self: center !important;
  transform: none !important;
}

.client-theme .site-logo img {
  width: 230px !important;
  max-width: 100% !important;
  max-height: 170px !important;
  object-fit: contain !important;
}

.client-theme .agency-title {
  grid-area: title !important;
  justify-self: center !important;
  align-self: end !important;
  text-align: center !important;
}

.client-theme .agency-title strong {
  color: #fce690 !important;
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 500 !important;
  letter-spacing: 7px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.client-theme .agency-title span {
  display: block !important;
  margin-top: 2px !important;
  color: #fce690 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

.client-theme .contact-cluster {
  grid-area: contact !important;
  width: 640px !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 270px 54px 280px !important;
  grid-template-rows: 56px 32px !important;
  gap: 18px !important;
  justify-self: center !important;
  align-items: center !important;
  margin: 12px 0 0 !important;
}

.client-theme .contact-cluster a {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px 16px !important;
  border: 1px solid #790003 !important;
  border-radius: 8px !important;
  background: rgba(66, 10, 10, 0.72) !important;
  color: #fce690 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  white-space: nowrap !important;
}

.client-theme .contact-cluster::after {
  content: "" !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 44px !important;
  height: 44px !important;
  justify-self: center !important;
  border-radius: 50% !important;
  background: #1da1f2 !important;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.10) !important;
}

.client-theme .contact-cluster span {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  display: block !important;
  justify-self: center !important;
  margin: 0 !important;
  color: #fce690 !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-style: italic !important;
  font-weight: 800 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.client-theme .diva-link {
  grid-area: diva !important;
  width: 220px !important;
  height: 77px !important;
  min-height: 77px !important;
  justify-self: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.client-theme .diva-link img {
  width: 220px !important;
  height: 77px !important;
  object-fit: contain !important;
}

.client-theme .login-link {
  grid-area: login !important;
  justify-self: center !important;
  align-self: center !important;
  margin: 0 !important;
  color: #fce690 !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

.client-theme .nav-shell {
  width: min(calc(100% - 170px), 1728px) !important;
  min-height: 78px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  border-radius: 6px !important;
  background: #b90000 !important;
}

.client-theme .desktop-nav {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 0 !important;
}

.client-theme .desktop-nav a {
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  color: #fce690 !important;
  background: transparent !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.client-theme .desktop-nav a:first-child,
.client-theme .desktop-nav a:hover {
  background: #5d0000 !important;
}

@media (max-width: 1450px) {
  .client-theme .top-strip-shell,
  .client-theme .nav-shell {
    width: min(calc(100% - 96px), 1728px) !important;
  }

  .client-theme .top-strip-shell {
    grid-template-columns: 330px minmax(0, 1fr) 300px !important;
  }

  .client-theme .site-logo img {
    width: 280px !important;
  }

  .client-theme .agency-title strong {
    font-size: 32px !important;
    letter-spacing: 8px !important;
  }

  .client-theme .contact-cluster {
    width: 786px !important;
    grid-template-columns: 330px 66px 340px !important;
  }

  .client-theme .desktop-nav a {
    font-size: 20px !important;
    padding-inline: 14px !important;
  }
}

@media (max-width: 1200px) {
  .client-theme .top-strip-shell {
    width: min(calc(100% - 48px), 980px) !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "logo"
      "title"
      "contact"
      "time"
      "diva"
      "login" !important;
    row-gap: 18px !important;
    text-align: center !important;
  }

  .client-theme .site-logo,
  .client-theme .diva-link,
  .client-theme .login-link {
    justify-self: center !important;
  }

  .client-theme .contact-cluster {
    width: min(100%, 786px) !important;
  }
}

/* Reference popular galleries final lock */
.client-intro-section {
  padding: 0 0 28px !important;
}

.client-intro-shell {
  width: min(calc(100% - 194px), 1728px) !important;
  padding-top: 0 !important;
}

.popular-head {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 588px !important;
  gap: 34px !important;
  align-items: end !important;
  margin: 0 !important;
  padding-top: 0 !important;
  border-bottom: 1px solid rgba(252, 230, 144, 0.12) !important;
}

.popular-left {
  min-width: 0 !important;
}

.popular-head h1 {
  margin: 0 0 12px !important;
  color: #790003 !important;
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.gallery-tabs {
  width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 24px !important;
  padding: 14px 0 12px !important;
  overflow: visible !important;
  white-space: nowrap !important;
}

.gallery-tabs a {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  color: #fce690 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.selector-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  padding-bottom: 16px !important;
}

.selector-row select {
  min-height: 42px !important;
  padding: 8px 32px 8px 12px !important;
  border: 1px solid #790003 !important;
  border-radius: 6px !important;
  background: #2e100f !important;
  color: #fce690 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
}

.client-search {
  width: 576px !important;
  max-width: 100% !important;
  grid-template-columns: 1fr 145px !important;
  margin: 36px auto 0 !important;
}

.client-search input,
.client-search button {
  min-height: 40px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  font-size: 16px !important;
  line-height: 24px !important;
}

.client-search button {
  font-weight: 700 !important;
}

@media (max-width: 1200px) {
  .popular-head {
    grid-template-columns: 1fr !important;
  }

  .gallery-tabs {
    flex-wrap: wrap !important;
  }

  .selector-row {
    width: 100% !important;
  }
}

/* Pasted compact preview lock */
.client-theme,
.client-theme button,
.client-theme input,
.client-theme select,
.client-theme textarea {
  font-family: Montserrat, Poppins, Arial, Helvetica, sans-serif !important;
}

body.client-theme,
.client-theme .site-header,
.client-theme .top-contact-strip,
.client-theme .client-intro-section,
.client-theme .featured-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 14, 8, 0.35), transparent 45%),
    linear-gradient(180deg, #500805 0%, #360605 100%) !important;
}

.client-theme .top-contact-strip {
  padding: 38px 0 20px !important;
}

.client-theme .top-strip-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 210px !important;
  display: grid !important;
  grid-template-columns: 260px 1fr 240px !important;
  grid-template-areas:
    "logo title diva"
    "logo contact login" !important;
  gap: 25px !important;
  align-items: center !important;
}

.client-theme .site-logo {
  grid-area: logo !important;
  justify-self: start !important;
}

.client-theme .text-logo {
  display: block !important;
  color: #ffe681 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 88px !important;
  line-height: 0.95 !important;
  letter-spacing: -5px !important;
}

.client-theme .agency-title {
  grid-area: title !important;
  text-align: center !important;
  align-self: end !important;
}

.client-theme .agency-title strong {
  margin: 0 !important;
  color: #ffe681 !important;
  font-size: 35px !important;
  line-height: 1.15 !important;
  letter-spacing: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.client-theme .agency-title span,
.client-theme .contact-cluster span {
  color: #ffe681 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

.client-theme .agency-title span {
  margin-top: 6px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
}

.client-theme .contact-cluster {
  grid-area: contact !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
}

.client-theme .contact-cluster a {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 11px 15px !important;
  border: 1px solid rgba(198, 26, 20, 0.75) !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: #ffe681 !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

.client-theme .contact-cluster::after {
  content: "\f2c6" !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #209ad6 !important;
  color: #ffffff !important;
  font: 400 22px/1 "Font Awesome 6 Brands" !important;
  box-shadow: none !important;
  order: 2 !important;
}

.client-theme .contact-cluster a:first-child {
  order: 1 !important;
}

.client-theme .contact-cluster a:nth-child(2) {
  order: 3 !important;
}

.client-theme .contact-cluster span {
  flex: 0 0 100% !important;
  order: 4 !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.client-theme .diva-link {
  grid-area: diva !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  display: inline-flex !important;
  padding: 9px 18px !important;
  border-radius: 5px !important;
  background: #ffe681 !important;
  color: #900000 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.client-theme .login-link {
  grid-area: login !important;
  justify-self: center !important;
  align-self: start !important;
  margin-top: 18px !important;
  color: #ffe681 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.client-theme .nav-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 67px !important;
  padding: 0 !important;
  border-radius: 7px !important;
  overflow: hidden !important;
  background: #900005 !important;
}

.client-theme .desktop-nav {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 0 !important;
}

.client-theme .desktop-nav a {
  min-height: 67px !important;
  padding: 8px !important;
  border-radius: 0 !important;
  color: #ffe681 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.client-theme .desktop-nav a:first-child,
.client-theme .desktop-nav a:hover {
  background: #a90008 !important;
}

.client-intro-shell {
  width: min(calc(100% - 48px), 1480px) !important;
}

.popular-head {
  grid-template-columns: 1fr auto !important;
  gap: 30px !important;
  align-items: center !important;
  border-top: 1px solid rgba(131, 19, 17, 0.45) !important;
  border-bottom: 0 !important;
  padding-top: 17px !important;
}

.popular-head h1 {
  color: #98000a !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.gallery-tabs {
  gap: 23px !important;
  padding: 0 !important;
}

.gallery-tabs a {
  color: #ffe681 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.selector-row {
  display: flex !important;
  gap: 15px !important;
  padding-bottom: 0 !important;
}

.selector-row select {
  width: 205px !important;
  min-height: 55px !important;
  padding: 0 16px !important;
  background: #3e1110 !important;
  color: #ffe681 !important;
  border: 1px solid #98231c !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.selector-row select[name="location"] {
  width: 285px !important;
}

.client-search {
  width: 500px !important;
  grid-template-columns: 1fr 125px !important;
  margin-top: 50px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.client-search input {
  min-height: 52px !important;
  padding: 0 20px !important;
  font-size: 17px !important;
}

.client-search button {
  min-height: 52px !important;
  background: #ffe681 !important;
  color: #8b1212 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

.client-theme .featured-section {
  padding-top: 55px !important;
}

.client-theme .featured-heading h2 {
  color: #9c0010 !important;
  font-size: 23px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

@media (max-width: 1100px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 180px 1fr 160px !important;
  }

  .client-theme .text-logo {
    font-size: 62px !important;
  }

  .client-theme .agency-title strong {
    font-size: 25px !important;
    letter-spacing: 6px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .client-theme .top-strip-shell {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .client-theme .text-logo {
    font-size: 64px !important;
  }

  .client-theme .agency-title strong {
    font-size: 21px !important;
    letter-spacing: 3px !important;
    white-space: normal !important;
  }

  .client-theme .contact-cluster a {
    width: 100% !important;
    font-size: 16px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .selector-row {
    display: grid !important;
    width: 100% !important;
  }

  .selector-row select,
  .selector-row select[name="location"] {
    width: 100% !important;
  }

  .client-search {
    grid-template-columns: 1fr !important;
  }
}

/* Exact footer font pass from reference DevTools */
.client-theme .site-footer {
  background: #8b0016 !important;
}

.client-theme .footer-shell {
  width: min(calc(100% - 264px), 1632px) !important;
  grid-template-columns: minmax(190px, 1fr) minmax(260px, 1fr) minmax(300px, 0.95fr) minmax(340px, 0.9fr) !important;
  gap: clamp(52px, 5vw, 96px) !important;
  padding: 56px 0 54px !important;
}

.client-theme .footer-column h2,
.client-theme .footer-newsletter h2 {
  margin: 0 0 16px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.client-theme .footer-column a {
  margin: 0 0 12px !important;
  color: #d1d5db !important;
  font-size: 14px !important;
  line-height: 19.33px !important;
  font-weight: 400 !important;
}

.client-theme .footer-column a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.client-theme .footer-logo {
  display: block !important;
  width: 305px !important;
  max-width: 100% !important;
  margin: 0 0 24px !important;
  text-align: left !important;
  filter: none !important;
}

.client-theme .footer-logo img {
  width: 305px !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.client-theme .footer-brand p {
  margin: 0 0 34px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

.client-theme .footer-sister span {
  color: #9ca3af !important;
  font-size: 10px !important;
  line-height: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

.client-theme .footer-sister a {
  color: #eab308 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
}

.client-theme .footer-sister em {
  color: #9ca3af !important;
  font-size: 12px !important;
  line-height: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.client-theme .footer-newsletter form {
  grid-template-columns: minmax(0, 1fr) 126px !important;
  width: 372px !important;
  margin: 0 0 34px !important;
}

.client-theme .footer-newsletter input {
  height: 56px !important;
  padding: 0 18px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

.client-theme .footer-newsletter button {
  height: 56px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 500 !important;
}

.client-theme .footer-newsletter img {
  width: 288px !important;
  max-width: 100% !important;
}

.client-theme .footer-bottom {
  width: min(calc(100% - 264px), 1632px) !important;
  padding: 28px 0 54px !important;
}

.client-theme .footer-bottom p {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

@media (max-width: 1200px) {
  .client-theme .footer-shell,
  .client-theme .footer-bottom {
    width: min(calc(100% - 56px), 1136px) !important;
  }

  .client-theme .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .client-theme .footer-shell,
  .client-theme .footer-bottom {
    width: calc(100% - 28px) !important;
  }

  .client-theme .footer-shell {
    grid-template-columns: 1fr !important;
    padding: 46px 0 38px !important;
  }
}

/* Footer overflow fix */
@media (min-width: 1201px) {
  .client-theme .footer-shell {
    width: min(calc(100% - 264px), 1632px) !important;
    grid-template-columns: 300px 304px 296px 372px !important;
    column-gap: 120px !important;
    row-gap: 0 !important;
    justify-content: start !important;
    overflow: visible !important;
  }

  .client-theme .footer-newsletter {
    width: 372px !important;
    max-width: 372px !important;
  }

  .client-theme .footer-newsletter form {
    width: 372px !important;
    max-width: 372px !important;
  }

  .client-theme .footer-newsletter img {
    width: 288px !important;
    max-width: 288px !important;
  }
}

/* Locations page from provided reference */
.client-theme .hsg-locations {
  min-height: 100vh !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 0, 153, 0.08), transparent 25%),
    linear-gradient(180deg, #0a0a0a 0%, #030303 100%) !important;
  color: #ffffff !important;
  padding: 52px 28px 90px !important;
}

.client-theme .hsg-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
}

.client-theme .hsg-banner {
  display: grid !important;
  grid-template-columns: 58% 42% !important;
  min-height: 350px !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38) !important;
  margin-bottom: 60px !important;
}

.client-theme .hsg-banner-left {
  position: relative !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.02)),
    url("https://images.unsplash.com/photo-1596176530529-78163a4f7af2?auto=format&fit=crop&w=1400&q=85") center / cover no-repeat !important;
}

.client-theme .hsg-banner-left::before {
  content: "Bangalore" !important;
  position: absolute !important;
  left: 28px !important;
  top: 25px !important;
  color: #ffffff !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38) !important;
}

.client-theme .hsg-banner-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 30px !important;
  background: #ffffff !important;
  color: #111111 !important;
}

.client-theme .hsg-mini-logo {
  color: #050505 !important;
  font-size: 48px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
}

.client-theme .hsg-mini-logo span,
.client-theme .hsg-count span,
.client-theme .hsg-copy h1,
.client-theme .hsg-filter-title span,
.client-theme .hsg-empty-icon {
  color: #ff0099 !important;
}

.client-theme .hsg-count {
  margin-top: 20px !important;
  font-size: 38px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.client-theme .hsg-copy {
  padding: 0 18px !important;
}

.client-theme .hsg-copy h1 {
  margin: 0 0 18px !important;
  font-size: 50px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
}

.client-theme .hsg-copy p {
  margin: 0 0 14px !important;
  color: #f0f0f0 !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
}

.client-theme .hsg-filter-title {
  margin: 56px 0 28px !important;
  color: #ffffff !important;
  text-align: center !important;
  text-transform: uppercase !important;
  font-size: 29px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.client-theme .hsg-alphabet {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 14px !important;
  max-width: 1280px !important;
  margin: 0 auto 58px !important;
}

.client-theme .hsg-letter {
  width: 60px !important;
  height: 60px !important;
  border: 1px solid #373737 !important;
  border-radius: 8px !important;
  background: #202020 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease !important;
}

.client-theme .hsg-letter:hover {
  transform: translateY(-2px) !important;
  border-color: #ff0099 !important;
  color: #ff0099 !important;
}

.client-theme .hsg-letter.active {
  background: #ff0099 !important;
  border-color: #ff0099 !important;
  color: #ffffff !important;
  box-shadow: 0 7px 20px rgba(255, 0, 153, 0.28) !important;
}

.client-theme .hsg-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.client-theme .hsg-card {
  position: relative !important;
  height: 250px !important;
  overflow: hidden !important;
  border-radius: 9px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: #151515 !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22) !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}

.client-theme .hsg-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 0, 153, 0.75) !important;
  box-shadow: 0 15px 34px rgba(255, 0, 153, 0.10) !important;
}

.client-theme .hsg-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.client-theme .hsg-card:hover img {
  transform: scale(1.05) !important;
}

.client-theme .hsg-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.20) 48%, rgba(0, 0, 0, 0) 70%) !important;
}

.client-theme .hsg-name {
  position: absolute !important;
  z-index: 2 !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 13px !important;
  color: #ffffff !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.client-theme .hsg-name::after {
  content: "" !important;
  display: block !important;
  width: 30px !important;
  height: 2px !important;
  margin: 7px auto 0 !important;
  background: #ff0099 !important;
}

.client-theme .hsg-card.hidden {
  display: none !important;
}

.client-theme .hsg-empty {
  display: none !important;
  max-width: 600px !important;
  margin: 20px auto 0 !important;
  padding: 40px 28px !important;
  text-align: center !important;
  border-radius: 12px !important;
  border: 1px solid #2b2b2b !important;
  background: #141414 !important;
}

.client-theme .hsg-empty.show {
  display: block !important;
}

.client-theme .hsg-empty-icon {
  margin-bottom: 10px !important;
  font-size: 44px !important;
}

.client-theme .hsg-empty h3 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 24px !important;
}

.client-theme .hsg-empty p {
  margin: 0 !important;
  color: #aaaaaa !important;
  line-height: 1.7 !important;
}

.client-theme .hsg-show-all {
  margin-top: 20px !important;
  border: 0 !important;
  border-radius: 7px !important;
  padding: 12px 22px !important;
  background: #ff0099 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.client-theme .hsg-top {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 100 !important;
  width: 54px !important;
  height: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #ff0099 !important;
  color: #ffffff !important;
  font-size: 24px !important;
  box-shadow: 0 10px 28px rgba(255, 0, 153, 0.27) !important;
}

@media (max-width: 1100px) {
  .client-theme .hsg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .client-theme .hsg-copy h1 {
    font-size: 42px !important;
  }
}

/* Dynamic single-location pages */
.client-theme .location-detail-page {
  min-height: 100vh !important;
  padding: 75px 28px 90px !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 0, 153, 0.09), transparent 25%),
    linear-gradient(180deg, #0b0b0b, #030303) !important;
  color: #ffffff !important;
}

.client-theme .location-detail-shell,
.client-theme .location-detail-intro,
.client-theme .location-detail-profiles,
.client-theme .location-detail-other {
  max-width: 1360px !important;
  margin: 0 auto !important;
}

.client-theme .location-detail-hero {
  max-width: 1440px !important;
  min-height: 365px !important;
  display: grid !important;
  grid-template-columns: 58% 42% !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4) !important;
  margin: 0 auto !important;
}

.client-theme .location-detail-hero-image {
  position: relative !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.02)),
    url("https://images.unsplash.com/photo-1596176530529-78163a4f7af2?auto=format&fit=crop&w=1500&q=85") center / cover no-repeat !important;
}

.client-theme .location-detail-hero-copy {
  position: absolute !important;
  left: 34px !important;
  right: 34px !important;
  bottom: 32px !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5) !important;
}

.client-theme .location-detail-hero-copy span {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

.client-theme .location-detail-hero-copy h1 {
  margin: 8px 0 4px !important;
  color: #ffffff !important;
  font-size: 54px !important;
  line-height: 1.05 !important;
}

.client-theme .location-detail-hero-copy p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 20px !important;
}

.client-theme .location-detail-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 30px !important;
  color: #050505 !important;
  text-align: center !important;
}

.client-theme .location-detail-logo {
  font-size: 48px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.client-theme .location-detail-logo span,
.client-theme .location-detail-count strong,
.client-theme .location-detail-intro h2,
.client-theme .location-detail-heading h2,
.client-theme .location-detail-profile-body h3,
.client-theme .location-detail-other h2 span {
  color: #ff0099 !important;
}

.client-theme .location-detail-sublogo {
  margin-top: 5px !important;
  font-size: 38px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 5px !important;
}

.client-theme .location-detail-count {
  margin-top: 28px !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.client-theme .location-detail-intro {
  padding-top: 58px !important;
}

.client-theme .location-detail-intro h2 {
  margin: 0 !important;
  font-size: 50px !important;
  line-height: 1.1 !important;
}

.client-theme .location-detail-lead {
  margin: 7px 0 26px !important;
  color: #dddddd !important;
  font-size: 22px !important;
}

.client-theme .location-detail-box {
  margin: 20px 0 !important;
  padding: 30px !important;
  border: 1px solid #252525 !important;
  border-radius: 9px !important;
  background: #111111 !important;
}

.client-theme .location-detail-box h3 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 28px !important;
}

.client-theme .location-detail-box p,
.client-theme .location-detail-feature p {
  margin: 0 !important;
  color: #e9e9e9 !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.client-theme .location-detail-feature {
  margin: 22px 0 !important;
  padding: 36px !important;
  display: grid !important;
  grid-template-columns: 1fr 180px !important;
  gap: 28px !important;
  border-radius: 10px !important;
  background: #f4eadc !important;
  color: #111111 !important;
}

.client-theme .location-detail-feature h3 {
  margin: 0 0 12px !important;
  color: #111111 !important;
  font-size: 33px !important;
}

.client-theme .location-detail-feature p {
  color: #111111 !important;
}

.client-theme .location-detail-feature span {
  border-left: 1px solid #d4c6b2 !important;
}

.client-theme .location-detail-profiles {
  padding-top: 42px !important;
}

.client-theme .location-detail-heading {
  margin-bottom: 22px !important;
}

.client-theme .location-detail-heading h2 {
  margin: 0 !important;
  font-size: 37px !important;
}

.client-theme .location-detail-heading span {
  display: block !important;
  margin-top: 10px !important;
  width: 100% !important;
  height: 1px !important;
  background: rgba(255, 0, 153, 0.35) !important;
}

.client-theme .location-detail-profile-grid,
.client-theme .location-detail-location-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.client-theme .location-detail-profile-card {
  overflow: hidden !important;
  border: 1px solid #292929 !important;
  border-radius: 9px !important;
  background: #111111 !important;
}

.client-theme .location-detail-profile-image {
  height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(145deg, #222222, #111111) !important;
  color: #777777 !important;
  font-weight: 700 !important;
  position: relative !important;
  text-decoration: none !important;
}

.client-theme .location-detail-profile-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.client-theme .location-detail-profile-image span {
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 14px !important;
  width: auto !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.72) !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  text-align: center !important;
}

.client-theme .location-detail-profile-body {
  padding: 18px !important;
}

.client-theme .location-detail-profile-body h3 {
  margin: 0 0 8px !important;
  font-size: 20px !important;
}

.client-theme .location-detail-profile-body p {
  margin: 0 !important;
  color: #aaaaaa !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.client-theme .location-detail-other {
  padding-top: 68px !important;
}

.client-theme .location-detail-other h2 {
  margin: 0 0 28px !important;
  color: #ffffff !important;
  text-align: center !important;
  font-size: 33px !important;
  text-transform: uppercase !important;
}

.client-theme .location-detail-alphabet {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 48px !important;
}

.client-theme .location-detail-letter {
  width: 58px !important;
  height: 58px !important;
  border: 1px solid #353535 !important;
  border-radius: 8px !important;
  background: #202020 !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.client-theme .location-detail-letter:hover {
  border-color: #ff0099 !important;
  color: #ff0099 !important;
}

.client-theme .location-detail-letter.active {
  background: #ff0099 !important;
  border-color: #ff0099 !important;
  color: #ffffff !important;
}

.client-theme .location-detail-location-card {
  height: 220px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 18px !important;
  border: 1px solid #282828 !important;
  border-radius: 9px !important;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=800&q=80") center / cover no-repeat !important;
}

.client-theme .location-detail-location-card span {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.client-theme .location-detail-location-card.hidden {
  display: none !important;
}

.client-theme .location-detail-empty {
  display: none !important;
  max-width: 520px !important;
  margin: 20px auto 0 !important;
  padding: 35px !important;
  border: 1px solid #292929 !important;
  border-radius: 10px !important;
  background: #111111 !important;
  text-align: center !important;
}

.client-theme .location-detail-empty.show {
  display: block !important;
}

.client-theme .location-detail-empty h3 {
  color: #ffffff !important;
}

.client-theme .location-detail-empty p {
  color: #aaaaaa !important;
}

.client-theme .location-detail-empty button {
  border: 0 !important;
  border-radius: 7px !important;
  background: #ff0099 !important;
  color: #ffffff !important;
  padding: 12px 20px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

@media (max-width: 1100px) {
  .client-theme .location-detail-profile-grid,
  .client-theme .location-detail-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .client-theme .location-detail-hero-copy h1 {
    font-size: 44px !important;
  }
}

@media (max-width: 767px) {
  .client-theme .location-detail-page {
    padding: 30px 14px 70px !important;
  }

  .client-theme .location-detail-hero,
  .client-theme .location-detail-feature {
    grid-template-columns: 1fr !important;
  }

  .client-theme .location-detail-hero-image {
    min-height: 260px !important;
  }

  .client-theme .location-detail-brand {
    min-height: 210px !important;
  }

  .client-theme .location-detail-logo {
    font-size: 34px !important;
  }

  .client-theme .location-detail-sublogo {
    font-size: 28px !important;
  }

  .client-theme .location-detail-count {
    font-size: 26px !important;
  }

  .client-theme .location-detail-intro h2 {
    font-size: 35px !important;
  }

  .client-theme .location-detail-lead {
    font-size: 18px !important;
  }

  .client-theme .location-detail-feature span {
    display: none !important;
  }

  .client-theme .location-detail-profile-grid,
  .client-theme .location-detail-location-grid {
    grid-template-columns: 1fr !important;
  }

  .client-theme .location-detail-profile-image {
    height: 300px !important;
  }

  .client-theme .location-detail-letter {
    width: 46px !important;
    height: 46px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 767px) {
  .client-theme .hsg-locations {
    padding: 28px 14px 70px !important;
  }

  .client-theme .hsg-banner {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .client-theme .hsg-banner-left {
    min-height: 220px !important;
  }

  .client-theme .hsg-banner-left::before {
    font-size: 28px !important;
  }

  .client-theme .hsg-banner-right {
    min-height: 190px !important;
  }

  .client-theme .hsg-mini-logo {
    font-size: 35px !important;
  }

  .client-theme .hsg-count {
    font-size: 28px !important;
  }

  .client-theme .hsg-copy {
    padding: 0 3px !important;
  }

  .client-theme .hsg-copy h1 {
    font-size: 34px !important;
  }

  .client-theme .hsg-copy p {
    font-size: 16px !important;
  }

  .client-theme .hsg-filter-title {
    font-size: 22px !important;
  }

  .client-theme .hsg-alphabet {
    gap: 9px !important;
  }

  .client-theme .hsg-letter {
    width: 46px !important;
    height: 46px !important;
    font-size: 15px !important;
  }

  .client-theme .hsg-grid {
    grid-template-columns: 1fr !important;
  }

  .client-theme .hsg-card {
    height: 265px !important;
  }
}

/* Footer final reference lock */
.client-theme .conclusion-section {
  padding-bottom: 0 !important;
}

.client-theme .site-footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: #8b0016 !important;
}

.client-theme .footer-shell {
  padding-top: 78px !important;
  padding-bottom: 70px !important;
}

.client-theme .footer-bottom {
  padding-top: 36px !important;
  padding-bottom: 80px !important;
}

@media (min-width: 1201px) {
  .client-theme .footer-shell,
  .client-theme .footer-bottom {
    width: min(calc(100% - 264px), 1632px) !important;
  }

  .client-theme .footer-shell {
    grid-template-columns: 300px 304px 296px 372px !important;
    column-gap: 120px !important;
    justify-content: start !important;
  }
}

/* Footer exact desktop placement */
@media (min-width: 1201px) {
  .client-theme .footer-shell {
    position: static !important;
    display: grid !important;
    width: min(calc(100% - 264px), 1632px) !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 106px 0 70px !important;
    grid-template-columns: 300px 304px 220px 244px !important;
    column-gap: 28px !important;
    row-gap: 0 !important;
    justify-content: space-between !important;
    align-items: start !important;
  }

  .client-theme .footer-shell > .footer-column:nth-child(1),
  .client-theme .footer-shell > .footer-column:nth-child(2),
  .client-theme .footer-shell > .footer-brand,
  .client-theme .footer-shell > .footer-newsletter {
    position: static !important;
    top: auto !important;
    left: auto !important;
  }

  .client-theme .footer-shell > .footer-column:nth-child(1) {
    width: 300px !important;
  }

  .client-theme .footer-shell > .footer-column:nth-child(2) {
    width: 304px !important;
  }

  .client-theme .footer-shell > .footer-brand {
    width: 220px !important;
    margin-left: -70px !important;
  }

  .client-theme .footer-logo {
    width: 220px !important;
  }

  .client-theme .footer-logo img {
    width: 220px !important;
  }

  .client-theme .footer-shell > .footer-newsletter {
    width: 244px !important;
    margin-left: -85px !important;
  }

  .client-theme .footer-newsletter form {
    grid-template-columns: minmax(0, 1fr) 82px !important;
    width: 244px !important;
    max-width: 244px !important;
  }

  .client-theme .footer-newsletter input {
    height: 42px !important;
    padding: 0 12px !important;
    font-size: 15px !important;
  }

  .client-theme .footer-newsletter button {
    height: 42px !important;
    font-size: 15px !important;
  }

  .client-theme .footer-newsletter img {
    width: 244px !important;
    max-width: 244px !important;
  }

  .client-theme .footer-bottom {
    width: min(calc(100% - 264px), 1632px) !important;
    margin: 0 auto !important;
    padding: 36px 0 80px !important;
    border-top: 1px solid rgba(252, 230, 144, 0.25) !important;
    text-align: center !important;
  }
}

/* Final first-fold reference lock: keep this as the last desktop header override. */
@media (min-width: 1201px) {
  .client-theme .site-header {
    padding: 0 !important;
    background:
      linear-gradient(rgba(52, 0, 0, 0.16), rgba(52, 0, 0, 0.16)),
      #3b0605 !important;
  }

  .client-theme .top-contact-strip {
    height: 300px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .client-theme .top-strip-shell {
    position: relative !important;
    display: block !important;
    width: min(calc(100% - 170px), 1728px) !important;
    height: 300px !important;
    min-height: 300px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .client-theme .site-logo {
    position: absolute !important;
    left: 0 !important;
    top: 92px !important;
    width: 310px !important;
    height: 130px !important;
    display: flex !important;
    align-items: center !important;
  }

  .client-theme .site-logo img {
    width: 300px !important;
    max-width: 300px !important;
    height: auto !important;
  }

  .client-theme .text-logo {
    display: block !important;
    color: #ffe681 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 104px !important;
    line-height: 0.9 !important;
    font-weight: 400 !important;
    letter-spacing: -5px !important;
  }

  .client-theme .agency-title {
    position: absolute !important;
    left: 410px !important;
    top: 54px !important;
    width: 900px !important;
    text-align: center !important;
  }

  .client-theme .agency-title strong {
    display: block !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 30px !important;
    line-height: 36px !important;
    font-weight: 500 !important;
    letter-spacing: 7px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .client-theme .agency-title span {
    display: block !important;
    margin-top: 2px !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
  }

  .client-theme .contact-cluster {
    position: absolute !important;
    left: 460px !important;
    top: 168px !important;
    width: 790px !important;
    display: grid !important;
    grid-template-columns: 330px 64px 340px !important;
    gap: 22px 24px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .client-theme .contact-cluster a {
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(171, 20, 14, 0.75) !important;
    border-radius: 8px !important;
    background: rgba(48, 0, 0, 0.45) !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 500 !important;
    letter-spacing: 7px !important;
    white-space: nowrap !important;
  }

  .client-theme .contact-cluster a:first-child {
    grid-column: 1 !important;
    order: 1 !important;
  }

  .client-theme .contact-cluster a:nth-child(2) {
    grid-column: 3 !important;
    order: 3 !important;
  }

  .client-theme .contact-cluster::after {
    grid-column: 2 !important;
    grid-row: 1 !important;
    order: 2 !important;
    width: 46px !important;
    height: 46px !important;
    justify-self: center !important;
    border-radius: 50% !important;
    background: #209fe2 !important;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.08) !important;
  }

  .client-theme .contact-cluster span {
    grid-column: 1 / -1 !important;
    order: 4 !important;
    margin: 0 !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    text-align: center !important;
  }

  .client-theme .diva-link {
    position: absolute !important;
    right: 24px !important;
    top: 96px !important;
    width: 266px !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .client-theme .diva-link img {
    display: block !important;
    width: 266px !important;
    height: auto !important;
  }

  .client-theme .login-link {
    position: absolute !important;
    right: 120px !important;
    top: 202px !important;
    margin: 0 !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 170px), 1728px) !important;
    min-height: 78px !important;
    height: 78px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
    border-radius: 5px !important;
    background: #9b0004 !important;
    overflow: visible !important;
    box-shadow: none !important;
  }

  .client-theme .desktop-nav {
    display: flex !important;
    width: 100% !important;
    height: 78px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .client-theme .desktop-nav a {
    min-height: 78px !important;
    height: 78px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    border-radius: 0 !important;
    color: #fce690 !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .client-theme .desktop-nav a:first-child,
  .client-theme .desktop-nav a:hover {
    background: transparent !important;
    color: #fff08a !important;
  }

  .client-intro-shell {
    width: min(calc(100% - 170px), 1728px) !important;
    padding-top: 0 !important;
  }

  .popular-head {
    padding-top: 4px !important;
    margin-bottom: 24px !important;
  }

  .client-search {
    margin-top: 34px !important;
  }

  .client-theme .featured-section {
    padding-top: 38px !important;
  }
}

/* Final header repair: overrides the absolute first-fold lock above. */
@media (min-width: 1201px) {
  .client-theme .site-header {
    overflow: hidden !important;
  }

  .client-theme .top-contact-strip {
    height: auto !important;
    min-height: 0 !important;
    padding: 28px 0 20px !important;
  }

  .client-theme .top-strip-shell {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(220px, 320px) minmax(360px, 1fr) minmax(280px, 560px) minmax(170px, 230px) minmax(70px, 90px) !important;
    grid-template-areas: "logo title contact diva login" !important;
    align-items: center !important;
    column-gap: 22px !important;
    width: min(calc(100% - 64px), 1640px) !important;
    height: auto !important;
    min-height: 142px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .client-theme .site-logo,
  .client-theme .agency-title,
  .client-theme .diva-link,
  .client-theme .login-link {
    position: static !important;
    width: auto !important;
    height: auto !important;
    inset: auto !important;
    margin: 0 !important;
  }

  .client-theme .site-logo {
    grid-area: logo !important;
  }

  .client-theme .text-logo {
    font-size: clamp(64px, 6vw, 104px) !important;
    letter-spacing: -3px !important;
  }

  .client-theme .agency-title {
    grid-area: title !important;
    align-self: center !important;
  }

  .client-theme .agency-title strong {
    font-size: clamp(25px, 2.35vw, 42px) !important;
    letter-spacing: 0.18em !important;
    white-space: normal !important;
  }

  .client-theme .contact-cluster {
    position: static !important;
    grid-area: contact !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .client-theme .contact-cluster a {
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 8px 12px !important;
    overflow: hidden !important;
    font-size: clamp(15px, 1.35vw, 24px) !important;
    letter-spacing: 0.18em !important;
    text-overflow: ellipsis !important;
  }

  .client-theme .contact-cluster::after {
    width: 48px !important;
    height: 48px !important;
  }

  .client-theme .contact-cluster span {
    font-size: 17px !important;
  }

  .client-theme .diva-link {
    grid-area: diva !important;
    width: 100% !important;
    max-width: 230px !important;
    justify-self: center !important;
  }

  .client-theme .diva-link img {
    width: 100% !important;
    max-width: 230px !important;
  }

  .client-theme .login-link {
    grid-area: login !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 64px), 1640px) !important;
    height: auto !important;
    min-height: 68px !important;
    padding: 0 26px !important;
    overflow: hidden !important;
  }

  .client-theme .desktop-nav {
    height: auto !important;
    min-height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2vw, 42px) !important;
  }

  .client-theme .desktop-nav a {
    height: auto !important;
    min-height: 68px !important;
    padding: 0 !important;
    font-size: clamp(14px, 1vw, 18px) !important;
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 230px minmax(320px, 1fr) minmax(360px, 500px) 180px 70px !important;
    column-gap: 16px !important;
  }

  .client-theme .contact-cluster a {
    letter-spacing: 0.12em !important;
  }

  .client-theme .desktop-nav {
    gap: 22px !important;
  }
}

/* Absolute last supplied header/logo override. */
.client-theme .top-strip-shell {
  grid-template-columns: 260px 1fr 240px !important;
  grid-template-areas:
    "logo title diva"
    "logo contact login" !important;
  gap: 25px !important;
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 210px !important;
}

.client-theme .site-logo img {
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
}

.client-theme .contact-cluster {
  display: flex !important;
  justify-content: center !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
}

.client-theme .contact-cluster::after {
  content: none !important;
  display: none !important;
}

.client-theme .contact-cluster a {
  min-height: 48px !important;
  height: auto !important;
  padding: 11px 15px !important;
  font-size: 21px !important;
  letter-spacing: 0 !important;
}

.client-theme .contact-cluster .telegram-link {
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #209ad6 !important;
  color: #ffffff !important;
  font-size: 22px !important;
  order: 2 !important;
}

.client-theme .contact-cluster a:first-child {
  order: 1 !important;
}

.client-theme .contact-cluster a:nth-child(3) {
  order: 3 !important;
}

.client-theme .contact-cluster span {
  flex: 0 0 100% !important;
  order: 4 !important;
  font-size: 20px !important;
}

.client-theme .diva-link {
  width: auto !important;
  max-width: none !important;
  padding: 9px 18px !important;
  background: #ffe681 !important;
  color: #900000 !important;
}

.client-theme .nav-shell {
  width: min(calc(100% - 48px), 1480px) !important;
  min-height: 67px !important;
  display: block !important;
  padding: 0 !important;
}

.client-theme .desktop-nav {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 0 !important;
}

.client-theme .desktop-nav,
.client-theme .desktop-nav a {
  min-height: 67px !important;
}

@media (max-width: 1100px) {
  .client-theme .top-strip-shell {
    grid-template-columns: 180px 1fr 160px !important;
  }

  .client-theme .site-logo img {
    width: 180px !important;
    max-width: 180px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .client-theme .top-strip-shell {
    display: flex !important;
    flex-direction: column !important;
    width: min(calc(100% - 30px), 1480px) !important;
    min-height: 0 !important;
  }

  .client-theme .site-logo img {
    width: 230px !important;
    max-width: 100% !important;
  }

  .client-theme .contact-cluster a:not(.telegram-link) {
    width: 100% !important;
    font-size: 16px !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 30px), 1480px) !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Home page black palette override. */
.client-theme.home-page {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-elevated: #171717;
  --text: #fff1a8;
  --text-muted: #d8c985;
  --accent: #ffe681;
  --accent-strong: #fff2a8;
  --border: rgba(255, 230, 129, 0.18);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 230, 129, 0.08), transparent 420px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 14px),
    #050505 !important;
  color: #ffe681 !important;
}

.client-theme.home-page .site-header,
.client-theme.home-page .client-intro-section,
.client-theme.home-page .featured-section,
.client-theme.home-page .section-block,
.client-theme.home-page .directory-section,
.client-theme.home-page .combo-section,
.client-theme.home-page .filter-finder-section,
.client-theme.home-page .why-section,
.client-theme.home-page .faq-section,
.client-theme.home-page .policy-tabs-section,
.client-theme.home-page .next-copy-section,
.client-theme.home-page .enquiry-section,
.client-theme.home-page .conclusion-section,
.client-theme.home-page .site-footer {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 230, 129, 0.07), transparent 460px),
    linear-gradient(180deg, #111111 0%, #050505 100%) !important;
}

.client-theme.home-page .top-contact-strip {
  background: transparent !important;
}

.client-theme.home-page .contact-cluster a:not(.telegram-link),
.client-theme.home-page .quick-search,
.client-theme.home-page .selector-row select,
.client-theme.home-page .client-search,
.client-theme.home-page .client-search input,
.client-theme.home-page .enquiry-form,
.client-theme.home-page .enquiry-form input,
.client-theme.home-page .enquiry-form textarea,
.client-theme.home-page .policy-tab,
.client-theme.home-page .policy-panel,
.client-theme.home-page .faq-list details,
.client-theme.home-page .next-copy-shell,
.client-theme.home-page .conclusion-cta {
  border-color: rgba(255, 230, 129, 0.22) !important;
  background: #101010 !important;
  color: #ffe681 !important;
}

.client-theme.home-page .nav-shell,
.client-theme.home-page .desktop-nav {
  background: #ffffff !important;
}

.client-theme.home-page .desktop-nav a {
  background: transparent !important;
  color: #111111 !important;
}

.client-theme.home-page .desktop-nav a:first-child,
.client-theme.home-page .desktop-nav a:hover {
  background: #f1f1f1 !important;
  color: #000000 !important;
}

.client-theme.home-page .profile-card,
.client-theme.home-page .reference-profile-card,
.client-theme.home-page .directory-card,
.client-theme.home-page .combo-card,
.client-theme.home-page .location-card,
.client-theme.home-page .review-card,
.client-theme.home-page .why-grid article {
  border-color: rgba(255, 230, 129, 0.16) !important;
  background: #111111 !important;
}

.client-theme.home-page .profile-card-head,
.client-theme.home-page .profile-card-body,
.client-theme.home-page .profile-card-foot,
.client-theme.home-page .directory-card-head,
.client-theme.home-page .directory-card-meta,
.client-theme.home-page .combo-card-head,
.client-theme.home-page .combo-card-foot {
  background: #151515 !important;
  color: #ffe681 !important;
}

.client-theme.home-page .profile-image,
.client-theme.home-page .directory-photo,
.client-theme.home-page .combo-photos {
  background: #080808 !important;
}

.client-theme.home-page .button-primary,
.client-theme.home-page .client-search button,
.client-theme.home-page .find-disa-button,
.client-theme.home-page .conclusion-actions a,
.client-theme.home-page .footer-newsletter button,
.client-theme.home-page .slider-button,
.client-theme.home-page .section-arrow,
.client-theme.home-page .combo-arrow,
.client-theme.home-page .favorite-button,
.client-theme.home-page .directory-heart,
.client-theme.home-page .combo-heart,
.client-theme.home-page .policy-tab.is-active {
  border-color: rgba(255, 230, 129, 0.42) !important;
  background: #222222 !important;
  color: #ffe681 !important;
}

.client-theme.home-page .button-primary:hover,
.client-theme.home-page .client-search button:hover,
.client-theme.home-page .find-disa-button:hover,
.client-theme.home-page .conclusion-actions a:hover {
  background: #2d2d2d !important;
  color: #fff2a8 !important;
}

.client-theme.home-page .agency-title strong,
.client-theme.home-page .agency-title span,
.client-theme.home-page .contact-cluster span,
.client-theme.home-page .login-link,
.client-theme.home-page .section-heading h2,
.client-theme.home-page .directory-heading h2,
.client-theme.home-page .combo-heading h2,
.client-theme.home-page .featured-heading h2,
.client-theme.home-page .popular-head h1,
.client-theme.home-page .next-copy-shell h2,
.client-theme.home-page .conclusion-shell h2,
.client-theme.home-page .conclusion-cta h3,
.client-theme.home-page .footer-column h2 {
  color: #ffe681 !important;
  text-shadow: none !important;
}

.client-theme.home-page a,
.client-theme.home-page .gallery-tabs a,
.client-theme.home-page .section-heading a,
.client-theme.home-page .combo-heading a,
.client-theme.home-page .footer-column a {
  color: #ffe681 !important;
}

.client-theme.home-page p,
.client-theme.home-page .profile-card p,
.client-theme.home-page .directory-card p,
.client-theme.home-page .combo-card p,
.client-theme.home-page .next-copy-shell p,
.client-theme.home-page .conclusion-copy p,
.client-theme.home-page .footer-brand p {
  color: #e7d991 !important;
}

.client-theme.home-page .availability-note,
.client-theme.home-page .photo-note,
.client-theme.home-page .combo-note,
.client-theme.home-page .rating-badge {
  background: rgba(0, 0, 0, 0.76) !important;
  color: #ffe681 !important;
}

.client-theme.home-page .diva-link {
  background: #ffe681 !important;
  color: #080808 !important;
}

.client-theme.home-page .telegram-link {
  background: #1f9bd7 !important;
  color: #ffffff !important;
}

.client-theme.home-page .popular-head,
.client-theme.home-page .gallery-tabs,
.client-theme.home-page .profile-card-foot span,
.client-theme.home-page .profile-meta span,
.client-theme.home-page .filter-finder-panel {
  border-color: rgba(255, 230, 129, 0.18) !important;
}

.client-theme.home-page .filter-finder-panel {
  background: #101010 !important;
}

/* Massage page adapted from the client-supplied standalone HTML. */
.client-theme.massage-page {
  --massage-bg: #3d0607;
  --massage-nav: #8e0008;
  --massage-yellow: #ffc400;
  --massage-cream: #ffe58a;
  --massage-muted: #e5d7d7;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.025), transparent 22%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.02), transparent 20%),
    linear-gradient(rgba(53, 2, 4, 0.88), rgba(53, 2, 4, 0.88)),
    repeating-linear-gradient(45deg, #4a090a 0 2px, #3a0607 2px 7px) !important;
  color: #ffffff !important;
}

.client-theme.massage-page .top-contact-strip {
  background: transparent !important;
}

.client-theme.massage-page .desktop-nav a {
  background: transparent !important;
}

.client-theme.massage-page .desktop-nav a:first-child {
  background: transparent !important;
}

.client-theme.massage-page .desktop-nav a:hover,
.client-theme.massage-page .desktop-nav a.is-active {
  background: #5d070b !important;
}

.client-theme.massage-page .massage-landing {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.025), transparent 22%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.02), transparent 20%),
    linear-gradient(rgba(53, 2, 4, 0.88), rgba(53, 2, 4, 0.88)),
    repeating-linear-gradient(45deg, #4a090a 0 2px, #3a0607 2px 7px) !important;
  padding: 35px 0 0;
}

.client-theme.massage-page .massage-doc-wrap {
  max-width: 1460px;
  margin: auto;
  padding: 0 24px;
}

.client-theme.massage-page .massage-doc-hero {
  padding: 35px 0 38px;
}

.client-theme.massage-page .massage-doc-hero-card {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  min-height: 360px;
}

.client-theme.massage-page .massage-doc-hero-card img,
.client-theme.massage-page .massage-doc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-theme.massage-page .massage-doc-hero-copy {
  background: #c7070b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 42px;
}

.client-theme.massage-page .massage-doc-brand {
  color: #ffffff;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.client-theme.massage-page .massage-doc-brand b {
  color: #ffb000;
}

.client-theme.massage-page .massage-doc-hero-copy h2 {
  color: #ffffff;
  font-size: 33px;
  line-height: 1.15;
  margin: 22px 0 0;
  font-weight: 800;
}

.client-theme.massage-page .massage-doc-title {
  color: var(--massage-yellow);
  font-size: 52px;
  line-height: 1.1;
  margin: 54px 0 44px;
  font-weight: 800;
}

.client-theme.massage-page .massage-doc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 26px 0 60px;
}

.client-theme.massage-page .massage-doc-section.reverse .massage-doc-media {
  order: 2;
}

.client-theme.massage-page .massage-doc-media {
  min-height: 360px;
  border-radius: 10px;
  overflow: hidden;
}

.client-theme.massage-page .massage-doc-copy h2 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.08;
  margin: 0 0 24px;
  font-weight: 800;
}

.client-theme.massage-page .massage-doc-copy h2 span {
  color: var(--massage-yellow);
}

.client-theme.massage-page .massage-doc-copy p,
.client-theme.massage-page .massage-doc-block p {
  color: var(--massage-muted);
  font-size: 19px;
  line-height: 1.85;
  margin: 0;
}

.client-theme.massage-page .massage-doc-block {
  padding: 42px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.client-theme.massage-page .massage-doc-block h3 {
  color: var(--massage-yellow);
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
}

.client-theme.massage-page .massage-doc-block h3 span {
  color: #ffffff;
  display: block;
}

.client-theme.massage-page .massage-doc-cta {
  display: flex;
  justify-content: center;
  padding: 54px 0 90px;
}

.client-theme.massage-page .massage-doc-cta a {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 8px;
  background: var(--massage-yellow);
  color: #230606;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.client-theme.massage-page .massage-doc-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 45;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ef2c2c;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 980px) {
  .client-theme.massage-page .massage-doc-hero-card,
  .client-theme.massage-page .massage-doc-section {
    grid-template-columns: 1fr;
  }

  .client-theme.massage-page .massage-doc-section.reverse .massage-doc-media {
    order: 0;
  }

  .client-theme.massage-page .massage-doc-hero {
    padding-top: 45px;
  }

  .client-theme.massage-page .massage-doc-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .client-theme.massage-page .massage-doc-wrap {
    padding: 0 16px;
  }

  .client-theme.massage-page .massage-doc-hero-copy {
    padding: 28px 18px;
  }

  .client-theme.massage-page .massage-doc-brand {
    font-size: 38px;
  }

  .client-theme.massage-page .massage-doc-hero-copy h2 {
    font-size: 24px;
  }

  .client-theme.massage-page .massage-doc-title {
    font-size: 34px;
    margin: 38px 0 26px;
  }

  .client-theme.massage-page .massage-doc-section {
    gap: 28px;
    padding-bottom: 38px;
  }

  .client-theme.massage-page .massage-doc-copy h2 {
    font-size: 34px;
  }

  .client-theme.massage-page .massage-doc-copy p,
  .client-theme.massage-page .massage-doc-block p {
    font-size: 16px;
  }

  .client-theme.massage-page .massage-doc-block h3 {
    font-size: 28px;
  }
}

/* Call Girls Bangalore page adapted from the client-supplied responsive HTML. */
.client-theme.call-girls-page {
  --callgirls-bg: #430707;
  --callgirls-panel: #5d0a08;
  --callgirls-red: #b61d1d;
  --callgirls-red-strong: #e52323;
  --callgirls-gold: #ffc400;
  --callgirls-muted: #eeeeee;
  color: #ffffff !important;
  background:
    linear-gradient(rgba(70, 5, 5, 0.9), rgba(70, 5, 5, 0.94)),
    radial-gradient(circle at 20% 20%, #8c2118 0 1px, transparent 2px) !important;
  background-size: auto, 34px 34px !important;
}

.client-theme.call-girls-page .top-contact-strip {
  background: transparent !important;
}

.client-theme.call-girls-page .desktop-nav a {
  background: transparent !important;
}

.client-theme.call-girls-page .desktop-nav a:first-child {
  background: transparent !important;
}

.client-theme.call-girls-page .desktop-nav a:hover,
.client-theme.call-girls-page .desktop-nav a.is-active {
  background: #5d070b !important;
}

.client-theme.call-girls-page .callgirls-page-shell {
  color: #ffffff;
  background:
    linear-gradient(rgba(70, 5, 5, 0.9), rgba(70, 5, 5, 0.94)),
    radial-gradient(circle at 20% 20%, #8c2118 0 1px, transparent 2px);
  background-size: auto, 34px 34px;
}

.client-theme.call-girls-page .callgirls-wrap {
  width: min(1420px, calc(100% - 48px));
  margin: auto;
}

.client-theme.call-girls-page .callgirls-hero {
  padding: 120px 0 56px;
}

.client-theme.call-girls-page .callgirls-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  min-height: 330px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
}

.client-theme.call-girls-page .callgirls-hero-photo {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.12), transparent 42%),
    #c50819;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 22px;
}

.client-theme.call-girls-page .callgirls-hero-photo img {
  width: min(58%, 360px);
  height: min(300px, 100%);
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

.client-theme.call-girls-page .callgirls-shape {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe0d8, #b55d56);
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.08);
}

.client-theme.call-girls-page .callgirls-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #050505;
  text-align: center;
  padding: 38px;
  background: #ffffff;
}

.client-theme.call-girls-page .callgirls-brand {
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.client-theme.call-girls-page .callgirls-brand span {
  color: #050505;
}

.client-theme.call-girls-page .callgirls-brand {
  color: #e21d1d;
}

.client-theme.call-girls-page .callgirls-hero-brand p {
  color: #050505;
  font-size: clamp(21px, 2.1vw, 34px);
  font-weight: 800;
  margin: 18px 0 0;
}

.client-theme.call-girls-page .callgirls-intro {
  padding: 0 0 28px;
}

.client-theme.call-girls-page .callgirls-section {
  padding: 24px 0;
}

.client-theme.call-girls-page .callgirls-intro h1,
.client-theme.call-girls-page .callgirls-section h2,
.client-theme.call-girls-page .callgirls-faq h2 {
  color: var(--callgirls-gold);
  line-height: 1.15;
  font-weight: 800;
}

.client-theme.call-girls-page .callgirls-intro h1 {
  font-size: clamp(38px, 4.1vw, 66px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.client-theme.call-girls-page .callgirls-section h2,
.client-theme.call-girls-page .callgirls-faq h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 0 0 18px;
}

.client-theme.call-girls-page .callgirls-intro p,
.client-theme.call-girls-page .callgirls-intro li,
.client-theme.call-girls-page .callgirls-profile-block p,
.client-theme.call-girls-page .callgirls-profile-block li,
.client-theme.call-girls-page .callgirls-faq p {
  color: var(--callgirls-muted);
  font-size: 16px;
  line-height: 1.55;
}

.client-theme.call-girls-page .callgirls-intro ul {
  max-width: 950px;
  padding-left: 28px;
}

.client-theme.call-girls-page .callgirls-profile-grid,
.client-theme.call-girls-page .callgirls-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-theme.call-girls-page .callgirls-card,
.client-theme.call-girls-page .callgirls-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: #8e1515;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.client-theme.call-girls-page .callgirls-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #d9d2ca, #6b1820);
}

.client-theme.call-girls-page .callgirls-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease, transform 0.35s ease;
  filter: blur(16px);
  transform: scale(1.08);
}

.client-theme.call-girls-page .callgirls-profile-img.revealed {
  filter: blur(0);
  transform: scale(1);
}

.client-theme.call-girls-page .callgirls-num {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--callgirls-red);
  font-size: 13px;
  font-weight: 800;
}

.client-theme.call-girls-page .callgirls-name {
  position: absolute;
  right: 0;
  bottom: 36px;
  background: rgba(182, 29, 29, 0.94);
  padding: 4px 12px;
  border-radius: 22px 0 0 22px;
  font-size: 15px;
  font-weight: 700;
}

.client-theme.call-girls-page .callgirls-toggle {
  display: block;
  text-align: center;
  width: 100%;
  border: 0;
  background: linear-gradient(90deg, var(--callgirls-red-strong), #9b1818);
  color: #ffffff;
  padding: 11px;
  font: 700 14px Poppins, Arial, sans-serif;
  cursor: pointer;
}

.client-theme.call-girls-page .callgirls-profile-block {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.client-theme.call-girls-page .callgirls-profile-title {
  color: #ff4c45;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 800;
}

.client-theme.call-girls-page .callgirls-profile-block:nth-of-type(even) .callgirls-profile-title {
  color: #4285ff;
}

.client-theme.call-girls-page .callgirls-profile-block h3 {
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 24px);
  margin: 0 0 12px;
  font-weight: 800;
}

.client-theme.call-girls-page .callgirls-profile-copy {
  max-width: 1120px;
}

.client-theme.call-girls-page .callgirls-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.client-theme.call-girls-page .callgirls-info {
  padding: 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.12);
}

.client-theme.call-girls-page .callgirls-info h3 {
  font-size: 20px;
}

.client-theme.call-girls-page .callgirls-video-box {
  width: min(460px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  background: linear-gradient(160deg, #20171b, #8b2635);
  display: grid;
  place-items: center;
  margin-top: 18px;
}

.client-theme.call-girls-page .callgirls-video-box span {
  font-size: 70px;
  opacity: 0.9;
}

.client-theme.call-girls-page .callgirls-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 11px 20px;
  border-radius: 40px;
  background: #2bd36f;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.client-theme.call-girls-page .callgirls-faq {
  padding: 34px 0 58px;
}

.client-theme.call-girls-page .callgirls-faq details {
  background: rgba(0, 0, 0, 0.15);
  margin: 12px 0;
  border-radius: 8px;
  padding: 14px 16px;
}

.client-theme.call-girls-page .callgirls-faq summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.client-theme.call-girls-page .callgirls-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #e52a2a;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.client-theme.call-girls-page .callgirls-profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.client-theme.call-girls-page .callgirls-profile-head p {
  margin: 0;
}

@media (max-width: 1000px) {
  .client-theme.call-girls-page .callgirls-profile-grid,
  .client-theme.call-girls-page .callgirls-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-theme.call-girls-page .callgirls-info-grid {
    grid-template-columns: 1fr;
  }

  .client-theme.call-girls-page .callgirls-hero-card {
    grid-template-columns: 1fr;
  }

  .client-theme.call-girls-page .callgirls-hero-photo {
    min-height: 260px;
  }

  .client-theme.call-girls-page .callgirls-hero-photo img {
    width: min(54%, 300px);
    height: 230px;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .client-theme.call-girls-page .callgirls-wrap {
    width: min(100% - 28px, 1420px);
  }

  .client-theme.call-girls-page .callgirls-hero {
    padding: 42px 0 24px;
  }

  .client-theme.call-girls-page .callgirls-hero-card {
    min-height: auto;
  }

  .client-theme.call-girls-page .callgirls-hero-photo {
    min-height: 230px;
  }

  .client-theme.call-girls-page .callgirls-hero-photo img {
    width: min(68%, 230px);
    height: 200px;
    min-height: 0;
  }

  .client-theme.call-girls-page .callgirls-shape {
    width: 150px;
    height: 150px;
  }

  .client-theme.call-girls-page .callgirls-hero-brand {
    padding: 26px 16px;
  }

  .client-theme.call-girls-page .callgirls-brand {
    font-size: 42px;
  }

  .client-theme.call-girls-page .callgirls-hero-brand p {
    font-size: 22px;
    margin-top: 14px;
  }

  .client-theme.call-girls-page .callgirls-profile-grid,
  .client-theme.call-girls-page .callgirls-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .client-theme.call-girls-page .callgirls-name {
    font-size: 14px;
    bottom: 38px;
    padding: 4px 10px;
  }

  .client-theme.call-girls-page .callgirls-toggle {
    font-size: 14px;
    padding: 13px 6px;
  }

  .client-theme.call-girls-page .callgirls-num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .client-theme.call-girls-page .callgirls-section,
  .client-theme.call-girls-page .callgirls-profile-block {
    padding: 30px 0;
  }

  .client-theme.call-girls-page .callgirls-intro p,
  .client-theme.call-girls-page .callgirls-intro li,
  .client-theme.call-girls-page .callgirls-profile-block p,
  .client-theme.call-girls-page .callgirls-profile-block li {
    font-size: 16px;
    line-height: 1.65;
  }

  .client-theme.call-girls-page .callgirls-intro h1 {
    font-size: 32px;
  }

  .client-theme.call-girls-page .callgirls-section h2,
  .client-theme.call-girls-page .callgirls-profile-title,
  .client-theme.call-girls-page .callgirls-faq h2 {
    font-size: 27px;
  }

  .client-theme.call-girls-page .callgirls-info {
    padding: 18px;
  }
}

/* Final responsive hardening pass for desktop, laptop, tablet, and mobile. */
@media (max-width: 1200px) {
  .client-theme .site-header {
    position: relative !important;
    inset: auto !important;
    overflow: visible !important;
  }

  .client-theme .top-contact-strip {
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 0 14px !important;
  }

  .client-theme .top-strip-shell {
    display: grid !important;
    grid-template-columns: minmax(160px, 210px) minmax(0, 1fr) !important;
    grid-template-areas:
      "logo title"
      "contact contact"
      "diva login" !important;
    gap: 14px 18px !important;
    width: min(calc(100% - 32px), 1120px) !important;
    min-height: 0 !important;
  }

  .client-theme .site-logo {
    grid-area: logo !important;
  }

  .client-theme .agency-title {
    grid-area: title !important;
  }

  .client-theme .contact-cluster {
    grid-area: contact !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .client-theme .contact-cluster a:not(.telegram-link) {
    width: auto !important;
    max-width: 100% !important;
    min-height: 42px !important;
    padding: 9px 12px !important;
    font-size: clamp(14px, 2vw, 17px) !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .client-theme .contact-cluster span {
    flex-basis: 100% !important;
    font-size: 14px !important;
  }

  .client-theme .diva-link {
    grid-area: diva !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .client-theme .login-link {
    grid-area: login !important;
    justify-self: start !important;
    align-self: center !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 32px), 1120px) !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .client-theme .desktop-nav {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
  }

  .client-theme .desktop-nav a {
    min-width: 0 !important;
    min-height: 52px !important;
    height: auto !important;
    padding: 10px 8px !important;
    font-size: clamp(12px, 1.8vw, 15px) !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .client-theme .hero-section,
  .client-theme .client-intro-section,
  .client-theme .featured-section,
  .client-theme .all-profiles-page,
  .client-theme .location-detail-page,
  .client-theme.massage-page .massage-landing,
  .client-theme.call-girls-page .callgirls-page-shell {
    padding-top: 28px !important;
  }
}

@media (max-width: 767px) {
  .client-theme .top-strip-shell {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: min(calc(100% - 24px), 720px) !important;
  }

  .client-theme .site-logo img {
    width: min(210px, 76vw) !important;
    max-width: 100% !important;
  }

  .client-theme .agency-title {
    text-align: center !important;
  }

  .client-theme .agency-title strong {
    font-size: clamp(18px, 6vw, 26px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em !important;
    white-space: normal !important;
  }

  .client-theme .contact-cluster {
    width: 100% !important;
    gap: 8px !important;
  }

  .client-theme .contact-cluster a:not(.telegram-link) {
    flex: 1 1 100% !important;
    width: 100% !important;
    font-size: 15px !important;
  }

  .client-theme .diva-link,
  .client-theme .login-link {
    justify-self: auto !important;
    width: auto !important;
  }

  .client-theme .nav-shell {
    width: min(calc(100% - 20px), 720px) !important;
    border-radius: 6px !important;
  }

  .client-theme .desktop-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .client-theme .desktop-nav a {
    min-height: 46px !important;
    padding: 8px 6px !important;
    font-size: 12px !important;
  }

  .client-theme .footer-shell,
  .client-theme .footer-bottom,
  .client-theme .all-profiles-wrap,
  .client-theme .hsg-container,
  .client-theme .location-detail-shell,
  .client-theme.massage-page .massage-doc-wrap,
  .client-theme.call-girls-page .callgirls-wrap {
    width: min(calc(100% - 24px), 720px) !important;
  }

  .client-theme .all-profiles-toolbar,
  .client-theme .all-profiles-layout,
  .client-theme .location-detail-hero,
  .client-theme .location-detail-feature,
  .client-theme.massage-page .massage-doc-hero-card,
  .client-theme.massage-page .massage-doc-section,
  .client-theme.call-girls-page .callgirls-hero-card,
  .client-theme.call-girls-page .callgirls-info-grid {
    grid-template-columns: 1fr !important;
  }

  .client-theme .all-profiles-grid,
  .client-theme .location-detail-profile-grid,
  .client-theme .location-detail-location-grid,
  .client-theme.call-girls-page .callgirls-profile-grid,
  .client-theme.call-girls-page .callgirls-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .client-theme .all-profiles-title,
  .client-theme .location-detail-hero-copy h1,
  .client-theme.massage-page .massage-doc-title,
  .client-theme.call-girls-page .callgirls-intro h1 {
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: 1.12 !important;
  }

  .client-theme.massage-page .massage-doc-section.reverse .massage-doc-media {
    order: 0 !important;
  }

  .client-theme.call-girls-page .callgirls-profile-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 430px) {
  .client-theme .all-profiles-grid,
  .client-theme .location-detail-profile-grid,
  .client-theme .location-detail-location-grid,
  .client-theme.call-girls-page .callgirls-profile-grid,
  .client-theme.call-girls-page .callgirls-gallery {
    grid-template-columns: 1fr !important;
  }

  .client-theme.call-girls-page .callgirls-photo-wrap {
    aspect-ratio: 4 / 4.7 !important;
  }

  .client-theme .footer-newsletter form {
    grid-template-columns: 1fr !important;
  }

  .client-theme .footer-newsletter button {
    width: 100% !important;
  }
}

/* Final black theme lock: keep visible UI black/gold, no red/maroon accents. */
.client-theme,
.client-theme body,
.client-theme .site-header,
.client-theme .top-contact-strip,
.client-theme .client-intro-section,
.client-theme .featured-section,
.client-theme .section-block,
.client-theme .directory-section,
.client-theme .combo-section,
.client-theme .filter-finder-section,
.client-theme .why-section,
.client-theme .faq-section,
.client-theme .policy-tabs-section,
.client-theme .next-copy-section,
.client-theme .enquiry-section,
.client-theme .conclusion-section,
.client-theme .all-profiles-page,
.client-theme .location-detail-page,
.client-theme .hsg-locations,
.client-theme.massage-page,
.client-theme.massage-page .massage-landing,
.client-theme.call-girls-page,
.client-theme.call-girls-page .callgirls-page-shell {
  --bg: #050505 !important;
  --bg-soft: #0d0d0d !important;
  --bg-elevated: #171717 !important;
  --text: #fff1a8 !important;
  --text-muted: #d8c985 !important;
  --accent: #ffe681 !important;
  --accent-strong: #fff2a8 !important;
  --border: rgba(255, 230, 129, 0.18) !important;
  --massage-bg: #050505 !important;
  --massage-nav: #101010 !important;
  --massage-yellow: #ffe681 !important;
  --massage-cream: #fff1a8 !important;
  --massage-muted: #e7d991 !important;
  --callgirls-bg: #050505 !important;
  --callgirls-panel: #151515 !important;
  --callgirls-red: #202020 !important;
  --callgirls-red-strong: #2d2d2d !important;
  --callgirls-gold: #ffe681 !important;
  --callgirls-muted: #e7d991 !important;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 230, 129, 0.07), transparent 460px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 14px),
    #050505 !important;
  color: #ffe681 !important;
}

.client-theme .nav-shell,
.client-theme .desktop-nav,
.client-theme .site-footer,
.client-theme .footer-shell,
.client-theme .footer-bottom,
.client-theme .profile-card,
.client-theme .reference-profile-card,
.client-theme .directory-card,
.client-theme .combo-card,
.client-theme .review-card,
.client-theme .why-grid article,
.client-theme .all-profiles-sidebar,
.client-theme .all-profiles-card,
.client-theme .location-detail-box,
.client-theme .location-detail-profile-card,
.client-theme .location-detail-location-card,
.client-theme.massage-page .massage-doc-block,
.client-theme.call-girls-page .callgirls-card,
.client-theme.call-girls-page .callgirls-photo-card,
.client-theme.call-girls-page .callgirls-info,
.client-theme.call-girls-page .callgirls-faq details {
  border-color: rgba(255, 230, 129, 0.18) !important;
  background: #101010 !important;
  color: #ffe681 !important;
}

.client-theme .desktop-nav a,
.client-theme .overlay-nav a {
  background: transparent !important;
  color: #ffe681 !important;
}

.client-theme .desktop-nav a:hover,
.client-theme .desktop-nav a.is-active,
.client-theme .desktop-nav a:first-child:hover,
.client-theme .desktop-nav a:first-child.is-active,
.client-theme.home-page .desktop-nav a:hover,
.client-theme.home-page .desktop-nav a.is-active,
.client-theme.massage-page .desktop-nav a:hover,
.client-theme.massage-page .desktop-nav a.is-active,
.client-theme.call-girls-page .desktop-nav a:hover,
.client-theme.call-girls-page .desktop-nav a.is-active {
  background: #222222 !important;
  color: #fff2a8 !important;
}

.client-theme .contact-cluster a,
.client-theme .contact-cluster .telegram-link,
.client-theme .diva-link,
.client-theme .button-primary,
.client-theme .client-search button,
.client-theme .find-disa-button,
.client-theme .conclusion-actions a,
.client-theme .footer-newsletter button,
.client-theme .slider-button,
.client-theme .section-arrow,
.client-theme .combo-arrow,
.client-theme .favorite-button,
.client-theme .directory-heart,
.client-theme .combo-heart,
.client-theme .policy-tab.is-active,
.client-theme.massage-page .massage-doc-cta a,
.client-theme.massage-page .massage-doc-to-top,
.client-theme.call-girls-page .callgirls-toggle,
.client-theme.call-girls-page .callgirls-book,
.client-theme.call-girls-page .callgirls-top {
  border-color: rgba(255, 230, 129, 0.34) !important;
  background: #222222 !important;
  color: #ffe681 !important;
  box-shadow: none !important;
}

.client-theme .availability,
.client-theme .availability-note,
.client-theme .photo-note,
.client-theme .combo-note,
.client-theme .rating-badge,
.client-theme .status-dot,
.client-theme .status-dot.red,
.client-theme .directory-photo .status-dot.red,
.client-theme .combo-photos .status-dot.red,
.client-theme.call-girls-page .callgirls-num,
.client-theme.call-girls-page .callgirls-name {
  background: #202020 !important;
  color: #ffe681 !important;
  border-color: rgba(255, 230, 129, 0.25) !important;
}

.client-theme.massage-page .massage-doc-hero-copy,
.client-theme.call-girls-page .callgirls-hero-photo {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 230, 129, 0.08), transparent 42%),
    #101010 !important;
}

.client-theme.call-girls-page .callgirls-brand,
.client-theme.call-girls-page .callgirls-brand span,
.client-theme.call-girls-page .callgirls-hero-brand p {
  color: #050505 !important;
}

.client-theme.call-girls-page .callgirls-brand::first-letter {
  color: #050505 !important;
}

.client-theme.call-girls-page .callgirls-brand {
  color: #d8b46a !important;
}

.client-theme .section-heading h2,
.client-theme .directory-heading h2,
.client-theme .combo-heading h2,
.client-theme .featured-heading h2,
.client-theme .popular-head h1,
.client-theme .next-copy-shell h2,
.client-theme .conclusion-shell h2,
.client-theme .conclusion-cta h3,
.client-theme .footer-column h2,
.client-theme .all-profiles-title,
.client-theme .location-detail-intro h2,
.client-theme .location-detail-heading h2,
.client-theme.massage-page .massage-doc-title,
.client-theme.massage-page .massage-doc-copy h2 span,
.client-theme.massage-page .massage-doc-block h3,
.client-theme.call-girls-page .callgirls-intro h1,
.client-theme.call-girls-page .callgirls-section h2,
.client-theme.call-girls-page .callgirls-faq h2,
.client-theme.call-girls-page .callgirls-profile-title {
  color: #ffe681 !important;
  text-shadow: none !important;
}

.client-theme p,
.client-theme li,
.client-theme .profile-card p,
.client-theme .directory-card p,
.client-theme .combo-card p,
.client-theme .next-copy-shell p,
.client-theme .conclusion-copy p,
.client-theme .footer-brand p,
.client-theme.massage-page .massage-doc-copy p,
.client-theme.massage-page .massage-doc-block p,
.client-theme.call-girls-page .callgirls-intro p,
.client-theme.call-girls-page .callgirls-profile-block p,
.client-theme.call-girls-page .callgirls-profile-block li,
.client-theme.call-girls-page .callgirls-faq p {
  color: #e7d991 !important;
}

/* Home filter lock: prevent gallery tabs and filters from overlapping. */
.client-theme.home-page .popular-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.58fr) !important;
  gap: 32px !important;
  align-items: start !important;
}

.client-theme.home-page .popular-left {
  min-width: 0 !important;
  overflow: hidden !important;
}

.client-theme.home-page .gallery-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px 24px !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.client-theme.home-page .gallery-tabs a {
  white-space: nowrap !important;
  line-height: 1.15 !important;
}

.client-theme.home-page .selector-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 760px !important;
}

.client-theme.home-page .selector-row select,
.client-theme.home-page .selector-row select[name="location"] {
  width: 100% !important;
  min-width: 0 !important;
  color: #ffe681 !important;
  background-color: #101010 !important;
}

.client-theme.home-page .selector-row option {
  color: #ffe681 !important;
  background-color: #101010 !important;
}

.client-theme.home-page .client-search {
  width: min(100%, 750px) !important;
  margin: 34px auto 0 !important;
}

@media (max-width: 1180px) {
  .client-theme.home-page .popular-head {
    grid-template-columns: 1fr !important;
  }

  .client-theme.home-page .selector-row {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .client-theme.home-page .selector-row {
    grid-template-columns: 1fr !important;
  }

  .client-theme.home-page .gallery-tabs {
    gap: 10px 16px !important;
  }

  .client-theme.home-page .gallery-tabs a {
    font-size: 13px !important;
  }
}

/* Mobile hamburger navigation lock. */
.client-theme .menu-button {
  position: relative !important;
  display: none !important;
  width: 46px !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 230, 129, 0.36) !important;
  background: #171717 !important;
  color: #ffe681 !important;
}

.client-theme .menu-button span {
  display: block !important;
  width: 20px !important;
  height: 2px !important;
  border-radius: 99px !important;
  background: #ffe681 !important;
}

.client-theme .mobile-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  background: rgba(0, 0, 0, 0.72) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: none !important;
  transition: opacity 180ms ease !important;
}

.client-theme .mobile-overlay::before {
  content: "" !important;
  display: block !important;
  width: min(86vw, 340px) !important;
  min-height: 100% !important;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 230, 129, 0.08), transparent 280px),
    #080808 !important;
  border-right: 1px solid rgba(255, 230, 129, 0.2) !important;
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.38) !important;
  transform: translateX(-100%) !important;
  transition: transform 220ms ease !important;
}

.client-theme .mobile-overlay.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.client-theme .mobile-overlay.is-open::before {
  transform: translateX(0) !important;
}

.client-theme .overlay-brand,
.client-theme .overlay-nav,
.client-theme .overlay-contact {
  position: fixed !important;
  left: 22px !important;
  width: min(calc(86vw - 44px), 296px) !important;
  z-index: 10000 !important;
  opacity: 0 !important;
  transform: translateX(-18px) !important;
  transition: opacity 180ms ease, transform 220ms ease !important;
}

.client-theme .mobile-overlay.is-open .overlay-brand,
.client-theme .mobile-overlay.is-open .overlay-nav,
.client-theme .mobile-overlay.is-open .overlay-contact {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.client-theme .overlay-brand {
  top: 24px !important;
  display: flex !important;
  justify-content: center !important;
}

.client-theme .overlay-brand img {
  width: min(190px, 68vw) !important;
  height: auto !important;
}

.client-theme .overlay-close {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 10001 !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(255, 230, 129, 0.32) !important;
  border-radius: 50% !important;
  background: #171717 !important;
  color: #ffe681 !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

.client-theme .overlay-nav {
  top: 120px !important;
  display: grid !important;
  gap: 8px !important;
}

.client-theme .overlay-nav a {
  display: flex !important;
  align-items: center !important;
  min-height: 45px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 230, 129, 0.18) !important;
  border-radius: 8px !important;
  background: #101010 !important;
  color: #ffe681 !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

.client-theme .overlay-nav a.is-active,
.client-theme .overlay-nav a:hover {
  background: #222222 !important;
  color: #fff2a8 !important;
}

.client-theme .overlay-contact {
  bottom: 22px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.client-theme .overlay-contact a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-height: 42px !important;
  padding: 0 10px !important;
  border: 1px solid rgba(255, 230, 129, 0.28) !important;
  border-radius: 8px !important;
  background: #222222 !important;
  color: #ffe681 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

@media (max-width: 900px) {
  .client-theme .top-contact-strip {
    display: none !important;
  }

  .client-theme .site-header,
  .client-theme.home-page .site-header {
    padding: 8px 0 0 !important;
    background: #050505 !important;
  }

  .client-theme .nav-shell,
  .client-theme.home-page .nav-shell {
    position: sticky !important;
    top: 0 !important;
    z-index: 900 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: min(calc(100% - 24px), 720px) !important;
    min-height: 54px !important;
    height: auto !important;
    padding: 7px 10px !important;
    overflow: visible !important;
    border-radius: 8px !important;
    background: #101010 !important;
    border: 1px solid rgba(255, 230, 129, 0.18) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34) !important;
  }

  .client-theme .nav-shell .brand {
    display: inline-flex !important;
    max-width: 132px !important;
  }

  .client-theme .nav-shell .brand img {
    width: 100% !important;
    height: auto !important;
  }

  .client-theme .desktop-nav,
  .client-theme.home-page .desktop-nav {
    display: none !important;
  }

  .client-theme .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
  }

  .client-theme .icon-action,
  .client-theme .account-link {
    display: none !important;
  }

  .client-theme .menu-button {
    display: inline-grid !important;
    width: 38px !important;
    height: 36px !important;
    gap: 4px !important;
  }

  .client-theme .menu-button span {
    width: 17px !important;
  }

  .client-theme .hero-section,
  .client-theme .client-intro-section,
  .client-theme .featured-section,
  .client-theme .all-profiles-page,
  .client-theme .location-detail-page,
  .client-theme.massage-page .massage-landing,
  .client-theme.call-girls-page .callgirls-page-shell {
    padding-top: 16px !important;
  }
}

@media (max-width: 430px) {
  .client-theme .nav-shell .brand {
    max-width: 122px !important;
  }

  .client-theme .overlay-nav {
    top: 104px !important;
  }

  .client-theme .overlay-nav a {
    min-height: 41px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 640px) {
  .client-theme.call-girls-page .callgirls-wrap,
  .client-theme.massage-page .massage-doc-wrap,
  .client-theme.home-page .client-intro-shell,
  .client-theme.home-page .featured-shell {
    width: min(calc(100% - 18px), 420px) !important;
  }

  .client-theme.call-girls-page .callgirls-hero {
    padding: 10px 0 18px !important;
  }

  .client-theme.call-girls-page .callgirls-hero-card {
    grid-template-columns: 1fr 1fr !important;
    min-height: 98px !important;
    border-radius: 6px !important;
  }

  .client-theme.call-girls-page .callgirls-hero-photo {
    min-height: 98px !important;
  }

  .client-theme.call-girls-page .callgirls-hero-photo img {
    width: 100% !important;
    height: 98px !important;
    object-fit: cover !important;
  }

  .client-theme.call-girls-page .callgirls-hero-brand {
    min-height: 98px !important;
    padding: 10px 8px !important;
  }

  .client-theme.call-girls-page .callgirls-brand {
    font-size: clamp(24px, 8vw, 34px) !important;
    line-height: 0.95 !important;
  }

  .client-theme.call-girls-page .callgirls-hero-brand p {
    margin-top: 8px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .client-theme.call-girls-page .callgirls-intro {
    padding: 18px 0 14px !important;
  }

  .client-theme.call-girls-page .callgirls-intro h1 {
    max-width: 280px !important;
    margin-bottom: 14px !important;
    font-size: clamp(25px, 8.3vw, 34px) !important;
    line-height: 1.05 !important;
  }

  .client-theme.call-girls-page .callgirls-intro p,
  .client-theme.call-girls-page .callgirls-intro li {
    max-width: 290px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
}

/* Footer redesign: Highstreet wordmark with cooler accent palette. */
.client-theme .site-footer {
  background:
    radial-gradient(circle at 82% 10%, rgba(42, 197, 183, 0.12), transparent 330px),
    linear-gradient(180deg, #071110 0%, #050808 100%) !important;
  border-top: 1px solid rgba(42, 197, 183, 0.22) !important;
}

.client-theme .footer-shell {
  width: min(calc(100% - 48px), 1500px) !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.15fr 1.25fr !important;
  gap: 42px !important;
  align-items: start !important;
  padding: 74px 0 62px !important;
  background: transparent !important;
  border: 0 !important;
}

.client-theme .footer-column,
.client-theme .footer-brand,
.client-theme .footer-newsletter {
  background: rgba(9, 23, 22, 0.72) !important;
  border: 1px solid rgba(42, 197, 183, 0.15) !important;
  border-radius: 10px !important;
  padding: 24px !important;
  min-height: 100% !important;
}

.client-theme .footer-column h2,
.client-theme .footer-newsletter h2 {
  margin: 0 0 20px !important;
  color: #7ee7dc !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.client-theme .footer-column a {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 0 13px !important;
  color: #d7fffb !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}

.client-theme .footer-column a:hover,
.client-theme .footer-sister a:hover {
  color: #9fd9ff !important;
}

.client-theme .footer-wordmark {
  display: inline-grid !important;
  gap: 7px !important;
  text-decoration: none !important;
}

.client-theme .footer-wordmark strong {
  color: #f4ffff !important;
  font-size: clamp(32px, 3.1vw, 48px) !important;
  line-height: 0.95 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.client-theme .footer-wordmark strong span {
  color: #52d6cb !important;
}

.client-theme .footer-wordmark small {
  color: #9fd9ff !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.client-theme .footer-brand p {
  margin: 30px 0 28px !important;
  color: #e8fffd !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.client-theme .footer-sister {
  display: grid !important;
  gap: 8px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(42, 197, 183, 0.18) !important;
}

.client-theme .footer-sister span {
  color: #7ee7dc !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.client-theme .footer-sister a {
  color: #f4ffff !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

.client-theme .footer-sister em {
  color: #9fd9ff !important;
  font-size: 14px !important;
  font-style: normal !important;
}

.client-theme .footer-newsletter form {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(126, 231, 220, 0.22) !important;
  border-radius: 10px !important;
  background: #071110 !important;
}

.client-theme .footer-newsletter input {
  min-width: 0 !important;
  min-height: 54px !important;
  padding: 0 18px !important;
  border: 0 !important;
  background: #f4ffff !important;
  color: #071110 !important;
  font-size: 16px !important;
}

.client-theme .footer-newsletter button {
  min-height: 54px !important;
  padding: 0 20px !important;
  border: 0 !important;
  background: #52d6cb !important;
  color: #041110 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.client-theme .footer-newsletter img {
  width: min(230px, 100%) !important;
  margin-top: 24px !important;
  filter: saturate(0.88) brightness(0.96) !important;
}

.client-theme .footer-bottom {
  width: min(calc(100% - 48px), 1500px) !important;
  padding: 18px 0 22px !important;
  border-top: 1px solid rgba(42, 197, 183, 0.18) !important;
  background: transparent !important;
}

.client-theme .footer-bottom p {
  color: #9fd9ff !important;
  font-size: 13px !important;
}

@media (max-width: 1100px) {
  .client-theme .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .client-theme .footer-shell,
  .client-theme .footer-bottom {
    width: min(calc(100% - 24px), 520px) !important;
  }

  .client-theme .footer-shell {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 44px 0 34px !important;
  }

  .client-theme .footer-column,
  .client-theme .footer-brand,
  .client-theme .footer-newsletter {
    padding: 20px !important;
  }

  .client-theme .footer-newsletter form {
    grid-template-columns: 1fr !important;
  }
}

/* Female escorts price page. */
.client-theme.price-page {
  --price-bg: #071110;
  --price-panel: #101717;
  --price-panel-soft: #151f1f;
  --price-accent: #7ee7dc;
  --price-gold: #ffe681;
  --price-text: #f3fffd;
  --price-muted: #b4cbc8;
  background:
    radial-gradient(circle at 78% 5%, rgba(126, 231, 220, 0.12), transparent 360px),
    linear-gradient(180deg, #071110 0%, #080b12 100%) !important;
}

.client-theme.price-page .price-page-shell {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 230, 129, 0.08), transparent 420px),
    #080b12 !important;
}

.client-theme.price-page .price-wrap {
  width: min(calc(100% - 48px), 1500px);
  margin: 0 auto;
}

.client-theme.price-page .price-hero {
  padding: 96px 0 34px;
}

.client-theme.price-page .price-hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid rgba(126, 231, 220, 0.22);
  border-radius: 8px;
  background: #ffffff;
}

.client-theme.price-page .price-hero-photo {
  min-height: 330px;
  background: #101717;
}

.client-theme.price-page .price-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-theme.price-page .price-hero-brand {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 330px;
  padding: 28px;
  background: #f8ffff;
  text-align: center;
}

.client-theme.price-page .price-brand {
  color: #071110;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.client-theme.price-page .price-brand span {
  color: #43c9be;
}

.client-theme.price-page .price-hero-brand p {
  margin: 16px 0 0;
  color: #071110;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.client-theme.price-page .price-intro {
  padding: 34px 0 42px;
  text-align: center;
}

.client-theme.price-page .price-intro h1 {
  margin: 0 0 18px;
  color: var(--price-gold);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.client-theme.price-page .price-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--price-muted);
  font-size: 18px;
  line-height: 1.55;
}

.client-theme.price-page .price-cards-section {
  padding: 12px 0 70px;
}

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

.client-theme.price-page .price-card {
  display: grid;
  min-height: 100%;
  padding: 34px;
  border: 2px solid rgba(255, 230, 129, 0.8);
  border-radius: 12px;
  background: var(--price-panel-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.client-theme.price-page .price-card.is-featured {
  border-color: rgba(126, 231, 220, 0.92);
  background: linear-gradient(180deg, #15302f 0%, #101717 100%);
  transform: translateY(-8px);
}

.client-theme.price-page .price-card-head {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(126, 231, 220, 0.18);
}

.client-theme.price-page .price-card h2 {
  margin: 0 0 20px;
  color: var(--price-gold);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.client-theme.price-page .price-card p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--price-text);
}

.client-theme.price-page .price-card p strong {
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1;
  font-weight: 900;
}

.client-theme.price-page .price-card p span {
  color: var(--price-muted);
  font-size: 18px;
  font-weight: 800;
}

.client-theme.price-page .price-feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.client-theme.price-page .price-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--price-text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.client-theme.price-page .price-feature-list i {
  width: 22px;
  color: #62ef99;
  text-align: center;
}

.client-theme.price-page .price-feature-list .is-muted {
  color: rgba(180, 203, 200, 0.58);
}

.client-theme.price-page .price-feature-list .is-muted i {
  color: #91a8a5;
}

.client-theme.price-page .price-book {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 9px;
  background: var(--price-accent);
  color: #041110;
  font-size: 18px;
  font-weight: 900;
}

.client-theme.price-page .price-notes {
  padding: 58px 0 76px;
  background: rgba(255, 255, 255, 0.025);
}

.client-theme.price-page .price-notes .price-wrap {
  max-width: 980px;
}

.client-theme.price-page .price-notes h2 {
  margin: 0 0 24px;
  color: var(--price-gold);
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
}

.client-theme.price-page .price-notes ul {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--price-muted);
  font-size: 17px;
  line-height: 1.45;
}

.client-theme.price-page .price-notes p {
  margin: 0;
  color: var(--price-muted);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1024px) {
  .client-theme.price-page .price-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .client-theme.price-page .price-card.is-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .client-theme.price-page .price-wrap {
    width: min(calc(100% - 18px), 420px);
  }

  .client-theme.price-page .price-hero {
    padding: 12px 0 18px;
  }

  .client-theme.price-page .price-hero-card {
    grid-template-columns: 1fr 1fr;
    border-radius: 6px;
  }

  .client-theme.price-page .price-hero-photo,
  .client-theme.price-page .price-hero-brand {
    min-height: 98px;
  }

  .client-theme.price-page .price-hero-photo img {
    height: 98px;
  }

  .client-theme.price-page .price-hero-brand {
    padding: 10px 8px;
  }

  .client-theme.price-page .price-brand {
    font-size: clamp(23px, 7.5vw, 32px);
  }

  .client-theme.price-page .price-hero-brand p {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.1;
  }

  .client-theme.price-page .price-intro {
    padding: 18px 0 24px;
  }

  .client-theme.price-page .price-intro h1 {
    font-size: clamp(24px, 7vw, 30px) !important;
    margin-bottom: 12px;
  }

  .client-theme.price-page .price-intro p {
    font-size: 14px;
    line-height: 1.45;
  }

  .client-theme.price-page .price-cards-section {
    padding: 4px 0 38px;
  }

  .client-theme.price-page .price-grid {
    gap: 16px;
  }

  .client-theme.price-page .price-card {
    padding: 22px;
    border-radius: 10px;
  }

  .client-theme.price-page .price-card h2 {
    font-size: 20px;
  }

  .client-theme.price-page .price-card p strong {
    font-size: 34px;
  }

  .client-theme.price-page .price-card p span,
  .client-theme.price-page .price-feature-list li {
    font-size: 14px;
  }

  .client-theme.price-page .price-book {
    min-height: 48px;
    font-size: 15px;
  }

  .client-theme.price-page .price-notes {
    padding: 34px 0 42px;
  }

  .client-theme.price-page .price-notes h2 {
    font-size: 24px;
  }

  .client-theme.price-page .price-notes ul,
  .client-theme.price-page .price-notes p {
    font-size: 14px;
  }
}

/* HS footer layout from client structure. */
.client-theme .hs-site-footer {
  background:
    radial-gradient(circle at 18% 0, rgba(126, 231, 220, 0.13), transparent 340px),
    linear-gradient(180deg, #071110 0%, #050808 100%) !important;
  border-top: 1px solid rgba(126, 231, 220, 0.18) !important;
}

.client-theme .hs-footer-container {
  width: min(calc(100% - 48px), 1500px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr 0.95fr !important;
  gap: 22px !important;
  padding: 66px 0 54px !important;
  background: transparent !important;
}

.client-theme .hs-footer-card {
  position: relative !important;
  min-height: 100% !important;
  padding: 26px !important;
  border: 1px solid rgba(126, 231, 220, 0.18) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, rgba(16, 32, 31, 0.88), rgba(8, 17, 16, 0.92)) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22) !important;
}

.client-theme .hs-card-top-line,
.client-theme .hs-brand-divider {
  width: 58px !important;
  height: 3px !important;
  margin-bottom: 22px !important;
  border-radius: 999px !important;
  background: #7ee7dc !important;
}

.client-theme .hs-brand-logo {
  display: inline-grid !important;
  gap: 2px !important;
  margin-bottom: 22px !important;
  text-decoration: none !important;
}

.client-theme .hs-logo-high,
.client-theme .hs-logo-street {
  color: #f4ffff !important;
  font-size: clamp(34px, 3.1vw, 50px) !important;
  line-height: 0.9 !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.client-theme .hs-logo-street {
  color: #7ee7dc !important;
}

.client-theme .hs-logo-subtitle {
  margin-top: 9px !important;
  color: #9fd9ff !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.client-theme .hs-brand-description {
  display: grid !important;
  grid-template-columns: minmax(120px, 0.75fr) 1fr !important;
  gap: 22px !important;
  align-items: start !important;
}

.client-theme .hs-brand-description h4 {
  margin: 0 !important;
  color: #ffe681 !important;
  font-size: 25px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
}

.client-theme .hs-brand-description p {
  margin: 0 !important;
  color: #d7fffb !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.client-theme .hs-brand-divider {
  margin: 26px 0 22px !important;
  background: rgba(126, 231, 220, 0.45) !important;
}

.client-theme .hs-sister-city {
  display: grid !important;
  gap: 7px !important;
}

.client-theme .hs-sister-city span {
  color: #7ee7dc !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.client-theme .hs-sister-city strong {
  color: #f4ffff !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}

.client-theme .hs-sister-city small {
  color: #9fd9ff !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.client-theme .hs-footer-card h3 {
  margin: 0 0 22px !important;
  color: #7ee7dc !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.client-theme .hs-footer-links {
  display: grid !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.client-theme .hs-footer-links a {
  display: inline-flex !important;
  align-items: center !important;
  color: #d7fffb !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.client-theme .hs-footer-links a:hover {
  color: #ffe681 !important;
}

.client-theme .hs-site-footer .footer-bottom {
  width: min(calc(100% - 48px), 1500px) !important;
  margin: 0 auto !important;
  padding: 18px 0 22px !important;
  border-top: 1px solid rgba(126, 231, 220, 0.18) !important;
  background: transparent !important;
}

@media (max-width: 980px) {
  .client-theme .hs-footer-container {
    grid-template-columns: 1fr 1fr !important;
  }

  .client-theme .hs-brand-card {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 640px) {
  .client-theme .hs-footer-container,
  .client-theme .hs-site-footer .footer-bottom {
    width: min(calc(100% - 24px), 520px) !important;
  }

  .client-theme .hs-footer-container {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 38px 0 30px !important;
  }

  .client-theme .hs-footer-card {
    padding: 20px !important;
    border-radius: 10px !important;
  }

  .client-theme .hs-brand-description {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .client-theme .hs-logo-high,
  .client-theme .hs-logo-street {
    font-size: 31px !important;
  }

  .client-theme .hs-brand-description h4,
  .client-theme .hs-sister-city strong {
    font-size: 20px !important;
  }

  .client-theme .hs-footer-links a {
    font-size: 14px !important;
  }
}

/* Compact home popular galleries controls. */
.client-theme.home-page .client-intro-section {
  padding-top: 16px !important;
  padding-bottom: 40px !important;
}

.client-theme.home-page .popular-head {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.54fr) !important;
  gap: 26px !important;
}

.client-theme.home-page .popular-head h1 {
  margin: 0 0 12px !important;
  font-size: clamp(28px, 2.5vw, 42px) !important;
  line-height: 1.05 !important;
}

.client-theme.home-page .gallery-tabs {
  gap: 9px 18px !important;
}

.client-theme.home-page .gallery-tabs a {
  font-size: clamp(16px, 1.25vw, 20px) !important;
  line-height: 1.05 !important;
}

.client-theme.home-page .selector-row {
  gap: 14px !important;
  max-width: 680px !important;
}

.client-theme.home-page .selector-row select,
.client-theme.home-page .selector-row option {
  min-height: 54px !important;
  padding: 0 42px 0 22px !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

.client-theme.home-page .client-search {
  width: min(100%, 660px) !important;
  margin-top: 26px !important;
}

.client-theme.home-page .client-search input,
.client-theme.home-page .client-search button {
  min-height: 56px !important;
  font-size: 18px !important;
  line-height: 1.1 !important;
}

.client-theme.home-page .client-search input {
  padding: 0 22px !important;
}

.client-theme.home-page .client-search button {
  min-width: 158px !important;
  padding: 0 24px !important;
}

@media (max-width: 1180px) {
  .client-theme.home-page .popular-head {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .client-theme.home-page .client-intro-section {
    padding-top: 14px !important;
    padding-bottom: 30px !important;
  }

  .client-theme.home-page .popular-head {
    gap: 18px !important;
  }

  .client-theme.home-page .popular-head h1 {
    font-size: clamp(24px, 7vw, 30px) !important;
    margin-bottom: 10px !important;
  }

  .client-theme.home-page .gallery-tabs {
    gap: 8px 12px !important;
  }

  .client-theme.home-page .gallery-tabs a {
    font-size: 13px !important;
  }

  .client-theme.home-page .selector-row select,
  .client-theme.home-page .selector-row option {
    min-height: 48px !important;
    padding-left: 16px !important;
    font-size: 15px !important;
  }

  .client-theme.home-page .client-search {
    margin-top: 18px !important;
  }

  .client-theme.home-page .client-search input,
  .client-theme.home-page .client-search button {
    min-height: 48px !important;
    font-size: 15px !important;
  }

  .client-theme.home-page .client-search button {
    min-width: 112px !important;
  }
}

/* Sticky menu only: keep logo/contact header scrolling normally. */
.client-theme .site-header,
.client-theme.home-page .site-header {
  display: contents !important;
  position: relative !important;
  top: auto !important;
  z-index: 120 !important;
}

.client-theme .top-contact-strip {
  position: relative !important;
  z-index: 1 !important;
}

.client-theme .nav-shell,
.client-theme.home-page .nav-shell {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.client-theme .nav-shell::before,
.client-theme.home-page .nav-shell::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  border-radius: inherit !important;
  background: inherit !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 767px) {
  .client-theme .nav-shell,
  .client-theme.home-page .nav-shell {
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
}
