:root {
    --color-bg: #060c1e;
    --color-surface: rgba(255, 255, 255, 0.055);
    --color-text: #f4f1ee;
    --color-text-footer: #f5f3ef;
    --color-muted: #c9c1bb;
    --color-primary: #1c3f7a;
    --color-box-bg: rgba(4, 10, 24, 0.55);
    --color-box-bg-alt: rgba(3, 8, 20, 0.6);
    --color-hero-bg: #0a1730;
    --color-primary-overlay: rgba(28, 63, 122, 0.6);
    --color-accent: #d4af37;
    --color-accent-bright: #ffc857;
    --color-border: rgba(255, 255, 255, 0.22);
    --font-body: Roboto, Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/roboto/roboto-400.woff2") format("woff2");
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/roboto/roboto-500.woff2") format("woff2");
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/roboto/roboto-700.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("../img/bg-body-navy.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

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

a {
    color: inherit;
}

.site-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-shell--narrow {
    width: min(820px, calc(100% - 32px));
}

.site-header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 99;
    padding: 10px 0 18px;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    transition: 0.4s;
}

.site-main {
    padding-top: 107px;
}

.site-header__inner,
.site-footer__inner,
.contact-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__inner {
    width: min(1450px, calc(100% - 30px));
    min-height: 79px;
    padding: 0 20px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg);
}

.site-brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 7px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.site-nav__list,
.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a,
.site-footer a {
    text-decoration: none;
    color: #fff;
}

.site-nav a {
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
    color: var(--color-accent-bright);
}

.site-nav .has-arrow > a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    vertical-align: 2px;
}

.site-nav .arrow-down > a::after {
    border-top: 8px solid var(--color-accent-bright);
}

.site-nav .arrow-up > a::after {
    border-bottom: 8px solid var(--color-accent-bright);
}

.site-nav-toggle {
    display: none;
}

@media (max-width: 1200px) {
    .site-nav__list {
        gap: 18px;
    }

    .site-brand {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .site-nav a {
        font-size: 14px;
    }
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--color-hero-bg);
    color: #fff;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.hero__content {
    position: relative;
    padding: 120px 0 84px;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.04;
    text-transform: uppercase;
}

.hero p {
    max-width: 620px;
    font-size: 19px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.button--outline {
    background: transparent;
    color: #fff;
    border-color: var(--color-accent);
}

.button--light {
    border-color: #fff;
    background: #fff;
    color: var(--color-primary);
}

.site-section {
    padding: 72px 0;
}

.intro-header {
    padding: 0 0 8px;
}

.intro-header .site-shell {
    width: min(1450px, calc(100% - 30px));
}

.intro-header__box {
    padding: 22px 54px 20px;
    border: 1px solid var(--color-accent);
    background: var(--color-box-bg);
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
}

.intro-header__box h1 {
    margin: 0 0 20px;
    color: var(--color-accent-bright);
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
}

.intro-header__box h1::before,
.intro-header__box h1::after {
    content: "\2605";
    padding: 0 6px;
}

.intro-header__box h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.intro-header__phones,
.intro-header__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.intro-header__phones {
    margin-bottom: 12px;
}

.intro-header__phones a,
.intro-header__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-accent);
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    line-height: 1.1;
}

.intro-header__phones a {
    min-height: 40px;
    padding: 5px;
    font-size: 20px;
    font-weight: 700;
}

.intro-header__links a {
    min-height: 37px;
    padding: 5px;
    font-size: 17px;
    font-weight: 700;
}

.intro-header__links a::before {
    content: "\261B";
    margin-right: 5px;
    color: var(--color-accent-bright);
}

.intro-header__keywords,
.intro-header__highlight,
.intro-header__body {
    max-width: 1320px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 700;
}

.intro-header__highlight {
    color: var(--color-accent-bright);
}

.intro-header__body {
    margin-bottom: 8px;
}

.content-panel {
    padding: 5px 0 0;
    margin-bottom: 5px;
    text-align: center;
}

