:root {
    --mk-blue: #1688e5;
    --mk-blue-deep: #0b84f3;
    --mk-navy: #0d2143;
    --mk-orange: #ff7a00;
    --mk-orange-dark: #e56c00;
    --mk-bg: #ffffff;
    --mk-soft: #f5f7fa;
    --mk-soft-blue: #eef5fc;
    --mk-border: #e4eaf1;
    --mk-muted: #64748b;
    --mk-ink: #0d2143;
    --mk-shadow: 0 10px 28px rgba(13, 33, 67, .1);
    --mk-shadow-hover: 0 14px 32px rgba(13, 33, 67, .14);
    --font: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --font-display: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --font-brand: Georgia, "Times New Roman", serif;
    --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
    font-family: var(--font);
    background: var(--mk-bg);
    color: var(--mk-ink);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible {
    outline: 2px solid var(--mk-blue);
    outline-offset: 2px;
}

.mk-wrap { width: min(var(--wrap), calc(100% - 1.5rem)); margin-inline: auto; }

.mk-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid var(--mk-border);
    height: 58px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.mk-header__inner {
    display: flex;
    align-items: center;
    gap: .75rem;
    height: 58px;
}
.mk-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}
.mk-brand__logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 46px;
    max-width: min(220px, 42vw);
    object-fit: contain;
    object-position: left center;
}
.mk-brand__logo--full {
    width: auto;
    height: auto;
    max-height: 46px;
    max-width: min(220px, 42vw);
    object-fit: contain;
    object-position: left center;
}
.mk-brand__logo--mark {
    display: none;
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}
.mk-brand span { color: var(--mk-blue); }

@media (max-width: 1024px) {
    .mk-brand__logo--full {
        max-height: 44px;
        max-width: min(180px, 36vw);
    }
}

@media (max-width: 768px) {
    .mk-brand__logo--full {
        max-height: 42px;
        max-width: min(150px, 32vw);
    }
}

@media (max-width: 520px) {
    .mk-brand__logo--full { display: none; }
    .mk-brand__logo--mark { display: block; }
}

/*
 * Homepage desktop brand emphasis:
 * keep 58px header/nav, enlarge full logo and let it hang over the hero.
 * Scoped to body.mk-home only — Identity/mobile mark unchanged.
 */
body.mk-home .mk-header,
body.mk-home .mk-header__inner {
    overflow: visible;
}
body.mk-home .mk-brand {
    position: relative;
    z-index: 46;
    width: 8rem; /* layout envelope ~127px for ~84px transparent logo */
    height: 58px;
    align-self: center;
}
body.mk-home .mk-brand__logo--full {
    position: absolute;
    left: 0;
    top: 3px;
    width: auto;
    height: 84px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: left top;
}
body.mk-home .mk-nav,
body.mk-home .mk-header-actions {
    position: relative;
    z-index: 47;
}

@media (max-width: 1024px) {
    body.mk-home .mk-brand {
        width: 6.5rem;
    }
    body.mk-home .mk-brand__logo--full {
        height: 72px;
        top: 4px;
    }
}

@media (max-width: 768px) {
    /* Compact fallback — no overlapping badge on narrow layouts */
    body.mk-home .mk-brand {
        width: auto;
        height: auto;
        z-index: auto;
    }
    body.mk-home .mk-brand__logo--full {
        position: static;
        top: auto;
        height: auto;
        max-height: 42px;
        max-width: min(150px, 32vw);
        object-position: left center;
    }
}

.mk-nav {
    display: flex;
    align-items: center;
    gap: .1rem;
    flex: 1;
    justify-content: center;
    overflow: hidden;
}
.mk-nav a,
.mk-nav span {
    padding: .28rem .5rem;
    font-size: .86rem;
    font-weight: 600;
    color: var(--mk-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.mk-nav a:hover { color: var(--mk-navy); }
.mk-nav a.is-active {
    color: var(--mk-blue);
    border-bottom-color: var(--mk-blue);
}
.mk-header-actions { display: flex; align-items: center; gap: .3rem; flex-shrink: 0; }
.mk-icon-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mk-border);
    border-radius: 999px;
    background: #fff;
    color: var(--mk-navy);
    text-decoration: none;
}
.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    border: 0;
    border-radius: 10px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    padding: .55rem 1rem;
}
.mk-btn-orange {
    background: var(--mk-orange);
    color: #fff;
    padding: .48rem .95rem;
    font-size: .86rem;
}
.mk-btn-orange:hover { background: var(--mk-orange-dark); }
.mk-btn-blue {
    background: var(--mk-blue);
    color: #fff;
}
.mk-btn-blue:hover { background: var(--mk-blue-deep); }
.mk-btn-ghost {
    background: #fff;
    color: var(--mk-navy);
    border: 1px solid var(--mk-border);
    padding: .45rem .9rem;
    font-size: .86rem;
}
.mk-btn-ghost:hover {
    border-color: var(--mk-blue);
    color: var(--mk-blue);
}
.mk-btn-panel__short { display: none; }
.mk-icon-btn--muted {
    opacity: .55;
    cursor: default;
}
.mk-burger {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid var(--mk-border);
    border-radius: 8px;
    background: #fff;
    padding: .45rem;
    cursor: pointer;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.mk-burger span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--mk-navy);
}
/* Hero */
.mk-hero {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    background: #d9ebf8;
}
.mk-hero picture { position: absolute; inset: 0; }
.mk-hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 45%;
}
.mk-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, .78) 0%,
        rgba(255, 255, 255, .42) 36%,
        rgba(255, 255, 255, .08) 62%,
        rgba(255, 255, 255, 0) 100%
    );
}
.mk-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(640px, 700px);
    gap: 1.1rem;
    align-items: center;
    min-height: 355px;
    padding: 1.15rem 0 2.35rem;
}
.mk-hero__copy { max-width: 27.5rem; padding-top: .35rem; }
.mk-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2.45vw, 2.28rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.02em;
    color: var(--mk-navy);
}
.mk-hero h1 em {
    font-style: normal;
    color: var(--mk-orange);
}
.mk-hero__lead {
    margin: .55rem 0 0;
    max-width: 23.5rem;
    color: var(--mk-navy);
    font-size: .92rem;
    line-height: 1.38;
    opacity: .88;
}

