:root {
    --bg: #efefef;
    --text: #1f2230;
    --muted: #71757d;
    --line: #d8d8d8;
    --white: #ffffff;
    --orange: #ef6a00;
    --orange-dark: #d85f00;
    --glass: rgba(255, 255, 255, 0.12);
    --radius: 14px;
    --radius-sm: 9px;
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
}

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

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

.container {
    width: min(92%, 1260px);
    margin: 0 auto;
}

.ag-page {
    overflow-x: clip;
}

.section {
    border-top: 1px solid var(--line);
    padding: 3rem 0;
}

.section--narrow {
    border-top: 0;
    padding-top: 1.7rem;
}

.section-head h2,
.section-head h1 {
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw, 3rem);
    line-height: 1.15;
}

.section-head p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.section-head--light h2,
.section-head--light p {
    color: var(--white);
}

.glass {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgb(34 32 32 / 12%);
    backdrop-filter: blur(8px);
}

.glass-dark {
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 22%);
    backdrop-filter: blur(4px);
}

.btn {
    border: 0;
    border-radius: 10px;
    min-height: 42px;
    padding: 0.75rem 1.15rem;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn--small {
    min-height: 36px;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
}

.btn--orange:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn:disabled,
.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.btn--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-group {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.hero {
    min-height: 700px;
    background-color: #2a70d7;
    background-image: url('/wp-content/uploads/2026/03/Rectangle-31.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 2rem 0 1.5rem;
}

.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.top-nav {
    color: var(--white);
    border-radius: 12px;
    padding: 0.8rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-nav a {
    font-size: 1rem;
    font-weight: 600;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
}

.nav-link svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.top-nav__left,
.top-nav__right {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.brand__dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(140deg, #89d2ff, #0a68ce);
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: #fff;
}

.hero__location {
    margin-top: 26rem;
    color: #fff;
    border-radius: 9px 9px 0 0;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero__address,
.hero__phones {
    display: inline-flex;
    gap: 0.45rem;
}

.hero__address svg,
.hero__phones svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.hero__phones a {
    color: #fff;
    font-weight: 600;
}

.hero__phones a:hover {
    text-decoration: underline;
}

.booking-panel {
    background: var(--white);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow);
    padding: 0 1rem 0.85rem;
}

.booking-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    padding-top: 0.8rem;
}

.booking-tab {
    border: 0;
    background: transparent;
    font-weight: 700;
    color: #4f535a;
    padding: 0 0 0.55rem;
    cursor: pointer;
}

.booking-tab.is-active {
    color: #1d2128;
    border-bottom: 2px solid var(--orange);
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: end;
    padding-top: 0.8rem;
}

.booking-fields label {
    display: block;
}

.booking-fields span {
    color: #7a7f86;
    font-size: 0.85rem;
}

.booking-fields input,
.booking-fields select {
    width: 100%;
    margin-top: 0.3rem;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #d7d9de;
    padding: 0 0.7rem;
    background: #fff;
    color: #1f2230;
}

.booking-fields input[type="date"] {
    padding-right: 0.4rem;
}

.booking-summary,
.booking-feedback {
    grid-column: 1 / -1;
}

.booking-fields--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-summary {
    display: grid;
    gap: 0.6rem;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    background: linear-gradient(180deg, #fcfcfc, #f7f7f8);
    padding: 0.95rem 1rem;
    margin-top: 0.15rem;
}

.booking-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-summary__row span {
    color: #5d636c;
    font-size: 0.9rem;
}

.booking-summary__row strong {
    color: #1e2128;
    font-size: 1rem;
}

.booking-summary__row--total strong {
    font-size: 1.2rem;
}

.booking-summary__note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.booking-summary__note--quick {
    grid-column: 1 / -1;
}

.booking-feedback {
    min-height: 1.2rem;
    margin-top: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.booking-feedback--success {
    color: #136f2f;
}

.booking-feedback--error {
    color: #b42318;
}

[data-booking-quick-form] .booking-fields [data-book-now] {
    width: auto;
    height: 52px;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

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

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 18, 0.72);
    backdrop-filter: blur(4px);
}

.booking-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 820px);
    max-height: min(90vh, 940px);
    overflow: auto;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
    padding: 1.45rem;
}

.booking-modal__close {
    position: absolute;
    top: 0.8rem;
    right: 0.95rem;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: #62656c;
    cursor: pointer;
}

.booking-modal__header {
    max-width: 640px;
    padding-right: 2rem;
}

.booking-modal__eyebrow {
    margin: 0 0 0.45rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.booking-modal__header h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
}

.booking-modal__header p {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.booking-modal__form {
    margin-top: 1.1rem;
}

.booking-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.booking-modal__grid label,
.booking-modal__full {
    display: block;
}

.booking-modal__grid span {
    display: block;
    margin-bottom: 0.3rem;
    color: #5f6570;
    font-size: 0.9rem;
    font-weight: 700;
}

.booking-modal__grid input,
.booking-modal__grid textarea {
    width: 100%;
    min-height: 52px;
    border-radius: 10px;
    border: 1px solid #d8dbe1;
    padding: 0.8rem 0.85rem;
    background: #fff;
    color: #1f2230;
    font: inherit;
}

.booking-modal__grid input[readonly] {
    background: #f5f6f8;
    color: #4f5560;
}

.booking-modal__grid textarea {
    min-height: 112px;
    resize: vertical;
}

.booking-modal__full {
    grid-column: 1 / -1;
}

.booking-summary--modal {
    margin-top: 1rem;
}

.booking-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
}

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

.feature-banner {
    border-radius: var(--radius);
    min-height: 640px;
    padding: 4.5rem 3rem;
    background-image: url('/wp-content/uploads/2026/03/5f4fded91dca6b36b9b17ba60677d313c6ede71f.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.feature-banner h1 {
    margin: 0;
    max-width: 500px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.35rem);
}

.feature-banner p {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.86);
}

.treks {
    background:
        url('/wp-content/uploads/2026/03/476d53af774c3809039cdf927e93fc53696572a8.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.trek-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.trek-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    border-radius: 18px;
    min-height: 485px;
    padding: 1.6rem;
    overflow: hidden;
}

.trek-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 34, 0.08) 0%, rgba(10, 18, 34, 0.2) 100%);
}

