:root {
    --jh-ink: #11110f;
    --jh-muted: #6b6860;
    --jh-paper: #faf8f2;
    --jh-surface: #ffffff;
    --jh-stone: #d8d0c0;
    --jh-sea: #185c66;
    --jh-sea-deep: #0b353d;
    --jh-sun: #c99245;
    --jh-radius: 8px;
    --jh-max: 1160px;
    --jh-header: 82px;
    --jh-utility: 32px;
    --jh-header-total: calc(var(--jh-header) + var(--jh-utility));
    --jh-header-bg: var(--jh-sea-deep);
    --jh-header-text: #fff;
    --jh-header-bg-image: none;
    --jh-body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --jh-heading-font: Georgia, "Times New Roman", serif;
    --jh-base-font-size: 1rem;
    --jh-h1-max: 5.6rem;
    --jh-h2-max: 4.2rem;
    --jh-footer-bg: var(--jh-sea-deep);
    --jh-footer-text: #fff;
    --jh-footer-bg-image: none;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--jh-paper);
    color: var(--jh-ink);
    font-family: var(--jh-body-font, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: var(--jh-base-font-size, 1rem);
    line-height: 1.65;
}

body.admin-bar .jh-site-header {
    top: 46px;
}

@media (min-width: 783px) {
    body.admin-bar .jh-site-header {
        top: 32px;
    }
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

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

.jh-skip-link {
    position: absolute;
    left: 12px;
    top: -120px;
    z-index: 1000;
    background: var(--jh-ink);
    color: #fff;
    padding: 10px 12px;
}

.jh-skip-link:focus {
    top: 12px;
}

.jh-site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background: transparent;
    box-shadow: none;
    transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.jh-site-header:not(.is-scrolled):not(.is-menu-open) {
    color: #fff !important;
    background: transparent !important;
    box-shadow: none !important;
}

.jh-site-header.is-scrolled {
    color: var(--jh-header-text, #fff);
    background:
        linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)),
        var(--jh-header-bg-image, none) center / cover no-repeat,
        var(--jh-header-bg, var(--jh-sea-deep));
    box-shadow: 0 12px 40px rgba(17, 17, 15, 0.12);
}

.jh-site-header.is-menu-open {
    z-index: 10030;
}

.jh-site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.jh-site-header.is-scrolled::before {
    background: transparent;
}

.jh-site-header.is-menu-open {
    color: #fff;
}

.jh-site-header.is-menu-open::before {
    background: transparent;
}

.jh-header-inner {
    min-height: var(--jh-header);
    display: grid;
    grid-template-columns: 96px 1fr 96px;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 18px;
}

.jh-utility-bar {
    position: relative;
    z-index: 10041;
    min-height: 32px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 220ms ease;
}

.jh-site-header.is-scrolled .jh-utility-bar {
    color: color-mix(in srgb, var(--jh-header-text, #fff) 86%, transparent);
}

.jh-utility-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    padding: 0 16px;
}

.jh-utility-bar a {
    color: inherit;
    text-decoration: none;
}

.jh-utility-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}

.jh-utility-text {
    white-space: nowrap;
}

.jh-utility-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jh-utility-icon i {
    font-size: 0.95rem;
    line-height: 1;
}

.jh-brand {
    justify-self: center;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.jh-brand a {
    text-decoration: none;
}

.jh-brand img {
    display: block;
    max-height: 54px;
    width: auto;
}

.jh-menu-toggle {
    width: 84px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    position: relative;
    z-index: 10040;
}

.jh-overlay-menu-block {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 62;
}

.jh-overlay-menu-block__toggle {
    color: #fff;
    justify-content: flex-end;
}

.jh-overlay-menu-block__panel {
    z-index: 58;
}

.jh-overlay-menu-block--editor {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
    width: min(100%, 520px);
    padding: 18px;
    background: var(--jh-sea-deep);
    color: #fff;
}

.jh-overlay-menu-block--editor .jh-overlay-menu-block__toggle {
    color: inherit;
}

.jh-overlay-menu-block__preview {
    margin-top: 18px;
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.jh-overlay-menu-block__preview strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.jh-menu-icon {
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: border-color 220ms ease, background 220ms ease;
}

.jh-menu-icon::before,
.jh-menu-icon::after {
    content: "";
    position: absolute;
    left: 5px;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.jh-menu-icon::before {
    top: 10px;
}

.jh-menu-icon::after {
    top: 18px;
}

.jh-menu-toggle[aria-expanded="true"] .jh-menu-icon::before {
    top: 14px;
    transform: rotate(45deg);
}

.jh-menu-toggle[aria-expanded="true"] .jh-menu-icon::after {
    top: 14px;
    transform: rotate(-45deg);
}

.jh-menu-toggle[aria-expanded="true"] .jh-menu-icon {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

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

.jh-phone,
.jh-language {
    display: none;
}

.jh-book-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid currentColor;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    white-space: nowrap;
}

.jh-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 49;
    overflow-y: auto;
    --jh-torch-x: 50%;
    --jh-torch-y: 50%;
    --jh-torch-size: 420px;
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 146, 69, 0.16), transparent 28%),
        linear-gradient(135deg, #071d22 0%, #0b353d 45%, #061519 100%);
    color: #fff;
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0);
    transition: clip-path 420ms cubic-bezier(0.77, 0, 0.175, 1), visibility 420ms ease;
}