/* Search — wide horizontal card */
.mk-search {
    background: #fff;
    border: 1px solid rgba(228, 234, 241, .95);
    border-radius: 12px;
    box-shadow: var(--mk-shadow);
    padding: .72rem .95rem .9rem;
    width: 100%;
    max-width: 700px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
}
.mk-search__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .3rem;
    border-bottom: 1px solid var(--mk-border);
    margin-bottom: .65rem;
    padding-bottom: .1rem;
}
.mk-search__mode {
    margin: 0 0 .25rem;
    font-size: .92rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-search__hint {
    margin: 0 0 .75rem;
    font-size: .76rem;
    line-height: 1.35;
    color: var(--mk-muted);
}
.mk-search__tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    border: 0;
    background: transparent;
    color: var(--mk-muted);
    font: inherit;
    font-size: .83rem;
    font-weight: 700;
    padding: .45rem .25rem .55rem;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.mk-search__tabs button[aria-selected="true"] {
    color: var(--mk-blue);
    border-bottom-color: var(--mk-blue);
}
.mk-search__tabs button:disabled {
    opacity: .55;
    cursor: not-allowed;
}
.mk-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr) minmax(0, .75fr);
    gap: .5rem;
    align-items: end;
}
.mk-field label,
.mk-field__label {
    display: block;
    margin-bottom: .24rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-field input,
.mk-field select {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--mk-border);
    border-radius: 10px;
    padding: .4rem .6rem;
    font: inherit;
    font-size: .88rem;
    color: var(--mk-navy);
    background: #fff;
}
.mk-search__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem;
}
.mk-search__dates input {
    min-width: 0;
    padding: .4rem .45rem;
    font-size: .82rem;
    letter-spacing: -.01em;
}
.mk-providers {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem 1rem;
    margin-top: .55rem;
    font-size: .78rem;
    color: var(--mk-muted);
}
.mk-providers label { display: inline-flex; align-items: center; gap: .3rem; }
.mk-search__actions {
    display: flex;
    justify-content: center;
    margin-top: .65rem;
}
.mk-search__cta {
    width: 220px;
    max-width: 100%;
    min-height: 42px;
    border-radius: 10px;
    font-size: .92rem;
}

/* Trust strip */
.mk-trust {
    position: relative;
    z-index: 2;
    margin-top: -1.7rem;
    margin-bottom: .15rem;
}
.mk-trust .mk-wrap { width: min(1100px, calc(100% - 2rem)); }
.mk-trust__card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    box-shadow: var(--mk-shadow);
    overflow: hidden;
}
.mk-trust__item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .85rem;
    border-right: 1px solid var(--mk-border);
    min-height: 68px;
}
.mk-trust__item:last-child { border-right: 0; }
.mk-trust__item svg { color: var(--mk-blue); flex-shrink: 0; }
.mk-trust__item strong {
    display: block;
    font-size: .84rem;
    font-weight: 800;
    color: var(--mk-navy);
    line-height: 1.2;
}
.mk-trust__item p {
    margin: .1rem 0 0;
    font-size: .72rem;
    color: var(--mk-muted);
    line-height: 1.25;
}

/* Sections */
.mk-section { padding: 1.05rem 0 .9rem; }
.mk-section--tight { padding: .85rem 0 .75rem; }
.mk-section--soft { background: var(--mk-soft); }
.mk-center-title {
    margin: 0 0 .75rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--mk-navy);
    letter-spacing: -.015em;
}
.mk-panel h2,
.mk-offer-panel h2 {
    margin: 0 0 .55rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mk-navy);
}

/* Destinations */
.mk-dest-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .6rem;
}
.mk-dest-card {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(13, 33, 67, .06);
    min-height: 178px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}