.content-panel .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 18px 28px 20px;
    border: 1px solid var(--color-accent);
    background: var(--color-box-bg);
}

.content-panel__body {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
}

.content-panel__body p {
    margin: 0 0 6px;
}

.content-panel__body .gold {
    color: var(--color-accent-bright);
}

.title-bar {
    padding: 0;
    margin: 0 0 5px;
    text-align: center;
}

.title-bar .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 0;
    border: 1px solid var(--color-accent);
    background: var(--color-primary-overlay);
}

.title-bar h2 {
    margin: 0;
    padding: 4px 10px 0;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.title-bar__text {
    margin: 0;
    padding: 0 10px 6px;
    color: var(--color-accent-bright);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.title-bar__text p {
    margin: 0;
}

.title-bar__text .white {
    color: #fff;
}

.title-bar__text .underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.legacy-html,
.massage-menu,
.products-table {
    padding: 5px 0;
    text-align: center;
}

.legacy-html .site-shell,
.massage-menu .site-shell,
.products-table .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 20px 20px 24px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg);
}

.legacy-html h2,
.massage-menu h2,
.products-table h2 {
    margin: 0 0 26px;
    color: var(--color-accent-bright);
    font-size: 28px;
    line-height: 1.15;
    text-transform: uppercase;
}

.legacy-html table,
.massage-menu table,
.products-table table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.legacy-html th,
.legacy-html td,
.massage-menu th,
.massage-menu td,
.products-table th,
.products-table td {
    padding: 14px;
    border: 2px solid var(--color-accent);
    vertical-align: top;
    line-height: 1.55;
}

.legacy-html th,
.legacy-html td:first-child,
.massage-menu th,
.massage-menu td:first-child,
.products-table th,
.products-table td:first-child {
    color: var(--color-accent-bright);
}

.site-section--muted {
    background: rgba(255, 255, 255, 0.04);
}

.rich-text h2,
.site-section h1,
.site-section h2,
.cta-block h2 {
    margin-top: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.split-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 48px;
}

.split-block--reverse .split-block__content {
    order: 2;
}

.split-block__media img,
.content-card img,
.single-entry__image img {
    width: 100%;
    border-radius: 8px;
}

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

.content-card,
.price-item {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: #fff;
    backdrop-filter: blur(4px);
}

.content-card h2,
.content-card h3,
.price-item h3 {
    margin: 16px 0 8px;
    line-height: 1.2;
}

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

.cta-block {
    padding: 70px 0;
    background: var(--color-primary);
    color: #fff;
}

.cta-block__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.cta-block p {
    max-width: 680px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-footer {
    padding: 0 0 5px;
    background: transparent;
    color: var(--color-text-footer);
    text-align: center;
}

.site-footer .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 22px 20px 20px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg-alt);
}