.jh-menu-panel::before,
.jh-menu-panel::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.jh-menu-panel::before {
    z-index: 0;
    background:
        radial-gradient(
            circle var(--jh-torch-size) at var(--jh-torch-x) var(--jh-torch-y),
            rgba(255, 255, 255, 0.34) 0%,
            rgba(201, 146, 69, 0.2) 22%,
            rgba(255, 255, 255, 0.08) 38%,
            rgba(0, 0, 0, 0) 68%
        );
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 220ms ease;
}

.jh-menu-panel::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 21, 25, 0.8), transparent 15%, transparent 85%, rgba(6, 21, 25, 0.8)),
        radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.46) 100%);
}

.is-menu-open .jh-menu-panel::before {
    opacity: 1;
}

.jh-menu-panel[hidden] {
    display: block;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
}

.jh-menu-panel-inner {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: grid;
    align-content: start;
    gap: 34px;
    padding: calc(var(--jh-header) + 28px) 0 46px;
    overflow: hidden;
}

.jh-menu-meta {
    width: min(calc(100% - 40px), var(--jh-max));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.jh-menu-meta a {
    color: #fff;
    text-decoration: none;
}

.jh-primary-menu,
.jh-primary-menu .sub-menu,
.jh-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jh-primary-menu {
    display: grid;
    gap: 4px;
    padding: 10px 0 32px;
}

.jh-primary-menu > li {
    position: relative;
    border-bottom: 0;
    opacity: 0;
    transform: translate3d(24px, 0, 0);
}

.is-menu-open .jh-primary-menu > li {
    animation: jh-menu-fade-in 520ms ease forwards;
    animation-delay: calc(150ms + (var(--jh-menu-row, 1) * 65ms));
}

.jh-primary-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 14vw, 6.2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.jh-primary-menu > li > a.jh-menu-effect-link {
    width: max-content;
    max-width: none;
    display: flex;
    gap: 0.22em;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    color: rgba(255, 255, 255, 0.22);
    text-shadow: 0 0 22px rgba(255, 255, 255, 0);
    white-space: nowrap;
    transform: translate3d(var(--jh-menu-initial, 0), 0, 0);
    animation: jh-menu-slide 7s linear infinite;
    transition: color 240ms ease, opacity 240ms ease, text-shadow 240ms ease;
}

.jh-primary-menu > li:nth-child(even) > a.jh-menu-effect-link {
    --jh-menu-initial: -22%;
    --jh-menu-final: 0;
    animation-name: jh-menu-slide-alt;
}

.jh-primary-menu > li > a.jh-menu-effect-link span {
    display: block;
    padding: 0 0.08em;
}

.jh-primary-menu > li:hover > a.jh-menu-effect-link,
.jh-primary-menu > li:focus-within > a.jh-menu-effect-link,
.jh-primary-menu > li.is-open > a.jh-menu-effect-link {
    color: #fff4d2;
    text-shadow: 0 0 26px rgba(255, 235, 167, 0.72);
    animation-play-state: paused;
}

.jh-primary-menu > li.is-torch-lit > a.jh-menu-effect-link {
    color: rgba(255, 244, 210, 0.92);
    text-shadow: 0 0 32px rgba(255, 235, 167, 0.58);
}

.jh-menu-torch {
    position: fixed;
    left: var(--jh-torch-x, 50%);
    top: var(--jh-torch-y, 50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 244, 210, 0.52);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 34px rgba(255, 235, 167, 0.24);
    transition: opacity 180ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease;
}

.jh-menu-torch::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: inherit;
    background: rgba(255, 244, 210, 0.2);
}

.is-menu-open .jh-menu-torch {
    opacity: 1;
}

.jh-menu-torch.is-hovering {
    width: 74px;
    height: 74px;
    border-color: rgba(255, 244, 210, 0);
    background: rgba(255, 244, 210, 0.12);
}

.jh-submenu-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.jh-submenu-toggle span::before,
.jh-submenu-toggle span::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    width: 16px;
    height: 1px;
    background: currentColor;
}

.jh-submenu-toggle span::after {
    transform: rotate(90deg);
}

.jh-submenu-toggle[aria-expanded="true"] span::after {
    transform: rotate(0deg);
}

.jh-primary-menu .sub-menu {
    width: min(calc(100% - 40px), var(--jh-max));
    margin: 0 auto;
    padding: 0 0 18px;
}