.mk-dest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13, 33, 67, .1);
}
.mk-dest-card:focus-visible {
    outline: 2px solid var(--mk-blue);
    outline-offset: 2px;
}
.mk-dest-card--slot {
    opacity: .55;
    pointer-events: none;
}
.mk-dest-card--slot:hover {
    transform: none;
    box-shadow: 0 6px 18px rgba(13, 33, 67, .06);
}
.mk-dest-card__visual {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #d7e6f5;
}
.mk-dest-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
}
.mk-dest-card__visual--placeholder {
    background: linear-gradient(155deg, #b9d7f0 0%, #dceaf8 42%, #eef5fc 72%, #f7fbff 100%);
    color: var(--mk-blue);
}
.mk-dest-card__body {
    padding: .5rem .6rem .55rem;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    flex: 1;
    background: #fff;
}
.mk-dest-card__body--empty {
    min-height: 2.2rem;
}
.mk-dest-card__body strong {
    font-size: .84rem;
    font-weight: 800;
    color: var(--mk-navy);
}
.mk-dest-card__body span,
.mk-dest-card__meta {
    font-size: .72rem;
    color: var(--mk-muted);
}
.mk-dest-empty {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 1.1rem 1rem;
    border: 1px dashed var(--mk-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}
.mk-dest-empty__title {
    margin: 0 0 .35rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-dest-empty__text {
    margin: 0;
    font-size: .82rem;
    color: var(--mk-muted);
    line-height: 1.4;
}

/* Themes + offers */
.mk-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: .8rem;
    align-items: stretch;
}
.mk-panel,
.mk-offer-panel {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    padding: .75rem .8rem .8rem;
    min-height: 0;
    box-shadow: 0 6px 18px rgba(13, 33, 67, .05);
}
.mk-offer-panel {
    display: flex;
    flex-direction: column;
}
.mk-panel h2,
.mk-offer-panel h2 {
    margin: 0 0 .55rem;
    font-size: .98rem;
    font-weight: 800;
    color: var(--mk-navy);
}
.mk-panel__empty {
    margin: 0;
    font-size: .82rem;
    color: var(--mk-muted);
    line-height: 1.4;
}
.mk-theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: .5rem;
}
.mk-theme-grid[data-count="1"],
.mk-theme-grid[data-count="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 280px;
}
.mk-theme-grid[data-count="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mk-theme-grid[data-count="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
}
.mk-theme-grid[data-count="5"] { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.mk-theme-grid[data-count="6"] { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.mk-theme {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 84px;
    padding: .55rem .4rem;
    border: 1px solid var(--mk-border);
    border-radius: 10px;
    background: #fff;
    text-align: center;
    font-size: .74rem;
    font-weight: 700;
    color: var(--mk-navy);
    box-shadow: 0 2px 8px rgba(13, 33, 67, .04);
    overflow: hidden;
}
.mk-theme--photo {
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    padding: 0;
    text-align: left;
}
.mk-theme--info {
    cursor: default;
    pointer-events: none;
}
.mk-theme__visual {
    height: 112px;
    overflow: hidden;
    background: #d7e6f5;
}
.mk-theme__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
}
.mk-theme__body {
    padding: .4rem .5rem .45rem;
    background: #fff;
}
.mk-theme__body strong {
    display: block;
    font-size: .76rem;
    font-weight: 800;
    color: var(--mk-navy);
    line-height: 1.25;
}
.mk-theme__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--mk-soft-blue);
    color: var(--mk-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mk-deal {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 118px;
    border: 1px solid var(--mk-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(13, 33, 67, .05);
}
.mk-offer-panel > .mk-deal {
    flex: 1;
}
.mk-deal__visual {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #b9d7f0 0%, #dceaf8 45%, #eef5fc 100%);
    color: var(--mk-blue);
}
.mk-deal__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mk-deal__visual--placeholder {
    background: linear-gradient(155deg, #b9d7f0 0%, #dceaf8 45%, #eef5fc 100%);
}
.mk-deal__body {
    padding: .85rem .9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .2rem;
}
.mk-deal__title {
    margin: 0;
    font-size: .88rem;
    font-weight: 800;
    color: var(--mk-navy);
}
.mk-deal__text {
    margin: 0;
    font-size: .78rem;
    color: var(--mk-muted);
    line-height: 1.35;
}
.mk-deal__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .5rem;
    margin-top: .35rem;
    font-size: .78rem;
    color: var(--mk-muted);
}
.mk-deal__meta strong {
    color: var(--mk-navy);
    font-weight: 800;
}
.mk-deal__cta {
    display: inline-flex;
    align-items: center;
    margin-top: .45rem;
    width: fit-content;
    padding: .35rem .7rem;
    border-radius: 8px;
    background: var(--mk-orange);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
}
.mk-deal__cta:hover { filter: brightness(.96); }
.mk-deal--placeholder {
    background: linear-gradient(160deg, #f4f9fd 0%, #ffffff 58%, #eef5fc 100%);
    border-color: #d7e6f5;
    box-shadow: inset 0 0 0 1px rgba(22, 136, 229, .04);
}
.mk-deal--placeholder .mk-deal__visual {
    min-height: 140px;
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(155deg, #9ec8ea 0%, #cfe4f7 42%, #e8f3fc 100%);
    color: var(--mk-blue);
}
.mk-deal--placeholder .mk-deal__visual svg {
    width: 34px;
    height: 34px;
    opacity: .92;
}
.mk-deal--placeholder .mk-deal__body {
    max-width: 22rem;
    gap: .35rem;
    padding: 1rem 1.05rem;
}
.mk-deal--placeholder .mk-deal__title {
    font-size: .92rem;
    line-height: 1.3;
}
.mk-deal--placeholder .mk-deal__text {
    font-size: .8rem;
    line-height: 1.4;
}

/* Featured hotels (ACTIVE catalog) */
.mk-featured-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}
.mk-featured-card {
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(13, 33, 67, .05);
}
.mk-featured-card__visual {
    display: block;
    height: 140px;
    background: linear-gradient(155deg, #b9d7f0 0%, #dceaf8 45%, #eef5fc 100%);
    color: var(--mk-blue);
}
.mk-featured-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mk-featured-card__visual--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mk-featured-card__body {
    padding: .7rem .8rem .85rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.mk-featured-card__body strong {
    font-size: .88rem;
    font-weight: 800;
    color: var(--mk-navy);
    line-height: 1.25;
}
.mk-featured-card__body strong a {
    color: inherit;
    text-decoration: none;
}
.mk-featured-card__body strong a:hover {
    text-decoration: underline;
}
.mk-featured-card__body span {
    font-size: .78rem;
    color: var(--mk-muted);
}
.mk-featured-empty {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 1.1rem 1rem;
    border: 1px dashed var(--mk-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}
.mk-featured-empty__title {
    margin: 0 0 .35rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-featured-empty__text {
    margin: 0;
    font-size: .82rem;
    color: var(--mk-muted);
    line-height: 1.4;
}
.mk-featured-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin: .85rem 0 0;
}
.mk-panel__note {
    margin: -.15rem 0 .7rem;
    font-size: .8rem;
    color: var(--mk-muted);
    line-height: 1.35;
}

/* Why */
.mk-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .55rem;
    padding: .55rem;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}
.mk-why {
    text-align: center;
    padding: .55rem .45rem .5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
}
.mk-why svg { color: var(--mk-blue); margin: 0 auto .28rem; }
.mk-why h3 {
    margin: 0 0 .2rem;
    font-size: .84rem;
    font-weight: 800;
    color: var(--mk-navy);
}
.mk-why p {
    margin: 0;
    font-size: .74rem;
    color: var(--mk-muted);
    line-height: 1.32;
}

/* Newsletter */
.mk-news-strip {
    background: var(--mk-soft);
    padding: .65rem 0 .75rem;
    border-top: 1px solid var(--mk-border);
}
.mk-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    padding: .55rem .9rem;
    box-shadow: 0 4px 14px rgba(13, 33, 67, .05);
}
.mk-news__copy {
    display: flex;
    align-items: center;
    gap: .55rem;
}
.mk-news__copy svg { color: var(--mk-blue); flex-shrink: 0; }
.mk-news__copy strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: var(--mk-navy);
}
.mk-news__copy p {
    margin: .08rem 0 0;
    font-size: .76rem;
    color: var(--mk-muted);
}
.mk-news form {
    display: flex;
    gap: .4rem;
    flex-shrink: 0;
}
.mk-news input {
    min-width: 210px;
    min-height: 38px;
    border: 1px solid var(--mk-border);
    border-radius: 10px;
    padding: .4rem .65rem;
    font: inherit;
}
.mk-news button:disabled,
.mk-news input:disabled { opacity: .7; cursor: not-allowed; }

/* Footer */
.mk-footer {
    background: var(--mk-navy);
    color: rgba(255, 255, 255, .88);
    padding: 1.25rem 0 .75rem;
    font-family: var(--font);
}
.mk-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    max-width: 760px;
}
.mk-footer h2,
.mk-footer h3 {
    margin: 0 0 .4rem;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
}
.mk-footer p,
.mk-footer li {
    margin: 0;
    font-size: .78rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, .72);
}
.mk-footer ul { list-style: none; margin: 0; padding: 0; }
.mk-footer li + li { margin-top: .22rem; }
.mk-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.mk-footer a:hover { color: #fff; }
.mk-footer__copy {
    margin-top: .85rem;
    padding-top: .65rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .74rem;
    color: rgba(255, 255, 255, .55);
}

@media (max-width: 1100px) {
    .mk-hero__grid { grid-template-columns: 1fr minmax(520px, 1fr); }
    .mk-search { max-width: none; }
    .mk-dest-rail { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .mk-nav a, .mk-nav span { padding: .3rem .35rem; font-size: .8rem; }
    .mk-hero { min-height: 0; }
    .mk-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 1.1rem 0 2.2rem;
    }
    .mk-search {
        margin: 0;
        max-width: 700px;
        min-height: 0;
    }
    .mk-search__row { grid-template-columns: 1fr 1fr; }
    .mk-field--dest { grid-column: 1 / -1; }
    .mk-split { grid-template-columns: 1fr; }
    .mk-why-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-featured-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mk-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mk-burger { display: inline-block; }
    .mk-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 58px;
        background: #fff;
        border-bottom: 1px solid var(--mk-border);
        flex-direction: column;
        align-items: stretch;
        padding: .5rem 1rem 1rem;
        z-index: 50;
    }
    .mk-header { position: relative; }
    .mk-burger[aria-expanded="true"] ~ .mk-nav { display: flex; }
    .mk-hero__media { object-position: 70% 48%; }
    .mk-hero__shade {
        background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,.12) 48%, rgba(255,255,255,0) 75%);
    }
    .mk-trust { margin-top: -1.2rem; }
    .mk-trust__card { grid-template-columns: 1fr 1fr; }
    .mk-trust__item {
        border-right: 0;
        border-bottom: 1px solid var(--mk-border);
        min-height: 64px;
    }
    .mk-trust__item:nth-child(odd) { border-right: 1px solid var(--mk-border); }
    .mk-trust__item:nth-last-child(-n+2) { border-bottom: 0; }
    .mk-dest-rail {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: .65rem;
        padding-bottom: .25rem;
        -webkit-overflow-scrolling: touch;
    }
    .mk-dest-card {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }
    .mk-featured-rail {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: .65rem;
        padding-bottom: .25rem;
        -webkit-overflow-scrolling: touch;
    }
    .mk-featured-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
    }
    .mk-theme-grid,
    .mk-theme-grid[data-count] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }
    .mk-news { flex-direction: column; align-items: stretch; }
    .mk-news form { width: 100%; }
    .mk-news input { min-width: 0; flex: 1; width: 100%; }
    .mk-search__cta { width: 100%; }
    .mk-btn-panel__full { display: none; }
    .mk-btn-panel__short { display: inline; }
}
@media (min-width: 769px) {
    .mk-burger { display: none !important; }
}