.footer-box {
    margin-bottom: 28px;
    color: var(--color-text-footer);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-box__title {
    display: inline-block;
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.18;
}

.footer-box__subtitle {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.footer-box p {
    margin: 0 0 8px;
    color: var(--color-accent-bright);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.footer-box a {
    color: inherit;
}

.footer-box__phone a {
    color: var(--color-text-footer);
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
}

.footer-box__phone a::before {
    content: "\260e ";
    color: var(--color-text-footer);
}

.drmassage-map-wrap {
    width: 100%;
    height: 450px;
    margin: 0 auto 20px;
    border: 0;
    overflow: hidden;
}

.copyright {
    color: var(--color-text-footer);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.partner-badges {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 0 10px 8px;
    text-align: center;
}

.partner-badges a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 4px;
}

.partner-badges img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.partner-badges__text {
    margin: -2px 0 2px;
    color: #0000ee;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.partner-badges__text a {
    display: inline;
    margin: 0;
    color: #0000ee;
}

.intro-panel {
    padding-top: 46px;
    text-align: center;
}

.intro-panel__inner {
    padding: 34px 24px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    backdrop-filter: blur(4px);
}

.intro-panel h2 {
    color: var(--color-accent);
    margin-bottom: 8px;
    font-size: clamp(30px, 5vw, 46px);
    text-transform: uppercase;
}

.intro-panel__subtitle {
    margin: -10px 0 22px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.quick-links {
    padding: 12px 0 42px;
}

.quick-links__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 10px;
    border: 2px solid var(--color-accent);
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.center-panel {
    padding: 44px 0;
    text-align: center;
}

.center-panel__inner {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    backdrop-filter: blur(4px);
}

.center-panel h2 {
    color: var(--color-accent);
    text-transform: uppercase;
}

.center-panel__body {
    max-width: 920px;
    margin: 0 auto;
}

.center-panel__body ul {
    display: inline-grid;
    gap: 6px;
    margin: 18px auto 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.center-panel__body li::before {
    content: ">";
    margin-right: 8px;
    color: var(--color-accent);
}

.image-banner {
    padding: 0 0 5px;
}

.image-banner .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 20px 20px 24px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg);
}

.image-banner img {
    width: 100%;
    height: auto;
    object-fit: initial;
    border-radius: 15px;
    border: 0;
}

.video-banner {
    padding: 0 0 5px;
    text-align: center;
}

.video-banner .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 20px 10px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg-alt);
}

.media-strip-wrap {
    padding: 0;
}

.media-strip {
    display: flex;
    width: 100%;
    justify-content: center;
}

.media-strip__itemm {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    flex: 0 1 500px;
}

.video-wrapper {
    width: 100%;
}

.video-banner video {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: #000;
}

.booking-details {
    padding: 0 0 5px;
}

.booking-details__inner {
    padding: 0;
    border: 0;
    background: transparent;
}

.experience-two__content {
    width: 100%;
}

.experience-content {
    display: flex;
    margin-bottom: 5px;
    padding: 20px 0 12px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg-alt);
    color: var(--color-text-footer);
    text-transform: uppercase;
}

.left-exp-content,
.right-exp-content {
    flex: 1;
    max-width: 50%;
    padding: 0 20px;
    color: var(--color-text-footer);
}

.left-exp-content {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.experience-content h3,
.experience-title h3 {
    margin: 20px 0 0;
    color: var(--color-accent-bright);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.experience-content p,
.experience-title p,
.booking-copy {
    margin: 0 0 1px;
    color: var(--color-text-footer);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.32;
}

.booking-copy--large {
    display: block;
    margin-bottom: 18px;
}

.check-line {
    padding-left: 0;
}

.exclusive-offer {
    margin-top: 16px;
    text-align: center;
}

.exclusive-offer a,
.bottom-experience a {
    display: inline-block;
    min-width: 340px;
    margin: 4px 2px;
    padding: 14px 18px;
    border: 3px solid var(--color-accent);
    background: var(--color-box-bg-alt);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.experience-title {
    margin-bottom: 22px;
    padding: 25px 20px 20px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg-alt);
    text-align: center;
    text-transform: uppercase;
}

.experience-title .accent {
    color: var(--color-accent-bright);
}

.bottom-experience {
    margin-bottom: 0;
    padding: 0 10px 4px;
    border: 0;
    background: transparent;
    text-align: center;
}

.price-table-block {
    padding: 0 0 5px;
    background: transparent;
}

.price-table-block > .site-shell {
    width: min(1450px, calc(100% - 30px));
    padding: 20px 10px 10px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg-alt);
}

.price-table-block__heading {
    margin-bottom: 5px;
    padding: 20px 15px;
    border: 1px solid var(--color-accent-bright);
    background: var(--color-box-bg-alt);
    text-align: center;
}

.price-table-block__heading h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    text-transform: uppercase;
}

