@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
    font-display: swap;
    font-weight: 400 800;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    font-display: swap;
    font-weight: 400 800;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

:root {
    --paper: #e8e6d9;
    --paper-soft: #f3f0e4;
    --ink: #3c3029;
    --ink-deep: #2d251f;
    --tan: #b99263;
    --tan-light: #d8c59c;
    --rust: #a65d3e;
    --cream: #f4eee0;
    --line: rgba(60, 48, 41, 0.22);
    --mono: "Courier New", Courier, monospace;
    --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--paper)
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.45
}

body.nav-open {
    overflow: hidden
}

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

a {
    color: inherit
}

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

button {
    cursor: pointer
}

::selection {
    background: var(--tan);
    color: var(--ink-deep)
}

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

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    clip: auto;
    padding: 0.8rem 1rem;
    background: var(--ink-deep);
    color: var(--cream)
}

.kex-header {
    position: fixed;
    z-index: 60;
    inset: 0 auto auto 0;
    pointer-events: none
}

.circle-menu,
.book-orbit,
.side-logo,
.drawer-nav {
    pointer-events: auto
}

.circle-menu {
    position: fixed;
    z-index: 72;
    top: 28px;
    left: 28px;
    display: grid;
    gap: 7px;
    place-content: center;
    width: 86px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    background: var(--tan);
    color: var(--cream);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2)
}

.circle-menu span:not(.sr-only) {
    width: 40px;
    height: 6px;
    border-radius: 999px;
    background: currentColor
}

.book-orbit {
    position: fixed;
    z-index: 72;
    left: 28px;
    bottom: 28px;
    width: 82px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    background: var(--tan);
    color: var(--cream);
    font: 800 18px/0.95 var(--sans);
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22)
}

.side-logo {
    position: fixed;
    z-index: 3;
    left: 50px;
    top: 46%;
    display: grid;
    gap: 3px;
    text-decoration: none;
    transform: translateY(-50%)
}

.side-logo span,
.footer-logo span {
    display: grid;
    width: 34px;
    height: 42px;
    place-items: center;
    background: rgba(60, 48, 41, 0.7);
    color: var(--tan-light);
    font: 900 25px/1 var(--sans)
}

.drawer-nav {
    position: fixed;
    z-index: 68;
    inset: 0 auto 0 0;
    display: grid;
    align-content: center;
    gap: 0.3rem;
    width: min(410px, 86vw);
    padding: 7rem 2.5rem 2.5rem;
    background: rgba(45, 37, 31, 0.97);
    color: var(--tan-light);
    transform: translateX(-102%);
    transition: transform 0.35s ease
}

.drawer-nav.is-open {
    transform: translateX(0)
}

.drawer-nav a {
    text-transform: uppercase;
    text-decoration: none;
    font: 900 clamp(1.2rem, 4vw, 2.1rem)/1 var(--sans)
}

.drawer-nav a:hover {
    color: var(--cream)
}

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    /* background: var(--ink-deep) */
}

.split-panel {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    overflow: hidden;
    color: var(--cream);
    text-decoration: none
}

.split-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.04);
    transform: scale(1.02);
    transition: transform 0.7s ease, filter 0.7s ease
}

.split-panel:hover img {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.1)
}

.panel-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(45, 37, 31, 0.08), rgba(45, 37, 31, 0.62))
}

.split-panel--hostel .panel-shade {
    background: linear-gradient(90deg, rgba(45, 37, 31, 0.66), rgba(45, 37, 31, 0.28))
}

.split-panel--hotel .panel-shade {
    background: linear-gradient(90deg, rgba(45, 37, 31, 0.25), rgba(45, 37, 31, 0.52))
}

.split-panel__copy {
    position: relative;
    width: min(660px, 82%);
    text-align: center;
    transform: translateY(3.5vh)
}

.split-panel h1,
.split-panel h2 {
    margin: 0;
    color: var(--cream);
    font: 900 clamp(4.3rem, 6vw, 8.6rem)/0.78 var(--sans);
    letter-spacing: 0;
    text-transform: uppercase
}

.split-panel p {
    max-width: 390px;
    margin: 2rem auto 0;
    font: 900 clamp(1.2rem, 2vw, 1.55rem)/1 var(--mono);
    color: var(--cream)
}

.welcome {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(260px, 0.72fr);
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 7vw, 8rem) 0;
    background: var(--paper)
}

.kicker {
    margin: 0 0 1rem;
    color: var(--rust);
    font: 900 0.86rem/1 var(--mono);
    text-transform: uppercase
}

.welcome h2,
.more-bed h2,
.food-block h2,
.activities h2,
.booking-copy h2,
.kex-footer h2 {
    margin: 0;
    font: 900 clamp(2.5rem, 5vw, 5.2rem)/0.86 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0
}

.welcome__copy p {
    max-width: 570px;
    margin: 2rem 0 0;
    font-weight: 800
}

.kex-gallery {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: clamp(3rem, 5vw, 5rem);
    overflow: hidden
}