@media (max-width: 390px) {
    .mk-wrap { width: calc(100% - 1.25rem); }
    .mk-brand { line-height: 0; }
    .mk-hero h1 { font-size: 1.55rem; }
    .mk-search__row { grid-template-columns: 1fr; }
    .mk-search__tabs button { font-size: .72rem; gap: .2rem; padding: .4rem .1rem .55rem; }
    .mk-search__tabs svg { display: none; }
    .mk-why-grid { grid-template-columns: 1fr 1fr; gap: .4rem; }
    .mk-footer__grid { grid-template-columns: 1fr; }
}
/* â€”â€”â€” Identity auth pages â€”â€”â€” */
.mk-auth-page {
    background: var(--mk-soft);
    min-height: 100vh;
}
.mk-auth-main {
    min-height: calc(100vh - 58px);
    display: flex;
}
.mk-header--auth {
    background: #fff;
    border-bottom: 1px solid var(--mk-border);
    height: auto;
}
.mk-header__inner--auth {
    min-height: 58px;
    height: 58px;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: .75rem;
    align-items: center;
}
.mk-header--auth .mk-brand {
    line-height: 0;
}
.mk-header--auth .mk-brand__logo--full {
    width: auto;
    height: auto;
    max-height: 46px;
    max-width: min(200px, 40vw);
    object-fit: contain;
    object-position: left center;
}
.mk-header--auth .mk-brand__logo--mark {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}
.mk-nav--auth {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: visible;
    flex-shrink: 0;
}
.mk-nav--auth a {
    color: var(--mk-muted);
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
}
.mk-nav--auth a:hover { color: var(--mk-blue); }