.jh-primary-menu .sub-menu li {
    border: 0;
}

.jh-primary-menu .sub-menu a {
    padding: 8px 0;
    font-family: inherit;
    font-size: 0.86rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.76);
}

@keyframes jh-menu-fade-in {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jh-menu-slide {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-20%, 0, 0);
    }
}

@keyframes jh-menu-slide-alt {
    from {
        transform: translate3d(-22%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.jh-menu-open {
    overflow: hidden;
}

.jh-site-main {
    min-height: 70svh;
    padding-top: 0;
}

.jh-content-with-widgets {
    width: min(calc(100% - 32px), 1320px);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: clamp(22px, 4vw, 48px);
}

.jh-content-with-widgets > .jh-entry-content,
.jh-content-with-widgets > .jh-booking-main {
    min-width: 0;
}

.jh-content-with-widgets > .jh-entry-content > :where(p, h1, h2, h3, h4, h5, h6, ul, ol, figure, form),
.jh-content-with-widgets > .jh-entry-content > .wp-block-group:not(.alignfull):not(.alignwide) {
    width: auto;
    max-width: none;
}

.jh-content-widget {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 18px;
}

.jh-widget {
    min-width: 0;
}

.jh-widget > :first-child {
    margin-top: 0;
}

.jh-widget > :last-child {
    margin-bottom: 0;
}

.jh-widget-title {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.jh-content-wrap,
.jh-entry-content > :where(p, h1, h2, h3, h4, h5, h6, ul, ol, figure, form),
.jh-entry-content > .wp-block-group:not(.alignfull):not(.alignwide) {
    width: min(calc(100% - 32px), var(--jh-max));
    margin-left: auto;
    margin-right: auto;
}

.jh-content-wrap {
    padding: 120px 0 70px;
}

.jh-entry {
    padding: 40px 0;
}

h1,
h2,
h3 {
    font-family: var(--jh-heading-font, Georgia, "Times New Roman", serif);
    font-weight: 400;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.45rem, 13vw, var(--jh-h1-max, 5.6rem));
}

h2 {
    font-size: clamp(2rem, 9vw, var(--jh-h2-max, 4.2rem));
}

h3 {
    font-size: clamp(1.4rem, 5vw, 2.3rem);
}

.jh-entry-content > .alignfull {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.jh-entry-content > .alignwide {
    width: min(calc(100% - 32px), var(--jh-max));
    margin-left: auto;
    margin-right: auto;
}

.jh-cover {
    min-height: 100svh;
    display: flex;
    align-items: end;
    padding: 110px 18px 82px;
    color: #fff;
}

.jh-hero-title {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(3.4rem, 18vw, 8rem);
    text-transform: uppercase;
}

.jh-hero-kicker {
    max-width: 34rem;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.jh-block-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: end;
    padding: 120px 18px 84px;
    background-color: var(--jh-sea-deep);
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.jh-block-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.56));
}

.jh-block-hero__content {
    position: relative;
    z-index: 1;
    width: min(100%, var(--jh-max));
    margin: 0 auto;
}

.jh-block-hero h1 {
    max-width: 10ch;
    margin: 0;
    color: inherit;
    font-size: clamp(3.4rem, 18vw, 8rem);
    text-transform: uppercase;
}

.jh-block-hero p {
    max-width: 34rem;
    margin: 14px 0 26px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.jh-block-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid var(--jh-ink);
    color: var(--jh-ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
}

.jh-block-button--light {
    border-color: #fff;
    color: #fff;
}

.jh-room-highlight {
    width: min(calc(100% - 32px), var(--jh-max));
    margin: 60px auto;
    display: grid;
    gap: 0;
    background: var(--jh-surface);
    border: 1px solid rgba(17, 17, 15, 0.12);
}

.jh-room-highlight__media {
    margin: 0;
    min-height: 280px;
    background: var(--jh-stone);
}

.jh-room-highlight__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    object-fit: cover;
}

.jh-room-highlight__placeholder {
    min-height: 280px;
    display: grid;
    place-items: center;
    background: var(--jh-stone);
    color: var(--jh-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.jh-room-highlight__content {
    padding: 26px 20px 28px;
}

.jh-room-highlight__meta {
    margin: 0 0 12px;
    color: var(--jh-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.jh-room-highlight h2 {
    margin: 0 0 16px;
    text-transform: uppercase;
}

.jh-room-highlight__content > p:not(.jh-room-highlight__meta) {
    margin: 0 0 22px;
    max-width: 36rem;
}

.jh-block-editor-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.wp-block-button__link,
button,
input,
select,
textarea {
    border-radius: 0;
}

.wp-block-button__link {
    padding: 13px 22px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.jh-button-light .wp-block-button__link {
    color: #fff;
    border-color: #fff;
}

.jh-booking-panel {
    margin-top: 38px;
    margin-bottom: 38px;
    padding: 24px 18px;
    background: var(--jh-surface);
    border-top: 2px solid var(--jh-sun);
}

.bottomsearch.h-search.md-search.jh-bottom-search {
    position: relative;
    z-index: 8;
    width: min(calc(100% - 24px), 1040px);
    margin: -48px auto 34px;
    background: var(--jh-surface);
    border: 1px solid rgba(17, 17, 15, 0.12);
    box-shadow: 0 22px 60px rgba(17, 17, 15, 0.16);
}

.jh-bottom-search__inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    gap: 16px;
}

.jh-bottom-search__label {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 7vw, 2.25rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.jh-bottom-search__button,
.jh-bottom-search__button .wp-block-button__link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--jh-sea-deep);
    color: #fff;
    border: 0;
    white-space: nowrap;
    text-decoration: none;
}

.jh-vikbooking-panel {
    width: min(calc(100% - 24px), 1040px);
    margin: 34px auto;
    background: var(--jh-paper);
    color: var(--jh-ink);
    border: 1px solid rgba(17, 17, 15, 0.12);
    border-radius: var(--jh-radius);
    box-shadow: 0 22px 70px rgba(17, 17, 15, 0.14);
    padding: clamp(18px, 4vw, 34px);
}

.jh-vikbooking-panel--search {
    border-top: 3px solid var(--jh-sun);
}

.jh-vikbooking-panel__heading {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.jh-vikbooking-panel__heading h2 {
    margin: 0;
    font-size: clamp(2rem, 10vw, 4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.jh-vikbooking-panel__content {
    background: var(--jh-surface);
    border: 1px solid rgba(17, 17, 15, 0.1);
    padding: clamp(16px, 3vw, 26px);
}

.jh-vikbooking-panel__content > :first-child {
    margin-top: 0;
}

.jh-vikbooking-panel__content > :last-child {
    margin-bottom: 0;
}

.jh-booking-modal-open {
    overflow: hidden;
}

.jh-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    align-items: end;
}

.jh-booking-modal[hidden] {
    display: none;
}

.jh-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 15, 0.62);
}

.jh-booking-modal__dialog {
    position: relative;
    width: 100%;
    max-height: min(86svh, 760px);
    overflow-y: auto;
    background: var(--jh-paper);
    color: var(--jh-ink);
    padding: 28px 18px 24px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -22px 70px rgba(0, 0, 0, 0.24);
}

.jh-booking-modal__dialog h2 {
    margin: 0 48px 22px 0;
    font-size: clamp(2rem, 10vw, 4rem);
    text-transform: uppercase;
}

.jh-booking-modal__close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(17, 17, 15, 0.16);
    background: transparent;
    color: var(--jh-ink);
    cursor: pointer;
}

.jh-booking-modal__close::before,
.jh-booking-modal__close::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 21px;
    width: 18px;
    height: 1px;
    background: currentColor;
}

.jh-booking-modal__close::before {
    transform: rotate(45deg);
}

.jh-booking-modal__close::after {
    transform: rotate(-45deg);
}

.jh-booking-modal__content {
    background: var(--jh-surface);
    border: 1px solid rgba(17, 17, 15, 0.12);
    padding: 18px;
}

.jh-booking-modal__content > :first-child {
    margin-top: 0;
}

.jh-booking-modal__content > :last-child {
    margin-bottom: 0;
}

.jh-booking-flow {
    background: var(--jh-paper);
}

.jh-booking-hero {
    min-height: min(78svh, 760px);
    position: relative;
    display: grid;
    align-items: end;
    background:
        linear-gradient(145deg, rgba(11, 53, 61, 0.82), rgba(17, 17, 15, 0.45)),
        var(--jh-sea-deep);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 160px clamp(18px, 5vw, 72px) clamp(78px, 10vw, 132px);
    overflow: hidden;
}

.jh-booking-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 15, 0.2), rgba(17, 17, 15, 0.72));
    pointer-events: none;
}