.kex-gallery img {
    width: 100%;
    height: clamp(250px, 27vw, 430px);
    object-fit: cover;
    border-radius: 6px;
    filter: saturate(0.9) contrast(1.08)
}

.icon-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    min-height: 72px;
    padding: 0 clamp(1rem, 8vw, 8rem);
    background: #765a48;
    color: var(--tan-light)
}

.icon-strip div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 72px;
    font: 900 0.76rem/1 var(--mono)
}

.icon-strip svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.more-bed {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1.1fr);
    gap: clamp(2rem, 7vw, 8rem);
    min-height: 1120px;
    padding: clamp(6rem, 10vw, 11rem) clamp(1rem, 8vw, 8rem);
    overflow: hidden;
    background: var(--ink);
    color: var(--tan-light)
}

.more-bed__copy {
    align-self: start;
    max-width: 470px;
    padding-top: 8rem
}

.pointing-hand {
    width: 230px;
    margin-bottom: 2.2rem;
    fill: none;
    stroke: var(--tan);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round
}

.more-bed__copy p,
.food-block__copy p,
.activities__heading p,
.booking-copy p {
    font-weight: 800;
    max-width: 520px
}

.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    border: 0;
    border-radius: 999px;
    margin-top: 1.1rem;
    padding: 0.75rem 1.35rem;
    background: var(--tan);
    color: var(--cream);
    text-decoration: none;
    font: 900 0.9rem/1 var(--mono)
}

.pill-link::before {
    content: "*";
    margin-right: 0.45rem
}

.pill-link--dark {
    background: var(--ink)
}

.more-bed__image {
    position: absolute;
    width: min(46vw, 680px);
    height: 510px;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.04)
}

.more-bed__image--top {
    right: -2rem;
    top: 6rem;
    border-radius: 24px 0 0 24px
}

.more-bed__image--bottom {
    left: -4rem;
    bottom: -12rem;
    border-radius: 0 28px 28px 0
}

.food-block {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.8fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: center;
    padding: clamp(6rem, 10vw, 10rem) clamp(1rem, 8vw, 8rem);
    background: var(--ink);
    color: var(--tan-light)
}

.food-block__image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 0 28px 28px 0
}

.activities {
    min-height: 1220px;
    padding: clamp(7rem, 10vw, 10rem) clamp(1rem, 8vw, 8rem);
    background: var(--paper)
}

.activities__heading {
    max-width: 760px
}

.activity-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: clamp(2rem, 22vw, 2rem)
}

.activity-row a {
    color: var(--ink);
    text-decoration: none;
    font: 900 0.82rem/1.1 var(--mono)
}

.activity-row a:hover {
    color: var(--rust)
}

.activities__button {
    margin-top: clamp(5rem, 12vw, 2rem)
}

.booking-copy {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(260px, 0.7fr);
    gap: 2rem;
    align-items: end;
    padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 8vw, 8rem);
    background: var(--paper-soft)
}

.booking-copy h2 {
    color: var(--rust)
}

.kex-footer {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(300px, 1.2fr) minmax(180px, 0.8fr);
    gap: clamp(2rem, 8vw, 8rem);
    padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 8vw, 8rem);
    background: var(--ink-deep);
    color: var(--tan-light)
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    align-self: start
}

.footer-socials a {
    display: grid;
    width: 28px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--tan);
    color: var(--cream);
    text-decoration: none;
    font-weight: 900
}

.footer-main h2 {
    max-width: 520px;
    color: var(--tan-light)
}

.footer-logo {
    display: flex;
    gap: 5px;
    margin: 2rem 0 1.4rem;
    text-decoration: none
}

.footer-logo span {
    background: var(--cream);
    color: var(--ink-deep)
}

.footer-main p,
.footer-main a {
    color: var(--tan-light);
    font: 900 0.86rem/1.5 var(--mono)
}

.footer-menu {
    display: grid;
    align-self: start;
    justify-items: end;
    gap: 0.28rem
}

.footer-menu a {
    color: var(--tan-light);
    text-decoration: none;
    text-transform: uppercase;
    font: 900 0.82rem/1 var(--sans)
}

.footer-menu a:hover {
    color: var(--cream)
}

.booking-modal {
    width: min(820px, calc(100vw - 2rem));
    border: 0;
    padding: 0;
    background: transparent
}

.booking-modal::backdrop {
    background: rgba(45, 37, 31, 0.74)
}

.booking-form {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: var(--paper-soft);
    color: var(--ink);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28)
}

.booking-form h2 {
    margin: 0;
    font: 900 clamp(2.8rem, 7vw, 5rem)/0.85 var(--sans);
    text-transform: uppercase
}

.booking-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 900
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 2px solid var(--line);
    background: var(--cream);
    padding: 0.85rem;
    color: var(--ink)
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

.form-status {
    min-height: 1.3rem;
    margin: 0;
    font-weight: 900;
    color: var(--rust)
}

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    display: grid;
    width: 2.6rem;
    aspect-ratio: 1;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    font-weight: 900
}