.mk-auth {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    width: 100%;
    min-height: calc(100vh - 58px);
    flex: 1;
}
.mk-auth__visual {
    position: relative;
    overflow: hidden;
    background: #d7e8f7;
    min-height: 100%;
}
.mk-auth__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 42%;
}
.mk-auth__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(13, 33, 67, .42) 0%,
        rgba(13, 33, 67, .18) 45%,
        rgba(22, 136, 229, .22) 100%
    );
}
.mk-auth__visual-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 2.5rem 2.25rem 3rem;
    color: #fff;
    max-width: 28rem;
}
.mk-auth__welcome {
    margin: 0 0 .55rem;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 12px rgba(13, 33, 67, .25);
}
.mk-auth__tagline {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
}

.mk-auth__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 55%);
}
.mk-auth__card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 18px;
    box-shadow: var(--mk-shadow);
    padding: 1.75rem 1.65rem 1.5rem;
}
.mk-auth__card h1 {
    margin: 0 0 .4rem;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 2vw, 1.85rem);
    color: var(--mk-navy);
    line-height: 1.2;
}
.mk-auth__lead {
    margin: 0 0 1.25rem;
    color: var(--mk-muted);
    font-size: .98rem;
    line-height: 1.45;
}
.mk-auth__form {
    display: flex;
    flex-direction: column;
    gap: .95rem;
}
.mk-auth__form .mk-field label,
.mk-auth__form label {
    display: block;
    margin-bottom: .35rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-auth__form input[type="email"],
.mk-auth__form input[type="password"],
.mk-auth__form input[type="text"],
.mk-auth__form select {
    width: 100%;
    min-height: 46px;
    padding: .7rem .85rem;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    background: #fff;
    color: var(--mk-navy);
    font: inherit;
    font-size: .98rem;
    box-sizing: border-box;
}
.mk-auth__form input:focus,
.mk-auth__form select:focus {
    outline: 2px solid var(--mk-blue);
    outline-offset: 1px;
    border-color: var(--mk-blue);
}
.mk-password {
    position: relative;
}
.mk-password input {
    padding-right: 2.75rem;
}
.mk-password__toggle {
    position: absolute;
    right: .35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--mk-muted);
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mk-password__toggle:hover,
.mk-password__toggle:focus-visible {
    color: var(--mk-navy);
    background: var(--mk-soft);
}
.mk-auth__hint {
    margin: .35rem 0 0;
    font-size: .78rem;
    color: var(--mk-muted);
}
.mk-auth__form ul {
    margin: .35rem 0 0;
    padding-left: 1.1rem;
    color: #b42318;
    font-size: .85rem;
}
.mk-auth__alert {
    margin: 0 0 1rem;
    padding: .75rem .9rem;
    border-radius: 12px;
    border: 1px solid #f3c4c0;
    background: #fff5f4;
    color: #9b1c1c;
    font-size: .92rem;
    font-weight: 600;
}
.mk-auth__flash {
    margin: 0 0 1rem;
    padding: .75rem .9rem;
    border-radius: 12px;
    border: 1px solid #b7e4c7;
    background: #f1faf4;
    color: #1b4332;
    font-size: .92rem;
    font-weight: 600;
}
.mk-auth__cta {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    margin-top: .25rem;
    font-size: 1rem;
    border-radius: 12px;
}
.mk-auth__switch {
    margin: 1.15rem 0 0;
    text-align: center;
    color: var(--mk-muted);
    font-size: .92rem;
}
.mk-auth__switch a {
    color: var(--mk-blue);
    font-weight: 700;
    text-decoration: none;
}
.mk-auth__switch a:hover { text-decoration: underline; }
.mk-auth__home {
    margin: .85rem 0 0;
    text-align: center;
}
.mk-auth__home a {
    color: var(--mk-muted);
    font-size: .88rem;
    text-decoration: none;
    font-weight: 600;
}
.mk-auth__home a:hover { color: var(--mk-navy); }

@media (max-width: 1023px) {
    .mk-auth {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .mk-auth__visual {
        min-height: 180px;
        max-height: 220px;
    }
    .mk-auth__visual-copy {
        padding: 1.25rem 1.25rem 1.35rem;
        max-width: none;
        justify-content: flex-end;
    }
    .mk-auth__welcome { font-size: 1.35rem; }
    .mk-auth__tagline { font-size: .92rem; }
    .mk-auth__tagline br { display: none; }
    .mk-auth__panel {
        align-items: flex-start;
        padding: 1.25rem 1rem 2rem;
    }
    .mk-auth__card {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 8px 24px rgba(13, 33, 67, .08);
    }
}

@media (max-width: 390px) {
    .mk-auth__visual {
        min-height: 140px;
        max-height: 160px;
    }
    .mk-auth__card {
        padding: 1.35rem 1.1rem 1.25rem;
        border-radius: 14px;
    }
    .mk-auth__form input[type="email"],
    .mk-auth__form input[type="password"],
    .mk-auth__form input[type="text"],
    .mk-auth__form select {
        min-height: 48px;
    }
}

/* Journey truth  error + auth CTAs */
.mk-error-page {
    background: var(--mk-soft);
}
.mk-error {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
    text-align: center;
}
.mk-error__code {
    margin: 0 0 .35rem;
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--mk-blue);
    line-height: 1;
}
.mk-error h1 {
    margin: 0 0 .65rem;
    font-family: var(--display);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    color: var(--mk-navy);
}
.mk-error__lead {
    margin: 0 auto 1.25rem;
    max-width: 42ch;
    color: var(--mk-muted);
    line-height: 1.45;
}
.mk-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: center;
}
@media (max-width: 768px) {
    .mk-btn-auth .mk-btn-panel__full { display: none; }
    .mk-btn-auth .mk-btn-panel__short { display: inline; }
    .mk-header-actions .mk-btn-auth { padding: .42rem .7rem; font-size: .8rem; }
}