.jh-booking-hero__content {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
}

.jh-booking-hero h1 {
    margin: 0;
    font-size: clamp(3.2rem, 16vw, var(--jh-h1-max));
    line-height: 0.92;
    text-transform: uppercase;
}

.jh-booking-hero p:not(.jh-eyebrow) {
    max-width: 42rem;
    margin: 18px 0 0;
    font-size: clamp(1rem, 4vw, 1.35rem);
    color: rgba(255, 255, 255, 0.86);
}

.jh-booking-flow-inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), 1220px);
    margin: clamp(-82px, -7vw, -42px) auto clamp(54px, 8vw, 92px);
    display: grid;
    gap: clamp(22px, 5vw, 46px);
}

.jh-booking-flow-inner.jh-content-with-widgets {
    width: min(calc(100% - 32px), 1320px);
    align-items: start;
}

.jh-booking-main {
    display: grid;
    gap: clamp(22px, 5vw, 46px);
}

.jh-booking-search-card,
.jh-booking-page-content {
    background: var(--jh-surface);
    border: 1px solid rgba(17, 17, 15, 0.1);
    border-radius: var(--jh-radius);
    padding: clamp(20px, 5vw, 44px);
}

.jh-booking-search-card {
    box-shadow: 0 24px 70px rgba(17, 17, 15, 0.16);
    border-top: 3px solid var(--jh-sun);
}