.reveal {
    opacity: 1;
    transform: none
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important
    }

    .js .reveal {
        opacity: 1;
        transform: none
    }
}

.site-header {
    position: sticky;
    z-index: 40;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem clamp(1rem, 4vw, 3rem);
    background: var(--paper);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    text-decoration: none;
    font: 900 1rem/1 var(--sans);
    text-transform: uppercase
}

.brand__mark {
    display: grid;
    width: 3rem;
    aspect-ratio: 1;
    place-items: center;
    background: var(--ink);
    color: var(--cream);
    font-size: 2rem
}

.site-nav,
.site-nav--inline {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    font-weight: 900
}

.site-nav a {
    text-decoration: none
}

.book-button,
.primary-action,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    border: 0;
    padding: 0.8rem 1rem;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
    font-weight: 900
}

.subpage {
    background: var(--paper)
}

.page-hero,
.room-table,
.contact-layout {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 8vw, 8rem)
}

.page-hero h1,
.contact-copy h1 {
    max-width: 900px;
    margin: 0;
    font: 900 clamp(3rem, 5vw, 7rem)/0.85 var(--sans);
    text-transform: uppercase
}

.page-hero p,
.contact-copy p,
.detail-room p {
    max-width: 700px;
    font-weight: 800
}

.detail-room {
    display: grid;
    grid-template-columns: minmax(280px, 0.6fr) minmax(260px, 0.4fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem
}

.detail-room img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover
}

.detail-room h2 {
    font: 900 clamp(2rem, 4vw, 4rem)/0.9 var(--sans);
    text-transform: uppercase
}

.map-card {
    margin-top: 2rem;
    min-height: 430px;
    background: var(--ink)
}

.map-card svg {
    width: 100%;
    height: 430px
}

.map-card path {
    fill: none;
    stroke: var(--tan);
    stroke-width: 18;
    stroke-linecap: round
}

.map-card circle {
    fill: var(--rust)
}

.map-card text {
    fill: var(--cream);
    font: 900 34px var(--sans)
}

@media (max-width:980px) {

    .split-hero,
    .welcome,
    .more-bed,
    .food-block,
    .booking-copy,
    .kex-footer,
    .detail-room {
        grid-template-columns: 1fr
    }

    .split-hero {
        min-height: auto
    }

    .split-panel {
        min-height: 62svh
    }

    .side-logo {
        left: 24px;
        top: 48%
    }

    .side-logo span {
        width: 34px;
        height: 40px;
        font-size: 24px
    }

    .kex-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .icon-strip {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 1rem
    }

    .more-bed {
        min-height: auto;
        padding-bottom: 5rem
    }

    .more-bed__copy {
        padding-top: 0
    }

    .more-bed__image {
        position: static;
        width: 100%;
        height: 380px;
        margin-top: 2rem;
        border-radius: 22px
    }

    .activity-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 6rem
    }

    .footer-menu {
        justify-items: start
    }
}

@media (max-width:640px) {
    body {
        font-size: 14px
    }
    .booking-form h2 {
    margin: 0;
    font: 900 clamp(1.8rem, 7vw, 5rem)/0.85 var(--sans);
    text-transform: uppercase
}
.page-hero h1,
.contact-copy h1 {
    max-width: 900px;
    margin: 0;
    font: 900 clamp(2rem, 5vw, 7rem)/0.85 var(--sans);
    text-transform: uppercase
}

    .circle-menu {
        top: 16px;
        left: 16px;
        width: 66px;
        gap: 5px
    }

    .circle-menu span:not(.sr-only) {
        width: 30px;
        height: 5px
    }

    .book-orbit {
        left: 16px;
        bottom: 16px;
        width: 68px;
        font-size: 15px
    }

    .book-orbit {
        inset: 16px 16px auto auto
    }

    .side-logo {
        display: none
    }

    .split-panel__copy {
        width: 88%;
        transform: none
    }

    .split-panel h1,
    .split-panel h2 {
        font-size: clamp(3.2rem, 13vw, 6.4rem)
    }

    .split-panel p {
        font-size: 1rem
    }

    .welcome {
        padding-top: 4rem
    }

    .welcome h2,
    .more-bed h2,
    .food-block h2,
    .activities h2,
    .booking-copy h2,
    .kex-footer h2 {
        font-size: clamp(2.35rem, 12vw, 4rem)
    }

    .kex-gallery {
        grid-template-columns: 1fr
    }

    .kex-gallery img {
        height: 280px
    }

    .icon-strip {
        grid-template-columns: 1fr
    }

    .icon-strip div {
        justify-content: start
    }

    .activities {
        min-height: 760px
    }

    .activity-row,
    .form-row {
        grid-template-columns: 1fr
    }

    .site-header {
        grid-template-columns: auto
    }

    .site-nav,
    .site-nav--inline {
        flex-wrap: wrap;
        justify-content: start
    }
}