/* ?? Public hotel PDP (PUBLIC-HOTEL-PDP-02) ?? */
.mk-page-hotel main { background: linear-gradient(180deg, #f7fbff 0%, #fff 18rem); }
.mk-hotel { padding: 1.25rem 0 3.5rem; }
.mk-hotel__inner { width: min(1120px, calc(100% - 1.5rem)); }
.mk-hotel-breadcrumb { margin: 0 0 1rem; }
.mk-hotel-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .15rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .86rem;
    color: var(--mk-muted);
}
.mk-hotel-breadcrumb__item { display: inline-flex; align-items: center; gap: .25rem; }
.mk-hotel-breadcrumb a {
    color: var(--mk-blue);
    text-decoration: none;
    font-weight: 600;
}
.mk-hotel-breadcrumb a:hover { text-decoration: underline; }
.mk-hotel-breadcrumb__sep { color: #94a3b8; padding: 0 .1rem; }
.mk-hotel-hero {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.mk-hotel-hero__loc {
    margin: 0 0 .35rem;
    color: var(--mk-muted);
    font-size: .92rem;
    font-weight: 600;
}
.mk-hotel-hero__title {
    margin: 0 0 .65rem;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    line-height: 1.15;
    color: var(--mk-navy);
}
.mk-hotel-hero__meta { display: flex; flex-wrap: wrap; gap: .4rem; }
.mk-hotel-pill {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: .2rem .65rem;
    border-radius: 999px;
    background: var(--mk-soft-blue);
    color: var(--mk-navy);
    font-size: .82rem;
    font-weight: 700;
}
.mk-hotel-pill--soft {
    background: #fff;
    border: 1px solid var(--mk-border);
    font-weight: 600;
    color: var(--mk-muted);
}
.mk-hotel-gallery {
    display: grid;
    gap: .55rem;
    border-radius: 18px;
    overflow: hidden;
    background: var(--mk-soft);
    box-shadow: var(--mk-shadow);
}
.mk-hotel-gallery__primary {
    margin: 0;
    aspect-ratio: 16 / 10;
    background: #dbe7f5;
}
.mk-hotel-gallery__img,
.mk-hotel-gallery__primary img,
.mk-hotel-gallery__thumb img,
.mk-hotel-room__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mk-hotel-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
    padding: 0 .55rem .55rem;
}
.mk-hotel-gallery__thumb {
    margin: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #cfdceb;
    aspect-ratio: 4 / 3;
    min-height: 44px;
}
.mk-hotel-gallery__thumb:focus-visible {
    outline: 2px solid var(--mk-blue);
    outline-offset: 2px;
}
.mk-hotel-gallery__thumb.is-active { border-color: var(--mk-blue); }
.mk-hotel-gallery__more {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
    font-size: .8rem;
    color: var(--mk-muted);
}
.mk-hotel-gallery--count-1 .mk-hotel-gallery__primary { aspect-ratio: 21 / 10; }
.mk-hotel-gallery--empty {
    min-height: 0;
    box-shadow: var(--mk-shadow);
}
.mk-hotel-gallery__placeholder {
    display: grid;
    place-items: center;
    gap: 0.55rem;
    aspect-ratio: 21 / 10;
    padding: 1.25rem 1rem;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.12), transparent 55%),
        linear-gradient(145deg, #e8f0fa 0%, #f4f7fb 48%, #dde8f4 100%);
    color: var(--mk-navy);
    text-align: center;
}
.mk-hotel-gallery__placeholder-mark {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--mk-navy);
}
.mk-hotel-gallery__placeholder-icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--mk-blue);
    border: 1px solid rgba(37, 99, 235, 0.18);
}
.mk-hotel-gallery__placeholder-text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--mk-muted);
}
.mk-hotel-layout {
    display: grid;
    gap: 1.35rem;
}
.mk-hotel-section,
.mk-hotel-panel {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(13, 33, 67, .05);
    padding: 1.15rem 1.2rem 1.2rem;
}
.mk-hotel-section + .mk-hotel-section { margin-top: 1rem; }
.mk-hotel-section__title,
.mk-hotel-panel__title {
    margin: 0 0 .85rem;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.2rem;
    color: var(--mk-navy);
}
.mk-hotel-editorial__short {
    margin: 0 0 .75rem;
    color: var(--mk-ink);
    font-size: 1.05rem;
    line-height: 1.5;
}
.mk-hotel-editorial__long {
    margin: 0;
    max-width: 42rem;
    color: var(--mk-ink);
    line-height: 1.65;
}
.mk-hotel-section__lead,
.mk-hotel-panel__hint,
.mk-hotel-empty,
.mk-hotel-compare__lead {
    margin: 0 0 .85rem;
    color: var(--mk-muted);
    font-size: .92rem;
    line-height: 1.45;
}
.mk-hotel-panel__hint { margin-top: .75rem; margin-bottom: 0; font-size: .84rem; }
.mk-hotel-facts { margin: 0; display: grid; gap: .7rem; }
.mk-hotel-facts__row {
    display: grid;
    grid-template-columns: minmax(6.5rem, 8.5rem) 1fr;
    gap: .65rem;
    align-items: start;
}
.mk-hotel-facts__row dt {
    margin: 0;
    font-size: .8rem;
    font-weight: 700;
    color: var(--mk-muted);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.mk-hotel-facts__row dd { margin: 0; color: var(--mk-ink); line-height: 1.4; }
.mk-hotel-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
    gap: .55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mk-hotel-amenities__item {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .65rem .75rem;
    border-radius: 12px;
    background: var(--mk-soft);
    border: 1px solid transparent;
}
.mk-hotel-amenities__label { font-weight: 600; color: var(--mk-navy); font-size: .92rem; }
.mk-hotel-amenities__meta { font-size: .78rem; color: var(--mk-muted); }
.mk-hotel-rooms {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mk-hotel-room {
    display: grid;
    gap: .85rem;
    padding: .85rem;
    border: 1px solid var(--mk-border);
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdff, #fff);
}
.mk-hotel-room__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--mk-soft);
}
.mk-hotel-room__name {
    margin: 0 0 .45rem;
    font-size: 1.05rem;
    color: var(--mk-navy);
}
.mk-hotel-room__facts,
.mk-hotel-room__features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .55rem;
}
.mk-hotel-room__facts li,
.mk-hotel-room__features li {
    font-size: .86rem;
    color: var(--mk-muted);
}
.mk-hotel-room__features li {
    padding: .2rem .55rem;
    border-radius: 999px;
    background: var(--mk-soft-blue);
    color: var(--mk-navy);
    font-weight: 600;
}
.mk-hotel-location__address {
    margin: 0 0 .35rem;
    font-weight: 600;
    color: var(--mk-navy);
}
.mk-hotel-location__context { margin: 0 0 .75rem; color: var(--mk-muted); }
.mk-hotel-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--mk-blue);
    font-weight: 700;
    text-decoration: none;
}
.mk-hotel-link:hover { text-decoration: underline; }
.mk-hotel-aside { display: grid; gap: 1rem; align-content: start; }
.mk-hotel-stay { display: grid; gap: .75rem; }
.mk-hotel-stay__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}
.mk-hotel-stay__row label {
    display: block;
    margin-bottom: .3rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-hotel-stay__row input {
    width: 100%;
    min-height: 44px;
    padding: .55rem .7rem;
    border: 1px solid var(--mk-border);
    border-radius: 12px;
    font: inherit;
    color: var(--mk-ink);
    background: #fff;
}
.mk-hotel-stay__row input:focus {
    outline: 2px solid var(--mk-blue);
    outline-offset: 1px;
    border-color: var(--mk-blue);
}
.mk-hotel-stay__submit {
    width: 100%;
    min-height: 46px;
    justify-content: center;
}
.mk-hotel-panel--compare {
    background: linear-gradient(180deg, #f3f9ff, #fff);
    border-color: #d7e8f8;
}
.mk-hotel-panel--affiliate {
    background: linear-gradient(180deg, #fffdf8, #fff);
    border-color: #efe4cf;
}
.mk-hotel-affiliate__cta {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    text-decoration: none;
}
.mk-hotel-affiliate__disclosure {
    margin-top: .75rem;
}
@media (min-width: 900px) {
    .mk-hotel-hero {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
        align-items: end;
    }
    .mk-hotel-layout {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, .78fr);
        align-items: start;
    }
    .mk-hotel-aside { position: sticky; top: 5.5rem; }
    .mk-hotel-room {
        grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
        align-items: start;
    }
}
@media (max-width: 768px) {
    .mk-hotel { padding-top: .85rem; }
    .mk-hotel-facts__row { grid-template-columns: 1fr; gap: .2rem; }
    .mk-hotel-gallery__thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mk-hotel-gallery--count-1 .mk-hotel-gallery__primary,
    .mk-hotel-gallery__primary,
    .mk-hotel-gallery__placeholder { aspect-ratio: 4 / 3; }
}
@media (max-width: 420px) {
    .mk-hotel-stay__grid { grid-template-columns: 1fr; }
    .mk-hotel-hero__title { font-size: 1.4rem; }
}

/* PUBLIC-HOTEL-LISTING-02 */
.mk-listing-top {
    padding: 1.25rem 0 1rem;
    background: linear-gradient(180deg, var(--mk-soft-blue), #fff 72%);
    border-bottom: 1px solid var(--mk-border);
}
.mk-listing-top__title {
    margin: 0 0 .35rem;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    color: var(--mk-navy);
}
.mk-listing-top__hint {
    margin: 0 0 1rem;
    color: var(--mk-muted);
    font-size: .92rem;
}
.mk-listing-search {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 16px;
    box-shadow: var(--mk-shadow);
    padding: .85rem;
}
.mk-listing-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, .9fr)) repeat(2, minmax(70px, .55fr)) auto;
    gap: .65rem;
    align-items: end;
}
.mk-listing-search .mk-field label,
.mk-listing-search .mk-field__label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--mk-muted);
    margin-bottom: .25rem;
}
.mk-listing-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--mk-border);
    border-radius: 10px;
    padding: .55rem .7rem;
    color: var(--mk-navy);
    background: #fff;
}
.mk-listing-search__actions .mk-btn {
    min-height: 44px;
    white-space: nowrap;
}
.mk-listing-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 0 2.5rem;
    align-items: start;
}
.mk-listing-filters__panel {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 16px;
    padding: .85rem 1rem 1rem;
    box-shadow: 0 8px 20px rgba(13, 33, 67, .06);
}
.mk-listing-filters__panel > summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--mk-navy);
    list-style: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.mk-listing-filters__panel > summary::-webkit-details-marker { display: none; }