.price-table-block__heading p {
    position: relative;
    display: inline-block;
    margin: 10px 0 0;
    padding: 0 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.price-table-block__heading p::before,
.price-table-block__heading p::after {
    content: "";
    position: absolute;
    top: 9px;
    width: 30px;
    height: 1px;
    background: #fff;
}

.price-table-block__heading p::before {
    left: 0;
}

.price-table-block__heading p::after {
    right: 0;
}

.price-table-wrap {
    overflow-x: auto;
    margin-top: 5px;
    border: 0;
    border-radius: 0;
    background: var(--color-box-bg-alt);
}

@media (max-width: 820px) {
    .price-table-block > .site-shell {
        width: min(100% - 20px, 1450px);
        padding: 12px 5px 5px;
    }
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.price-table td {
    width: 50%;
    padding: 15px;
    border: 3px solid var(--color-accent-bright);
    line-height: 1.5;
    vertical-align: top;
    font-weight: 700;
}

.price-table tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 820px) {
    .site-header {
        padding: 16px 0 20px;
    }

    .site-main {
        padding-top: 108px;
    }

    .site-header__inner {
        width: min(100% - 16px, 560px);
        min-height: 70px;
        padding: 0 22px;
    }

    .site-brand {
        max-width: calc(100% - 64px);
        font-size: 20px;
        letter-spacing: 7px;
    }

    .site-nav-toggle {
        position: relative;
        z-index: 3;
        display: inline-block;
        width: 33px;
        min-width: 33px;
        height: 27px;
        min-height: 27px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: transparent;
        font-size: 0;
        line-height: 0;
        cursor: pointer;
    }

    .site-nav-toggle::before,
    .site-nav-toggle::after {
        content: "";
        position: absolute;
        left: 0;
        width: 33px;
        height: 3px;
        background: #fff;
    }

    .site-nav-toggle::before {
        top: 2px;
        box-shadow: 0 10px 0 #fff;
    }

    .site-nav-toggle::after {
        top: 22px;
    }

    .site-nav {
        position: fixed;
        z-index: 2;
        right: -280px;
        top: 0;
        width: 260px;
        height: 100vh;
        padding: 86px 28px 28px;
        border-left: 1px solid #fff;
        background: var(--color-box-bg-alt);
        transition: right 0.35s ease;
    }

    .site-nav.is-open {
        right: 0;
    }

    .site-nav__list,
    .site-footer__nav,
    .site-footer__inner,
    .contact-block,
    .cta-block__inner {
        display: grid;
        justify-items: start;
    }

    .site-nav__list {
        gap: 17px;
    }

    .site-nav a {
        color: #fff;
        font-size: 15px;
    }

    .site-nav .has-arrow > a::after {
        margin-left: 7px;
    }

    .hero {
        min-height: 520px;
    }

    .hero__content {
        padding: 92px 0 56px;
    }

    .intro-header .site-shell {
        width: min(100% - 20px, 1450px);
    }

    .image-banner .site-shell {
        width: min(100% - 20px, 1450px);
        padding: 12px 8px;
    }

    .image-banner img {
        display: inline;
        margin: 0 5px 0 0;
    }

    .intro-header__box {
        padding: 18px 10px;
    }

    .intro-header__box h1 {
        font-size: 28px;
    }

    .intro-header__box h2 {
        font-size: 20px;
    }

    .intro-header__keywords,
    .intro-header__highlight,
    .intro-header__body {
        font-size: 16px;
    }

    .intro-header__phones a,
    .intro-header__links a {
        width: 100%;
        font-size: 15px;
    }

    .experience-content {
        flex-direction: column;
        padding: 20px 0;
    }

    .left-exp-content,
    .right-exp-content {
        max-width: 100%;
        padding: 0 14px;
    }

    .left-exp-content {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .experience-content h3,
    .experience-title h3 {
        font-size: 17px;
    }

    .experience-content p,
    .experience-title p,
    .booking-copy {
        font-size: 14px;
    }

    .exclusive-offer a,
    .bottom-experience a {
        width: 100%;
        max-width: 420px;
    }

    .split-block,
    .card-grid,
    .price-list,
    .quick-links__grid,
    .cta-block__inner {
        grid-template-columns: 1fr;
    }

    .split-block--reverse .split-block__content {
        order: initial;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}