.jh-booking-search-card--primary {
    overflow: hidden;
}

.jh-booking-section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: clamp(18px, 4vw, 28px);
}

.jh-booking-section-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 8vw, 4rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.jh-booking-plugin-area > :first-child,
.jh-booking-page-content .jh-entry-content > :first-child {
    margin-top: 0;
}

.jh-booking-plugin-area > :last-child,
.jh-booking-page-content .jh-entry-content > :last-child {
    margin-bottom: 0;
}

.jh-booking-placeholder {
    min-height: 120px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px dashed rgba(17, 17, 15, 0.26);
    color: color-mix(in srgb, var(--jh-ink) 68%, transparent);
    text-align: center;
    background: color-mix(in srgb, var(--jh-paper) 70%, #fff);
}

.jh-booking-editor-note {
    padding: 24px;
    border-left: 3px solid var(--jh-sun);
    background: var(--jh-surface);
}

.wpforms-form.jh-wpform {
    margin: 0;
}

.wpforms-form.jh-wpform .wpforms-field-container {
    display: grid;
    gap: 18px;
}

.wpforms-form.jh-wpform .wpforms-field {
    padding: 0 !important;
}

.wpforms-form.jh-wpform .wpforms-field-label,
.wpforms-form.jh-wpform .wpforms-field-sublabel {
    color: color-mix(in srgb, currentColor 76%, transparent);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.wpforms-form.jh-wpform input[type="text"],
.wpforms-form.jh-wpform input[type="email"],
.wpforms-form.jh-wpform input[type="tel"],
.wpforms-form.jh-wpform input[type="number"],
.wpforms-form.jh-wpform input[type="url"],
.wpforms-form.jh-wpform select,
.wpforms-form.jh-wpform textarea {
    width: 100%;
    max-width: none !important;
    min-height: 52px;
    border: 1px solid color-mix(in srgb, currentColor 22%, transparent) !important;
    border-radius: 0 !important;
    background: color-mix(in srgb, var(--jh-surface) 86%, transparent) !important;
    color: currentColor !important;
    padding: 0 16px !important;
    font: inherit !important;
    box-shadow: none !important;
}

.wpforms-form.jh-wpform textarea {
    min-height: 138px;
    padding-top: 14px !important;
    resize: vertical;
}

.wpforms-form.jh-wpform input:focus,
.wpforms-form.jh-wpform select:focus,
.wpforms-form.jh-wpform textarea:focus {
    border-color: var(--jh-sun) !important;
    outline: 2px solid color-mix(in srgb, var(--jh-sun) 28%, transparent);
    outline-offset: 0;
}

.wpforms-form.jh-wpform .wpforms-submit-container {
    margin: 0 !important;
    padding: 22px 0 0 !important;
}

.wpforms-form.jh-wpform .jh-wpform-submit,
.wpforms-form.jh-wpform button[type="submit"],
.wpforms-form.jh-wpform input[type="submit"] {
    min-height: 52px;
    border: 1px solid var(--jh-sea-deep) !important;
    border-radius: 0 !important;
    background: var(--jh-sea-deep) !important;
    color: #fff !important;
    padding: 0 24px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    cursor: pointer;
}

.wpforms-form.jh-wpform .jh-wpform-submit:hover,
.wpforms-form.jh-wpform button[type="submit"]:hover,
.wpforms-form.jh-wpform input[type="submit"]:hover {
    background: var(--jh-sun) !important;
    border-color: var(--jh-sun) !important;
}

.wpforms-form.jh-wpform-inline {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.wpforms-form.jh-wpform-inline .wpforms-field-container {
    flex: 1 1 auto;
    display: flex;
}

.wpforms-form.jh-wpform-inline .wpforms-field {
    flex: 1 1 auto;
}

.wpforms-form.jh-wpform-inline .wpforms-field-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.wpforms-form.jh-wpform-inline input[type="text"],
.wpforms-form.jh-wpform-inline input[type="email"] {
    height: 52px;
    border-right: 0 !important;
}

.wpforms-form.jh-wpform-inline .wpforms-submit-container {
    padding: 0 !important;
}

.wpforms-form.jh-wpform-inline .jh-wpform-submit,
.wpforms-form.jh-wpform-inline button[type="submit"],
.wpforms-form.jh-wpform-inline input[type="submit"] {
    height: 52px;
    white-space: nowrap;
}

.jh-booking-plugin-area,
.jh-booking-plugin-area form {
    min-width: 0;
}

.jh-site-footer {
    background:
        linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
        var(--jh-footer-bg-image, none) center / cover no-repeat,
        var(--jh-footer-bg, var(--jh-sea-deep));
    color: var(--jh-footer-text, #fff);
    width: 100%;
    padding: 46px clamp(18px, 4vw, 56px);
}

.jh-footer-inner {
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 38px;
}

.jh-site-footer .jh-widget-title {
    color: inherit;
}

.jh-site-footer .jh-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jh-site-footer .jh-widget li + li {
    margin-top: 10px;
}

.jh-site-footer .jh-widget a {
    color: inherit;
    text-decoration: none;
}

.jh-footer-subscribe {
    display: grid;
    gap: 18px;
}

.jh-footer-subscribe h2 {
    margin: 0;
    font-size: clamp(1.8rem, 7vw, 3.4rem);
    text-transform: uppercase;
}

.jh-footer-subscribe-form form,
.jh-footer-subscribe-form .wpforms-form {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.jh-footer-subscribe-form .wpforms-field-container {
    flex: 1 1 auto;
    display: flex;
}

.jh-footer-subscribe-form .wpforms-field {
    flex: 1 1 auto;
    padding: 0 !important;
}

.jh-footer-subscribe-form .wpforms-submit-container {
    padding: 0 !important;
    margin: 0 !important;
}

.jh-footer-subscribe-form input[type="email"],
.jh-footer-subscribe-form input[type="text"],
.jh-footer-subscribe-form .wpforms-field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid currentColor;
    border-right: 0;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    padding: 0 16px;
}

.jh-footer-subscribe-form input::placeholder {
    color: color-mix(in srgb, currentColor 70%, transparent);
}

.jh-footer-subscribe-form button,
.jh-footer-subscribe-form input[type="submit"],
.jh-footer-subscribe-form .wpforms-submit {
    min-height: 52px;
    border: 1px solid currentColor !important;
    background: currentColor !important;
    color: var(--jh-footer-bg, var(--jh-sea-deep)) !important;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.jh-footer-columns {
    display: grid;
    gap: clamp(26px, 5vw, 58px);
    align-items: stretch;
}

.jh-footer-column {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 18px;
}

.jh-footer-about,
.jh-footer-nav {
    align-content: center;
    justify-items: center;
    text-align: center;
}

.jh-footer-map {
    align-items: center;
}

.jh-footer-logo img {
    max-height: 72px;
    width: auto;
}

.jh-footer-brand {
    margin: 0 0 12px;
    font-family: var(--jh-heading-font, Georgia, "Times New Roman", serif);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.jh-footer-contact {
    margin-top: 18px;
    color: color-mix(in srgb, currentColor 78%, transparent);
}

.jh-footer-contact p {
    margin: 0 0 10px;
}

.jh-footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.jh-footer-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: inherit;
    text-decoration: none;
}

.jh-footer-map iframe,
.jh-footer-map-placeholder {
    width: 100%;
    min-height: 300px;
    display: block;
    border: 0;
    border-radius: var(--jh-radius);
}

.jh-footer-map-placeholder {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: color-mix(in srgb, currentColor 70%, transparent);
    text-align: center;
    padding: 20px;
}

.jh-footer-menu {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-items: center;
    text-align: center;
}

.jh-footer-menu a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.jh-footer-bottom-widgets {
    display: grid;
    gap: 16px;
    padding-top: 8px;
    color: color-mix(in srgb, currentColor 76%, transparent);
    font-size: 0.88rem;
}

.jh-footer-bottom-slot {
    min-width: 0;
}

.jh-footer-bottom-slot--left {
    text-align: left;
}

.jh-footer-bottom-slot--center {
    text-align: center;
}

.jh-footer-bottom-slot--right {
    text-align: right;
}

@media (min-width: 760px) {
    .jh-header-inner {
        grid-template-columns: 150px 1fr 310px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .jh-overlay-menu-block {
        top: 24px;
        right: 28px;
    }

    .jh-phone,
    .jh-language {
        display: inline-flex;
        font-size: 0.78rem;
        text-decoration: none;
        white-space: nowrap;
    }

    .jh-menu-panel {
        inset: 0;
        width: 100%;
        border-right: 0;
    }

    .jh-menu-panel-inner {
        padding-top: calc(var(--jh-header) + 36px);
        padding-bottom: 64px;
    }

    .jh-primary-menu a {
        font-size: clamp(3.4rem, 7vw, 8.2rem);
    }

    .jh-primary-menu > li > a.jh-menu-effect-link {
        animation-duration: 8s;
    }

    .jh-submenu-toggle {
        right: 36px;
    }

    .jh-cover {
        padding-left: 44px;
        padding-right: 44px;
    }

    .jh-block-hero {
        padding-left: 44px;
        padding-right: 44px;
    }

    .jh-room-highlight {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
        align-items: stretch;
        margin-top: 82px;
        margin-bottom: 82px;
    }

    .jh-room-highlight__media,
    .jh-room-highlight__media img,
    .jh-room-highlight__placeholder {
        min-height: 460px;
    }

    .jh-room-highlight__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 46px;
    }

    .jh-content-with-widgets {
        grid-template-columns: minmax(170px, 0.8fr) minmax(0, 2.4fr) minmax(170px, 0.8fr);
        align-items: start;
    }

    .jh-booking-panel {
        padding: 34px;
    }

    .bottomsearch.h-search.md-search.jh-bottom-search {
        margin-top: -58px;
        margin-bottom: 52px;
    }

    .jh-bottom-search__inner {
        min-height: 108px;
        padding: 22px 28px;
    }

    .jh-booking-modal {
        align-items: center;
        padding: 28px;
    }

    .jh-booking-modal__dialog {
        width: min(100%, 940px);
        margin: 0 auto;
        border-radius: var(--jh-radius);
        padding: 34px;
    }

    .jh-booking-modal__content {
        padding: 26px;
    }

    .jh-booking-search-card--primary .jh-booking-section-heading {
        grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 0.58fr);
        align-items: end;
        column-gap: clamp(24px, 5vw, 72px);
    }

    .jh-booking-search-card--primary .jh-booking-section-heading .jh-eyebrow {
        grid-column: 1 / -1;
    }

    .jh-footer-inner {
        gap: 46px;
    }

    .jh-footer-subscribe {
        grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1.2fr);
        align-items: center;
        gap: clamp(24px, 5vw, 54px);
    }

    .jh-footer-columns {
        grid-template-columns: minmax(190px, 1fr) minmax(360px, 3.2fr) minmax(190px, 1fr);
        align-items: stretch;
        gap: clamp(2rem, 4vw, 4rem);
    }

    .jh-footer-map iframe,
    .jh-footer-map-placeholder {
        min-height: 340px;
    }

    .jh-footer-bottom-widgets {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
    }
}

@media (max-width: 920px) {
    .jh-content-with-widgets {
        grid-template-columns: 1fr;
    }

    .jh-content-widget--left {
        order: -1;
    }

    .jh-content-widget--right {
        order: 2;
    }

    .jh-footer-columns {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
        gap: 30px;
    }

    .jh-footer-map {
        grid-column: 1 / -1;
        order: 3;
    }

    .jh-footer-nav {
        grid-column: auto;
    }

    .jh-footer-menu {
        grid-template-columns: 1fr;
    }

    .jh-footer-bottom-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .jh-footer-bottom-slot,
    .jh-footer-bottom-slot--left,
    .jh-footer-bottom-slot--center,
    .jh-footer-bottom-slot--right {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .jh-footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jh-footer-nav {
        grid-column: auto;
    }

    .jh-footer-menu {
        grid-template-columns: 1fr;
    }

    .jh-footer-subscribe {
        gap: 16px;
    }

    .jh-footer-subscribe-form form,
    .jh-footer-subscribe-form .wpforms-form,
    .jh-footer-subscribe-form .wpforms-field-container {
        display: grid;
    }

    .jh-footer-subscribe-form input[type="email"],
    .jh-footer-subscribe-form input[type="text"],
    .jh-footer-subscribe-form .wpforms-field input {
        border-right: 1px solid currentColor;
        border-bottom: 0;
    }
}

@media (max-width: 700px) {
    .jh-booking-hero {
        min-height: 62svh;
        padding: 132px 18px 86px;
    }

    .jh-booking-hero h1 {
        font-size: clamp(2.6rem, 15vw, 4.2rem);
    }

    .jh-booking-flow-inner {
        width: min(calc(100% - 20px), 980px);
        margin-top: -54px;
    }

    .jh-booking-search-card,
    .jh-booking-page-content {
        padding: 18px;
    }

}

/* Torch header menu v2 */
.jh-site-header {
    --jh-torch-x: 50%;
    --jh-torch-y: 50%;
    --jh-torch-size: 11.25rem;
    --jh-torch-feather: 20.625rem;
    --jh-torch-brightness: 1.38;
    --jh-stone-wall: linear-gradient(135deg, #050607, #17110d);
    --jh-menu-min-size: 3rem;
    --jh-menu-max-size: 8rem;
    --jh-menu-gap: 0.75rem;
    --jh-menu-line-height: 1;
    z-index: 10020;
}

.jh-header-inner {
    grid-template-columns: 96px 1fr 96px;
}

.jh-header-inner > .jh-book-link {
    justify-self: start;
}

.jh-header-inner > .jh-menu-toggle {
    justify-self: end;
    justify-content: flex-end;
    color: inherit;
}

.jh-header-inner > .jh-brand {
    justify-self: center;
}

.jh-menu-panel {
    z-index: 10010;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 96px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
        var(--jh-stone-wall) center / cover no-repeat,
        #020506;
}

.jh-menu-panel[hidden] {
    display: grid;
}

.jh-menu-panel::before {
    display: none;
}

.jh-menu-panel::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.62)),
        radial-gradient(circle at center, transparent 22%, rgba(0, 0, 0, 0.56));
}

.jh-torch-reveal {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--jh-torch-x) var(--jh-torch-y), rgba(255, 226, 170, 0.22), rgba(255, 226, 170, 0) 42%),
        var(--jh-stone-wall) center / cover no-repeat;
    filter: brightness(var(--jh-torch-brightness)) contrast(1.08) saturate(1.08);
    -webkit-mask-image: radial-gradient(
        circle var(--jh-torch-feather) at var(--jh-torch-x) var(--jh-torch-y),
        #000 0 var(--jh-torch-size),
        rgba(0, 0, 0, 0.72) calc(var(--jh-torch-size) + 38px),
        rgba(0, 0, 0, 0.18) calc(var(--jh-torch-size) + 120px),
        transparent 100%
    );
    mask-image: radial-gradient(
        circle var(--jh-torch-feather) at var(--jh-torch-x) var(--jh-torch-y),
        #000 0 var(--jh-torch-size),
        rgba(0, 0, 0, 0.72) calc(var(--jh-torch-size) + 38px),
        rgba(0, 0, 0, 0.18) calc(var(--jh-torch-size) + 120px),
        transparent 100%
    );
}