.mk-listing-fieldset {
    border: 0;
    margin: 1rem 0 0;
    padding: 0;
    max-height: 220px;
    overflow: auto;
}
.mk-listing-fieldset legend {
    font-size: .82rem;
    font-weight: 700;
    color: var(--mk-navy);
    margin-bottom: .45rem;
}
.mk-listing-check {
    display: flex;
    gap: .55rem;
    align-items: center;
    min-height: 40px;
    font-size: .92rem;
    color: var(--mk-ink);
}
.mk-listing-check input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--mk-blue);
}
.mk-listing-filters__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}
.mk-listing-count {
    margin: 0 0 .85rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-listing-results {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.mk-listing-card {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 33, 67, .07);
}
.mk-listing-card__media {
    display: block;
    background: var(--mk-soft);
    min-height: 180px;
}
.mk-listing-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    display: block;
}
.mk-listing-card__placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 180px;
    color: var(--mk-muted);
    background: linear-gradient(135deg, #eef5fc, #f8fafc);
}
.mk-listing-card__body {
    padding: 1rem 1.1rem 1.05rem;
    display: grid;
    gap: .45rem;
    align-content: start;
}
.mk-listing-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-family: Fraunces, Georgia, serif;
}
.mk-listing-card__title a {
    color: var(--mk-navy);
    text-decoration: none;
}
.mk-listing-card__title a:hover { color: var(--mk-blue); }
.mk-listing-card__meta {
    margin: 0;
    color: var(--mk-muted);
    font-size: .92rem;
}
.mk-listing-card__amenities {
    list-style: none;
    margin: .2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.mk-listing-card__amenities li {
    font-size: .8rem;
    color: var(--mk-navy);
    background: var(--mk-soft-blue);
    border-radius: 999px;
    padding: .28rem .65rem;
}
.mk-listing-card__cta { margin: .35rem 0 0; }
.mk-listing-empty {
    border: 1px dashed var(--mk-border);
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    background: #fff;
}
.mk-listing-empty__title {
    margin: 0 0 .4rem;
    font-size: 1.15rem;
    color: var(--mk-navy);
    font-weight: 700;
}
.mk-listing-empty__text {
    margin: 0 0 1rem;
    color: var(--mk-muted);
}
.mk-listing-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.mk-listing-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-top: 1.25rem;
}
.mk-listing-pagination__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 .9rem;
    border-radius: 10px;
    border: 1px solid var(--mk-border);
    color: var(--mk-blue);
    text-decoration: none;
    font-weight: 600;
}
.mk-listing-pagination__status { color: var(--mk-muted); }
.mk-featured-more {
    margin: 1rem 0 0;
    text-align: center;
}
@media (max-width: 1024px) {
    .mk-listing-search__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mk-listing-search__actions { grid-column: 1 / -1; }
    .mk-listing-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .mk-listing-card {
        grid-template-columns: 1fr;
    }
    .mk-listing-filters__panel { padding: .7rem .85rem; }
}
@media (max-width: 420px) {
    .mk-listing-search__row { grid-template-columns: 1fr; }
    .mk-listing-top__title { font-size: 1.35rem; }
}