.trek-card__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 340px);
    padding: 1.35rem 1.3rem;
    border-radius: 16px;
    background: rgb(38 49 66 / 18%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.trek-grid .trek-card:nth-child(1),
.trek-card--santopath {
    background-image:
        linear-gradient(180deg, rgba(7, 18, 42, 0), rgba(7, 18, 42, 0)),
        url('/wp-content/uploads/2026/03/Frame-2608764.png');
}

.trek-grid .trek-card:nth-child(2),
.trek-card--kuari-pass {
    background-image:
        linear-gradient(180deg, rgba(7, 18, 42, 0), rgba(7, 18, 42, 0)),
        url('/wp-content/uploads/2026/03/Frame-2608764-1.png');
}

.trek-grid .trek-card:nth-child(3),
.trek-card--deo-tal {
    background-image:
        linear-gradient(180deg, rgba(7, 18, 42, 0), rgba(7, 18, 42, 0)),
        url('/wp-content/uploads/2026/03/a1fe1a046acc095365d349cc99cbbc6d4fd20c65.png');
}

.trek-card h3 {
    margin: 0;
    font-size: clamp(1.9rem, 2.5vw, 2rem);
    line-height: 1.05;
}

.trek-card p {
    margin: 0.95rem 0 0;
    font-size: 0.98rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.96);
}

.trek-card ul {
    margin: 0.6rem 0 0;
    padding-left: 1.15rem;
}

.trek-card li {
    margin-top: 0.18rem;
    line-height: 1.28;
    color: rgba(255, 255, 255, 0.92);
}

.safe-guided {
    margin-top: 3rem;
    border-radius: 10px;
    color: #fff;
    padding: 1.15rem;
}

.cards {
    margin-top: 1.8rem;
    display: grid;
    gap: 1.1rem;
}

.cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 10px;
    overflow: hidden;
}

.section-head--rooms {
    align-items: flex-start;
}

.room-feature {
    margin-top: 1.8rem;
    border: 1px solid #dedede;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.room-feature__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.35rem 1.1rem 1.15rem;
}

.room-feature__copy h3 {
    margin: 0;
    font-size: 2rem;
}

.room-feature__copy p {
    margin: 0.38rem 0 0;
    color: #80848b;
}