.jh-menu-panel-inner {
    width: 100%;
    min-height: auto;
    align-content: center;
    padding: 0;
    z-index: 2;
}

.jh-primary-menu {
    gap: var(--jh-menu-gap);
    padding: 0;
    text-align: center;
    justify-items: center;
}

.jh-primary-menu > li {
    transform: translate3d(24px, 0, 0);
}

.jh-primary-menu > li > a.jh-menu-effect-link,
.jh-primary-menu a {
    width: auto;
    display: inline-block;
    padding: 8px 18px;
    color: #fff;
    opacity: 0.48;
    white-space: normal;
    animation: none;
    transform: none;
    font-size: clamp(var(--jh-menu-min-size), 14vw, var(--jh-menu-max-size));
    line-height: var(--jh-menu-line-height);
    text-transform: uppercase;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0);
}

.jh-primary-menu > li.is-torch-lit > a.jh-menu-effect-link,
.jh-primary-menu > li:hover > a.jh-menu-effect-link,
.jh-primary-menu > li:focus-within > a.jh-menu-effect-link,
.jh-primary-menu > li.is-open > a.jh-menu-effect-link {
    color: #fff4d2;
    opacity: 1;
    text-shadow: 0 0 32px rgba(255, 235, 167, 0.58);
}

.jh-menu-torch {
    width: 7px;
    height: 7px;
    border: 0;
    background: rgba(255, 248, 220, 0.95);
    box-shadow:
        0 0 14px rgba(255, 248, 220, 0.8),
        0 0 44px rgba(213, 162, 77, 0.32);
}