/* PUBLIC-DESTINATION-LANDING-02 */
.mk-dest-landing__crumb {
    padding: .85rem 0 0;
}
.mk-dest-landing__crumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .55rem;
    color: var(--mk-muted);
    font-size: .9rem;
}
.mk-dest-landing__crumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: .55rem;
    color: #c0cad6;
}
.mk-dest-landing__crumb-list a {
    color: var(--mk-blue);
    text-decoration: none;
}
.mk-dest-landing__crumb-list a:hover { text-decoration: underline; }
.mk-dest-landing-hero {
    padding: 1rem 0 1.4rem;
    background: linear-gradient(180deg, var(--mk-soft-blue), #fff 78%);
    border-bottom: 1px solid var(--mk-border);
}
.mk-dest-landing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 1.25rem;
    align-items: stretch;
}
.mk-dest-landing-hero__copy h1 {
    margin: 0 0 .35rem;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    color: var(--mk-navy);
}
.mk-dest-landing-hero__context {
    margin: 0 0 .45rem;
    color: var(--mk-muted);
}
.mk-dest-landing-hero__count {
    margin: 0 0 .55rem;
    font-weight: 700;
    color: var(--mk-navy);
}
.mk-dest-landing-hero__hint {
    margin: 0 0 1rem;
    color: var(--mk-muted);
    font-size: .9rem;
}
.mk-dest-landing-search {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 16px;
    box-shadow: var(--mk-shadow);
    padding: .85rem;
}
.mk-dest-landing-search__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) repeat(2, minmax(70px, .55fr)) auto;
    gap: .65rem;
    align-items: end;
}
.mk-dest-landing-search .mk-field label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--mk-muted);
    margin-bottom: .25rem;
}
.mk-dest-landing-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--mk-border);
    border-radius: 10px;
    padding: .55rem .7rem;
    color: var(--mk-navy);
    background: #fff;
}
.mk-dest-landing-search__actions .mk-btn { min-height: 44px; white-space: nowrap; }
.mk-dest-landing-hero__visual {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--mk-border);
    background: var(--mk-soft);
    min-height: 220px;
}
.mk-dest-landing-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 10;
}
.mk-dest-landing-hero__fallback {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 220px;
    color: var(--mk-muted);
    background: linear-gradient(135deg, #eef5fc, #f8fafc);
}
.mk-dest-landing-section__title {
    margin: 0;
    font-size: 1.2rem;
    color: var(--mk-navy);
    font-family: Fraunces, Georgia, serif;
}
.mk-dest-landing-subs {
    padding: 1.25rem 0 .35rem;
}
.mk-dest-landing-subs__list {
    list-style: none;
    margin: .75rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.mk-dest-landing-subs__chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 .9rem;
    border-radius: 999px;
    border: 1px solid var(--mk-border);
    background: #fff;
    color: var(--mk-navy);
    text-decoration: none;
    font-weight: 600;
}
.mk-dest-landing-subs__chip:hover {
    border-color: var(--mk-blue);
    color: var(--mk-blue);
}
.mk-dest-landing-guide {
    padding: 0.25rem 0 1.4rem;
}
.mk-dest-landing-guide__summary {
    margin: 0.35rem 0 0.75rem;
    color: var(--mk-muted, #4a5568);
    font-size: 1.05rem;
    line-height: 1.5;
}
.mk-dest-landing-guide__body {
    margin: 0;
    max-width: 42rem;
    color: var(--mk-navy, #0b1f33);
    line-height: 1.65;
    white-space: normal;
}
.mk-dest-landing-hotels {
    padding: 1.1rem 0 2.5rem;
}
.mk-dest-landing-hotels__head {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .9rem;
}
.mk-dest-landing-hotels__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.mk-dest-landing-hotels__more {
    margin: 1.1rem 0 0;
    text-align: center;
}
@media (max-width: 1024px) {
    .mk-dest-landing-hero__grid { grid-template-columns: 1fr; }
    .mk-dest-landing-search__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mk-dest-landing-search__actions { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
    .mk-dest-landing-search__row { grid-template-columns: 1fr; }
}