.room-feature__rating,
.room-feature__occupancy,
.room-feature__price {
    font-size: 0.92rem;
}

.room-feature__occupancy strong {
    color: #171717;
}

.room-feature__actions {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    white-space: nowrap;
}

.room-feature__actions a:not(.btn) {
    color: #171717;
    text-decoration: none;
    font-weight: 600;
}

.room-feature__media img {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
}

.card__body {
    padding: 1.1rem;
}

.card__body h3 {
    margin: 0;
    font-size: 2rem;
}

.card__body p {
    margin: 0.38rem 0 0;
    color: #80848b;
}

.meta {
    font-size: 0.84rem;
}

.cards--amenities {
    gap: 2.2rem 1.1rem;
}

.amenity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:10px;
    min-height: 380px;
    padding: 0 0 1.2rem;
    border: 1px solid #e2e6ea;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(18, 29, 43, 0.08);
}

.amenity-card img {
    width: 100%;
    height: 288px;
    object-fit: cover;
}

.amenity-card h3 {
    margin: 1rem 1rem 0.5rem;
    font-size: 1.6rem;
    line-height: 1.15;
}

.amenity-card p {
    margin: 0 1rem;
    color: #878b92;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-line {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin: 1rem 1rem 0;
    font-weight: 500;
    color: #181818;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 8px;
    border: 1.5px solid rgba(239, 106, 0, 0.6);
    padding: 10px;
}

.amenity-card__details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 190px;
    padding: 1.1rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(58, 70, 88, 0.28), rgba(28, 38, 52, 0.5));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, visibility 0.28s ease;
}

.amenity-card.is-open .amenity-card__details {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.amenity-card__details h4 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
}

.amenity-card__details ul {
    margin: 0;
    padding-left: 1.1rem;
}

.amenity-card__details li + li {
    margin-top: 0.45rem;
}

@media (max-width: 768px) {
    .amenity-card__details {
        min-height: 210px;
    }
    .hero__address,
.hero__phones {
    text-align: center;
    gap:0rem;
}
.footer-grid{
    text-align: justify !important;
}
}

.gallery-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr) minmax(0, 1fr);
    gap: 0.85rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.gallery-column {
    display: grid;
    gap: 0.85rem;
}