.jh-menu-torch::before {
    display: none;
}

.jh-menu-torch.is-hovering {
    width: 10px;
    height: 10px;
    background: rgba(255, 248, 220, 1);
}

@media (min-width: 760px) {
    .jh-header-inner {
        grid-template-columns: 180px 1fr 180px;
    }

    .jh-utility-inner {
        padding-left: 34px;
        padding-right: 34px;
    }
}

@media (max-width: 520px) {
    :root {
        --jh-header-total: var(--jh-header);
    }

    .jh-utility-bar {
        display: none;
    }

    .jh-header-inner {
        grid-template-columns: 1fr 1fr;
        padding: 16px 16px 22px;
    }

    .jh-brand {
        display: none;
    }

    .jh-book-link {
        min-width: 88px;
    }

    .wpforms-form.jh-wpform-inline,
    .wpforms-form.jh-wpform-inline .wpforms-field-container {
        display: grid;
    }

    .wpforms-form.jh-wpform-inline input[type="text"],
    .wpforms-form.jh-wpform-inline input[type="email"] {
        border-right: 1px solid color-mix(in srgb, currentColor 22%, transparent) !important;
        border-bottom: 0 !important;
    }

    .wpforms-form.jh-wpform-inline .jh-wpform-submit,
    .wpforms-form.jh-wpform-inline button[type="submit"],
    .wpforms-form.jh-wpform-inline input[type="submit"] {
        width: 100%;
    }

}

@media (max-width: 760px) {
    .jh-torch-reveal,
    .jh-menu-torch {
        display: none !important;
    }

    .jh-menu-panel {
        background: var(--jh-stone-wall) center / cover no-repeat, #020506;
    }

    .jh-menu-panel::after {
        display: none;
    }

    .jh-primary-menu > li > a.jh-menu-effect-link,
    .jh-primary-menu a {
        opacity: 1;
        color: #fff;
        text-shadow: none;
    }
}