.gallery-column--side {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.gallery-column--center {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.gallery-layout img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.gallery-column--side img {
    aspect-ratio: 1.42 / 1;
}

.gallery-column--center img {
    aspect-ratio: 0.92 / 1;
}

.todo-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.todo-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    border: 1px solid #dfdfdf;
    border-radius: 9px;
    background: #fff;
    padding: 0.72rem;
}

.todo-card img {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.todo-card h3 {
    margin: 0;
    font-size: 1.28rem;
}

.todo-card p {
    margin: 0.3rem 0 0;
    color: #7f838a;
    font-size: 0.84rem;
}

.todo-card > a {
    font-size: 2rem;
    color: #b3b8bf;
}

.testimonials {
    background:
        linear-gradient(105deg, rgba(20, 25, 44, 0.58), rgba(7, 8, 14, 0.2)),
        linear-gradient(130deg, #8d603e, #9f7e60, #36516f);
}

.carousel {
    position: relative;
    margin-top: 1.4rem;
}

.carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3rem) / 4);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0 3rem;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__arrow {
    position: absolute;
    top: calc(50% - 20px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #232831;
    font-size: 1.2rem;
    z-index: 2;
    cursor: pointer;
}

.carousel__arrow--prev {
    left: 0.4rem;
}

.carousel__arrow--next {
    right: 0.4rem;
}

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.carousel__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.carousel__dots button.is-active {
    background: var(--orange);
}

.testimonial-card {
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 20, 30, 0.52);
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
}

.testimonial-card .stars {
    margin: 0;
    letter-spacing: 0.22rem;
    color: #ffb03a;
}

.testimonial-card .city {
    margin: 0.8rem 0 0;
    color: #e6e6e6;
}

.testimonial-card .copy {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

.testimonial-card .author {
    margin: 0.95rem 0 0;
    font-weight: 700;
}

.carousel--compact .carousel__track {
    grid-auto-columns: calc((100% - 2rem) / 3);
}

.why-card {
    scroll-snap-align: start;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
}

.why-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.why-card p {
    margin: 0;
    position: absolute;
    inset: auto 0 0 0;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
    padding: 1rem 0.8rem 0.75rem;
    font-weight: 700;
}

.section--split {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2rem;
}

.cab-form label {
    display: block;
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.cab-form .booking-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding-top: 0;
}

.cab-form .booking-fields label {
    margin-bottom: 0;
    font-weight: 400;
}

.cab-form .booking-fields .btn {
    grid-column: span 2;
    height: 52px;
}

.cab-form input {
    width: 100%;
    margin-top: 0.36rem;
    height: 52px;
    border-radius: 10px;
    border: 1px solid #d9dce1;
    background: #fff;
    padding: 0 0.85rem;
}

.cab-form input[type="date"] {
    cursor: pointer;
}

.row-2 {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.65rem;
}

.map-card {
    border-radius: 14px;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

.main-footer {
    border-top: 1px solid var(--line);
    padding: 2.8rem 0;
}

.footer-grid {
    display: grid;
    gap: 1.6rem;
    text-align: end;
    grid-template-columns: 1fr repeat(1, 1fr);
}

.footer-brand .logo {
    margin: 0 0 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.92;
    text-transform: lowercase;
}

.footer-brand .logo span {
    color: var(--orange);
}

.socials {
    display: flex;
    gap: 0.65rem;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #152c1d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.footer-grid h3 {
    margin: 0;
    font-size: 2rem;
}

.footer-grid a {
    display: block;
    margin-top: 0.65rem;
    color: #596168;
}

@media (max-width: 1100px) {
    .top-nav {
        flex-wrap: wrap;
    }

    .booking-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-fields--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    [data-booking-quick-form] .booking-fields [data-book-now] {
        grid-column: 2 / 3;
        justify-self: stretch;
        width: 100%;
    }

    .booking-modal__grid {
        grid-template-columns: 1fr;
    }

    .cards--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-layout {
        grid-template-columns: 1fr;
    }

    .carousel__track {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }

    .carousel--compact .carousel__track {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }

    .section--split {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .room-feature__top {
        flex-direction: column;
        align-items: stretch;
    }

    .room-feature__actions {
        justify-content: space-between;
    }

    .room-feature__media img {
        height: 260px;
    }

    .hero {
        min-height: 560px;
        padding-top: 1.2rem;
    }

    .top-nav__left,
    .top-nav__right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .top-nav.is-open .top-nav__left,
    .top-nav.is-open .top-nav__right {
        display: flex;
        width: 100%;
    }

    .top-nav.is-open .top-nav__left {
        order: 4;
    }

    .top-nav.is-open .top-nav__right {
        order: 5;
        justify-content: flex-start;
    }

    .hero__location {
        margin-top: 14rem;
        font-size: 0.77rem;
        flex-direction: column;
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

    .booking-fields--compact {
        grid-template-columns: 1fr;
    }

    [data-booking-quick-form] .booking-fields [data-book-now] {
        grid-column: 1 / -1;
        justify-self: stretch;
        width: 100%;
    }

    .cab-form .booking-fields {
        grid-template-columns: 1fr;
    }

    .cab-form .booking-fields .btn {
        grid-column: auto;
    }

    .booking-modal {
        padding: 0.75rem;
    }

    .booking-modal__dialog {
        padding: 1rem;
        border-radius: 18px;
    }

    .feature-banner {
        min-height: auto;
        padding: 2rem 1.2rem;
    }

    .trek-grid,
    .cards--3,
    .todo-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trek-card {
        min-height: 430px;
        padding: 1rem;
    }

    .trek-card__panel {
        width: 100%;
    }

    .gallery-layout {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        grid-template-columns: none;
        gap: 0.85rem;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-layout::-webkit-scrollbar {
        display: none;
    }

    .gallery-column {
        display: contents;
    }

    .gallery-column--side,
    .gallery-column--center {
        grid-template-rows: none;
    }

    .gallery-layout img {
        aspect-ratio: 1.08 / 1;
        min-height: 240px;
        scroll-snap-align: start;
    }

    .todo-card {
        grid-template-columns: 1fr;
    }

    .todo-card img {
        width: 100%;
        height: 180px;
    }

    .carousel__track,
    .carousel--compact .carousel__track {
        grid-auto-columns: 100%;
        padding: 0 2rem;
    }

    .footer-brand .logo {
        font-size: 2.3rem;
    }
}
