@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
    --accent: #ff385c;
    --accent-strong: #d91f46;
    --ink: #17212b;
    --muted: #647181;
    --line: #e7ebef;
    --bg: #f6f7f9;
    --panel: #ffffff;
    --teal: #087e8b;
    --gold: #c7903d;
    --admin-bg: #f3f5f8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, textarea, select, button { font: inherit; }
textarea { min-height: 110px; resize: vertical; }

.site-header {
    height: 68px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}
.brand {
    font-weight: 800;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    max-height: 100%;
}
.brand-hotel-name {
    color: #1f2b39;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.site-header.is-hotel .brand-hotel-name {
    color: var(--hotel-brand, #1f2b39);
}
.topbar-desktop {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}
.brand-title-img {
    height: auto;
    max-height: 46px;
    width: auto;
    display: block;
}
.topbar-menu {
    display: inline-flex;
    align-items: center;
    gap: 36px;
}
.topbar-menu a {
    color: #4d5a6a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
}
.topbar-menu a:hover {
    color: var(--accent);
}
.topbar-right {
    display: inline-flex;
    align-items: center;
}
.topbar-cta {
    min-height: 40px;
    border-radius: 9px;
    padding: 0 14px;
    font-size: 14px;
}
.topbar-mobile {
    display: none;
    margin-left: auto;
    position: relative;
}
.topbar-mobile-trigger {
    width: 42px;
    height: 42px;
    border: 1px solid #d7dee6;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer;
    list-style: none;
}
.topbar-mobile-trigger::-webkit-details-marker { display: none; }
.topbar-mobile-trigger span {
    width: 17px;
    height: 2px;
    background: #253447;
    border-radius: 2px;
}
.topbar-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    padding: 12px;
    border: 1px solid #d7dee6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(20,31,45,.16);
    display: grid;
    gap: 8px;
}
.topbar-mobile-panel a {
    min-height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #425162;
    font-size: 14px;
    font-weight: 700;
}
.topbar-mobile-panel a:not(.btn):hover {
    background: #f4f7fa;
    color: #a7222d;
}
.hotel-mini-footer {
    border-top: 1px solid #e6ebf1;
    background: #fff;
}
.hotel-mini-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 56px;
    padding: 8px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #4c5b6b;
    font-size: 13px;
    font-weight: 650;
}
.hotel-mini-footer-inner p {
    color: var(--hotel-brand, #4c5b6b);
}
.hotel-mini-footer-inner p {
    margin: 0;
}
.hotel-mini-footer-inner p span {
    opacity: .5;
    margin: 0 6px;
}
.hotel-mini-footer-inner a {
    color: var(--hotel-brand, #4c5b6b);
    font-weight: 800;
}
.hotel-mini-footer-inner a:hover {
    text-decoration: underline;
}
.hotel-mini-logo {
    height: 18px;
    width: auto;
    display: block;
}
.btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    min-height: 42px;
    padding: 0 16px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
}
.btn.primary { border-color: var(--accent); background: var(--accent); color: #fff; }
.btn.is-loading {
    gap: 9px;
    cursor: wait;
    opacity: .88;
}
.btn.is-loading::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: button-spin .7s linear infinite;
}
.btn.small { min-height: 34px; padding: 0 10px; }
.btn.danger { border-color: #ffd5dd; color: #b21435; background: #fff5f7; }
.btn.danger:hover { border-color: #ff9caf; background: #ffe8ee; }
@keyframes button-spin {
    to { transform: rotate(360deg); }
}
.eyebrow { color: var(--teal); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.landing-hero {
    min-height: 500px;
    padding: 54px 5vw 96px;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(360px, .72fr);
    gap: 42px;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, #ffffff 0%, #ffffff 48%, rgba(238,246,247,.88) 48%, rgba(238,246,247,.96) 100%);
}
.landing-hero::before {
    content: "";
    position: absolute;
    inset: auto 4vw 28px auto;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(0,87,217,.16);
    border-radius: 50%;
}
.landing-copy {
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.landing-brand-lockup {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.landing-brand-logo {
    width: min(340px, 82vw);
    height: auto;
}
.landing-brand-text {
    font-size: clamp(30px, 6vw, 50px);
    line-height: 1;
    font-weight: 900;
    color: #ff385c;
}
.landing-visual {
    min-height: 360px;
    position: relative;
    z-index: 1;
}
.landing-visual img {
    width: 100%;
    height: 360px;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 26px 60px rgba(20,31,45,.18);
}
.landing-floating-panel,
.landing-mini-stat {
    position: absolute;
    border: 1px solid rgba(221,231,240,.92);
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 38px rgba(20,31,45,.14);
}
.landing-floating-panel {
    left: -28px;
    bottom: 26px;
    max-width: 260px;
    display: grid;
    gap: 5px;
    padding: 16px;
}
.landing-floating-panel span {
    color: #0057d9;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.landing-floating-panel strong {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.1;
}
.landing-floating-panel small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}
.landing-mini-stat {
    top: 24px;
    right: -18px;
    display: grid;
    gap: 2px;
    padding: 13px 16px;
}
.landing-mini-stat strong {
    color: #ff385c;
    font-size: 24px;
    line-height: 1;
}
.landing-mini-stat span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.landing-hero h1, .hotel-hero h1, .results-header h1, .admin-title h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.02;
}
.landing-hero p, .hotel-hero p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.hotel-grid {
    margin: -46px 0 0;
    padding: 0 5vw 74px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 330px));
    justify-content: start;
    gap: 22px;
}
.hotel-card {
    display: block;
    background: linear-gradient(165deg, #1d2028 0%, #151821 100%);
    border: 1px solid rgba(120, 130, 146, .28);
    border-radius: 18px;
    overflow: hidden;
    color: #eef2f7;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(8, 10, 14, .34);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hotel-card:hover {
    border-color: rgba(167, 34, 45, .45);
    box-shadow: 0 24px 54px rgba(8, 10, 14, .44);
    transform: translateY(-2px);
}
.hotel-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.hotel-card-body {
    min-width: 0;
    display: grid;
    gap: 9px;
    padding: 18px 16px 16px;
}
.hotel-card-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
}
.hotel-card-title-row strong {
    display: -webkit-box;
    overflow: hidden;
    color: #f7d7cf;
    font-size: 24px;
    line-height: 1.08;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hotel-rating {
    padding: 5px 8px;
    border-radius: 7px;
    background: rgba(167, 34, 45, .20);
    color: #ffd8de;
    border: 1px solid rgba(247, 173, 186, .26);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.hotel-location {
    color: #c9d2dd;
    font-size: 14px;
    font-weight: 650;
}
.hotel-location::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 6px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg) translateY(-1px);
}
.hotel-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 8px 0 12px;
}
.hotel-chip-row span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(227, 182, 110, .16);
    color: #f2d7a9;
    border: 1px solid rgba(227, 182, 110, .28);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.hotel-card-body small {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 6px;
    background: #a7222d;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.hotel-card:hover .hotel-card-body small {
    background: #8f1d27;
}

.mb-landing {
    padding: 30px 5vw 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(255,90,95,.14), transparent 38%),
        radial-gradient(circle at 90% 20%, rgba(0,166,153,.10), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.mb-hero-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
    gap: 40px;
    align-items: center;
}
.mb-hero-copy h1 {
    margin: 0 0 12px;
    font-family: 'Plus Jakarta Sans', 'Sora', sans-serif;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}
.mb-hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    max-width: 660px;
    line-height: 1.6;
}
.mb-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #ffe9e7;
    border: 1px solid #ffcfca;
    color: #92001b;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 11px;
    font-weight: 800;
}
.mb-brand-block {
    margin-bottom: 20px;
}
.mb-brand-logo {
    width: min(320px, 78vw);
    height: auto;
}
.mb-brand-text {
    font-family: 'Plus Jakarta Sans', 'Sora', sans-serif;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1;
    font-weight: 800;
    color: #ff385c;
}
.mb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.mb-pill-row {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mb-pill-row span {
    border: 1px solid #e5ccd0;
    background: #fff;
    color: #6e2d37;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 700;
}
.mb-hero-visual {
    position: relative;
    min-height: 420px;
}
.mb-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(24, 32, 46, .2);
}
.mb-floating-box,
.mb-stat-badge {
    position: absolute;
    border: 1px solid rgba(226, 229, 233, .85);
    background: rgba(255,255,255,.94);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(24, 32, 46, .14);
}
.mb-floating-box {
    top: -16px;
    right: -14px;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    max-width: 250px;
}
.mb-floating-box small {
    color: #b52330;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}
.mb-floating-box strong {
    color: #17212b;
    font-size: 18px;
    line-height: 1.1;
}
.mb-floating-box span {
    color: #647181;
    font-size: 12px;
}
.mb-stat-badge {
    left: -14px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    padding: 12px 14px;
}
.mb-stat-badge strong {
    color: #b52330;
    font-size: 24px;
    line-height: 1;
}
.mb-stat-badge span {
    color: #586062;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 800;
}
.mb-feature-grid {
    max-width: 1440px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}
.mb-feature {
    grid-column: span 4;
    border-radius: 26px;
    border: 1px solid #e7e8e9;
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(24, 32, 46, .08);
}
.mb-feature h3 {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    line-height: 1.1;
}
.mb-feature p {
    margin: 0;
    color: #5a636d;
    line-height: 1.6;
}
.mb-feature-main {
    grid-column: span 8;
    background: linear-gradient(140deg, #fff, #fff4f3);
}
.mb-feature-dark {
    grid-column: span 4;
    background: #252a33;
    border-color: #252a33;
}
.mb-feature-dark h3,
.mb-feature-dark p {
    color: #f5f7fb;
}
.mb-feature-soft {
    grid-column: span 8;
    background: linear-gradient(140deg, #ffffff, #ebfffb);
}
.mb-cta {
    max-width: 1240px;
    margin: 56px auto 0;
    border-radius: 40px;
    padding: clamp(28px, 6vw, 52px);
    background: linear-gradient(135deg, #ff5a5f 0%, #b52330 100%);
    color: #fff;
    box-shadow: 0 24px 64px rgba(181, 35, 48, .35);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.mb-cta::before {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: 0;
    height: 62%;
    pointer-events: none;
    opacity: .46;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 420'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.56' stroke-width='2'%3E%3Crect x='10' y='222' width='86' height='188'/%3E%3Crect x='106' y='248' width='58' height='162'/%3E%3Crect x='172' y='168' width='108' height='242'/%3E%3Crect x='292' y='258' width='64' height='152'/%3E%3Crect x='368' y='138' width='122' height='272'/%3E%3Crect x='502' y='210' width='74' height='200'/%3E%3Crect x='588' y='178' width='96' height='232'/%3E%3Crect x='696' y='270' width='62' height='140'/%3E%3Crect x='770' y='122' width='132' height='288'/%3E%3Crect x='914' y='206' width='88' height='204'/%3E%3Crect x='1014' y='238' width='66' height='172'/%3E%3Crect x='1092' y='154' width='118' height='256'/%3E%3Crect x='1224' y='198' width='84' height='212'/%3E%3Crect x='1320' y='246' width='64' height='164'/%3E%3Crect x='1394' y='128' width='154' height='282'/%3E%3C/g%3E%3Cg stroke='%23ffffff' stroke-opacity='0.34' stroke-width='1.35'%3E%3Cpath d='M4 410H1594'/%3E%3Cpath d='M30 254h46M30 276h46M30 298h46M30 320h46M30 342h46M30 364h46'/%3E%3Cpath d='M123 270h24M123 292h24M123 314h24M123 336h24'/%3E%3Cpath d='M192 194h30M192 216h30M192 238h30M192 260h30M192 282h30M192 304h30M192 326h30M192 348h30'/%3E%3Cpath d='M388 164h36M388 186h36M388 208h36M388 230h36M388 252h36M388 274h36M388 296h36M388 318h36M388 340h36'/%3E%3Cpath d='M518 238h40M518 260h40M518 282h40M518 304h40M518 326h40M518 348h40'/%3E%3Cpath d='M612 204h44M612 226h44M612 248h44M612 270h44M612 292h44M612 314h44M612 336h44'/%3E%3Cpath d='M784 150h54M784 172h54M784 194h54M784 216h54M784 238h54M784 260h54M784 282h54M784 304h54M784 326h54M784 348h54'/%3E%3Cpath d='M932 230h44M932 252h44M932 274h44M932 296h44M932 318h44M932 340h44'/%3E%3Cpath d='M1118 180h48M1118 202h48M1118 224h48M1118 246h48M1118 268h48M1118 290h48M1118 312h48M1118 334h48'/%3E%3Cpath d='M1418 154h54M1418 176h54M1418 198h54M1418 220h54M1418 242h54M1418 264h54M1418 286h54M1418 308h54M1418 330h54M1418 352h54'/%3E%3Cpath d='M436 138v-24M842 122v-28M1482 128v-22'/%3E%3C/g%3E%3C/svg%3E");
}
.mb-cta::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, .12), transparent 72%);
}
.mb-cta > * {
    position: relative;
    z-index: 1;
}
.mb-cta h2 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4.5vw, 50px);
    line-height: 1.08;
    letter-spacing: -.02em;
}
.mb-cta p {
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 18px;
}
.mb-cta .btn {
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.12);
    color: #fff;
}
.mb-cta .btn.primary {
    background: #fff;
    color: #b52330;
    border-color: #fff;
}
.mb-cta-actions-row {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.mb-cta-main-actions,
.mb-cta-side-actions {
    margin-top: 0;
}
.mb-cta-side-actions {
    justify-content: flex-end;
}
.mb-btn-wa {
    border-color: #25d366;
    background: #25d366;
    color: #ffffff;
}
.mb-btn-wa:hover {
    border-color: #1ebe5d;
    background: #1ebe5d;
}
.mb-btn-price {
    border-color: rgba(255,255,255,.52);
    background: rgba(255,255,255,.2);
    color: #ffffff;
}
.mb-btn-price:hover {
    background: rgba(255,255,255,.28);
}
.mb-pricing {
    max-width: 1100px;
    margin: 48px auto 52px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid #e5e9ee;
    background:
        radial-gradient(circle at 88% 10%, rgba(255,90,95,.12), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(0,166,153,.08), transparent 26%),
        #ffffff;
    box-shadow: 0 16px 38px rgba(24, 32, 46, .08);
}
.mb-pricing-head {
    max-width: 760px;
    margin-bottom: 20px;
}
.mb-pricing-head h2 {
    margin: 6px 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #17212b;
}
.mb-pricing-head p {
    margin: 0;
    color: #5a636d;
    font-size: 17px;
    line-height: 1.6;
}
.mb-pricing-grid {
    display: grid;
    grid-template-columns: minmax(260px, .86fr) minmax(320px, 1.14fr);
    gap: 16px;
}
.mb-price-card {
    border: 1px solid #e5e9ee;
    border-radius: 22px;
    padding: 22px;
    background: #f9fbff;
}
.mb-price-card h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 25px;
    color: #17212b;
}
.mb-price-card.is-main {
    background: linear-gradient(145deg, #fff0f1, #ffffff);
    border-color: #ffd2d6;
}
.mb-price-badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: #ffe7e9;
    border: 1px solid #ffc5ca;
    color: #92001b;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 800;
}
.mb-price-value {
    margin: 0 0 8px;
    color: #b52330;
    font-size: 21px;
    font-weight: 800;
}
.mb-price-copy {
    margin: 0 0 18px;
    color: #5a636d;
    line-height: 1.5;
}
.mb-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.mb-service-list li {
    position: relative;
    padding-left: 24px;
    color: #2c3946;
    line-height: 1.45;
    font-size: 15px;
}
.mb-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5a5f, #b52330);
    box-shadow: 0 0 0 3px rgba(255,90,95,.18);
}
.mb-hotels {
    max-width: 1100px;
    margin: 54px auto 0;
}
.mb-hotels .hotel-grid {
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(260px, 330px));
    justify-content: center;
}
.mb-footer {
    margin: 44px calc(50% - 50vw) 0;
    border-top: 1px solid #dbe1e7;
    background: #fff;
}
.mb-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 5vw;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .7fr) minmax(0, .7fr);
    gap: 40px;
    align-items: center;
}
.mb-footer-col {
    display: flex;
    align-items: center;
}
.mb-footer-col a {
    color: #536071;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.mb-footer-col a:hover {
    color: #b52330;
}
.mb-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mb-footer-brand-row p {
    margin: 0;
    color: #536071;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.mb-footer-logo-wrap {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 18px;
    border: 1px solid #f0d4d4;
    background: #fff;
    box-shadow: 0 8px 20px rgba(181, 35, 48, .1);
}
.mb-footer-logo {
    width: min(88px, 22vw);
    height: auto;
    display: block;
}
.mb-footer-line {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    color: #536071;
    font-size: 14px;
    font-weight: 600;
}
.mb-footer-line strong {
    color: #17212b;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 13px;
}
.mb-footer-line span {
    opacity: .45;
}
.mb-privacy-overlay,
.mb-terms-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 24, .44);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 80;
}
.mb-privacy-overlay.is-open,
.mb-terms-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mb-privacy-panel,
.mb-terms-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(760px, 100vw);
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e1e7ee;
    box-shadow: -16px 0 38px rgba(20, 31, 45, .18);
    transform: translateX(102%);
    opacity: 0;
    visibility: hidden;
    transition: transform .36s cubic-bezier(.2,.8,.2,1), opacity .24s ease, visibility .24s ease;
    z-index: 90;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}
.mb-privacy-panel.is-open,
.mb-terms-panel.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.mb-privacy-header,
.mb-terms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #e1e7ee;
    background: linear-gradient(120deg, #fff, #f8fbff);
}
.mb-privacy-header h2,
.mb-terms-header h2 {
    margin: 0;
    color: #17212b;
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.1;
}
.mb-privacy-close,
.mb-terms-close {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #d9e1ea;
    border-radius: 8px;
    background: #fff;
    color: #4a5867;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.mb-privacy-close:hover,
.mb-terms-close:hover {
    border-color: #a7222d;
    color: #a7222d;
}
.mb-privacy-body,
.mb-terms-body {
    overflow: auto;
    padding: 20px;
    color: #2a3642;
    line-height: 1.62;
}
.mb-privacy-body p,
.mb-terms-body p {
    margin: 0 0 12px;
}
.mb-privacy-body h3,
.mb-terms-body h3 {
    margin: 20px 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #182635;
}
.mb-privacy-body ul,
.mb-terms-body ul {
    margin: 0 0 12px;
    padding-left: 18px;
}
.mb-privacy-body li,
.mb-terms-body li {
    margin-bottom: 6px;
}
body.privacy-open,
body.terms-open {
    overflow: hidden;
}
.mb-social-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    display: grid;
    gap: 10px;
}
.mb-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px rgba(24, 32, 46, .2);
    color: #fff;
    transition: transform .16s ease, box-shadow .16s ease;
}
.mb-float-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.mb-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(24, 32, 46, .24);
}
.mb-float-btn.is-wa {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.mb-float-btn.is-ig {
    background: linear-gradient(135deg, #f97316, #db2777 45%, #7c3aed 100%);
}
.mb-hotels-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}
.mb-hotels-head h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 3.4vw, 38px);
}
.mb-hotels-head span {
    color: #5a636d;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .mb-feature,
    .mb-feature-main,
    .mb-feature-dark,
    .mb-feature-soft {
        grid-column: span 6;
    }
}

.hotel-hero {
    min-height: calc(100vh - 68px);
    padding: 56px 5vw 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: end;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.hero-classic {
    background-image: linear-gradient(90deg, rgba(8,22,35,.78), rgba(8,22,35,.18)), var(--hero-image);
}
.hero-split {
    min-height: calc(92vh - 68px);
    grid-template-columns: minmax(0, .78fr) minmax(340px, .52fr);
    grid-template-areas:
        "copy image"
        "search search";
    align-items: center;
    row-gap: 28px;
    background:
        linear-gradient(115deg, rgba(255,255,255,.90) 0%, rgba(246,249,249,.96) 37%, rgba(238,246,247,.88) 56%, transparent 56%),
        linear-gradient(90deg, #f8fbfa 0%, #f8fbfa 56%, #edf4f5 56%, #edf4f5 100%);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.hero-split::before {
    content: "";
    position: absolute;
    inset: 54px auto auto 5vw;
    width: min(48vw, 780px);
    height: calc(100% - 128px);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(199,144,61,.13), transparent 34%),
        linear-gradient(180deg, rgba(8,126,139,.10), rgba(255,255,255,.18));
    clip-path: polygon(0 0, 88% 0, 100% 82%, 12% 100%);
    z-index: 0;
}
.hero-split::after {
    content: "";
    position: absolute;
    inset: 44px 5vw 44px auto;
    width: min(41vw, 600px);
    border-radius: 8px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 80px rgba(20, 31, 45, .20);
}
.hero-split .hero-copy,
.hero-split .search-box {
    position: relative;
    z-index: 1;
}
.hero-split .hero-copy {
    grid-area: copy;
    color: var(--ink);
    max-width: 660px;
    padding: 28px 0;
}
.hero-split .hero-copy::before {
    content: "";
    display: block;
    width: 128px;
    height: 2px;
    margin-bottom: 34px;
    background: var(--gold);
}
.hero-split .hero-copy::after {
    content: "";
    position: absolute;
    left: -34px;
    bottom: -42px;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(8,126,139,.20);
    border-radius: 50%;
    z-index: -1;
}
.hero-split .hero-copy .eyebrow,
.hero-split p {
    color: var(--muted);
}
.hero-split .search-box {
    grid-area: search;
    justify-self: center;
    width: min(1080px, 100%);
    margin: 0;
    grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
    align-items: end;
    border: 0;
    box-shadow: 0 18px 54px rgba(20, 31, 45, .14);
}
.hero-minimal {
    min-height: calc(86vh - 68px);
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(9,22,32,.55), rgba(9,22,32,.72)), var(--hero-image);
}
.hero-minimal .hero-copy {
    max-width: 860px;
}
.hero-minimal .search-box {
    width: min(980px, 100%);
    grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
    align-items: end;
    margin-top: 14px;
}
.hero-copy { max-width: 740px; }
.hero-copy .eyebrow, .hotel-hero p { color: #e8f7f8; }
.hero-split .hero-copy .eyebrow,
.hero-split .hero-copy p {
    color: var(--muted);
}
.search-box, .booking-box, .auth-card, .panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(20, 31, 45, .08);
}
.search-box { padding: 18px; display: grid; gap: 12px; color: var(--ink); }
.search-box label, .form-grid label, .auth-card label { display: grid; gap: 6px; font-weight: 700; color: var(--ink); }
.field-label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}
.field-label small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}
.field-label input,
.field-label textarea,
.field-label select {
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
}
.field-label input.is-auto {
    background: #f6fafb;
    color: var(--muted);
    cursor: default;
}
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    min-height: 42px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
}
.file-upload {
    position: relative;
    min-height: 92px;
    padding: 16px 18px 16px 58px;
    display: grid !important;
    align-content: center;
    gap: 4px;
    border: 1.5px dashed #cbd6e2;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,252,.96));
    color: var(--ink);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.file-upload::before {
    content: "+";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    transform: translateY(-50%);
}
.file-upload::after {
    content: "JPG, PNG o WEBP hasta 6MB";
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.file-upload:hover {
    border-color: rgba(255,56,92,.70);
    background: #fff;
    box-shadow: 0 12px 30px rgba(20,31,45,.07);
}
.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-upload .file-name {
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
}
.file-upload.compact {
    min-height: 64px;
    padding: 12px 12px 12px 48px;
}
.file-upload.compact::before {
    left: 12px;
    width: 24px;
    height: 24px;
    font-size: 18px;
}
.file-upload.compact::after {
    content: "Subir o cambiar";
}
.current-cover {
    width: min(420px, 100%);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}
.content-band, .results-header, .room-list { padding: 34px 5vw; }
.content-band { background: #fff; }
.content-band h2 { margin-top: 0; }
.policy-band {
    padding: 42px 5vw 56px;
    background: #f7fafb;
}
.policy-band > div {
    max-width: 860px;
    padding: 24px;
    border: 1px solid rgba(8,126,139,.15);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(8,126,139,.08), rgba(255,56,92,.05)),
        #fff;
}
.policy-band h2 {
    margin: 6px 0 12px;
}
.policy-band p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}
.room-showcase {
    padding: 54px 5vw 64px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}
.section-heading {
    max-width: 720px;
    margin-bottom: 24px;
}
.section-heading h2 {
    margin: 6px 0 10px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}
.section-heading p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}
.room-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.stay-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(20,31,45,.07);
}
.stay-card-image {
    display: block;
    position: relative;
    overflow: hidden;
    background: #eef2f5;
}
.stay-card-image.is-gallery-enabled {
    cursor: zoom-in;
}
.stay-card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .22s ease;
}
.stay-card-gallery-trigger {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 0;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(13, 24, 38, .78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.26);
}
.stay-card-gallery-trigger:hover {
    background: rgba(13, 24, 38, .9);
}
.stay-card:hover .stay-card-image img {
    transform: scale(1.035);
}
.room-lightbox-panel {
    width: min(960px, 100%);
    max-height: min(92vh, 920px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
}
.room-lightbox-header {
    padding: 18px 24px;
}
.room-lightbox-body {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 18px 18px;
}
.room-lightbox-stage {
    position: relative;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 90, 120, .22), transparent 42%),
        radial-gradient(circle at 78% 82%, rgba(8, 126, 139, .26), transparent 46%),
        linear-gradient(155deg, #101a29 0%, #0d1622 46%, #162131 100%);
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
}
.room-lightbox-stage::before,
.room-lightbox-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.room-lightbox-stage::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 28%, transparent 72%, rgba(0, 0, 0, .16));
}
.room-lightbox-stage::after {
    width: 68%;
    height: 40%;
    left: 16%;
    bottom: -8%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 68%);
    filter: blur(10px);
}
.room-lightbox-stage img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(68vh, 620px);
    object-fit: initial;
}
.room-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.88);
    color: #17212b;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.24);
}
.room-lightbox-nav:hover {
    background: #fff;
}
.room-lightbox-nav.is-prev { left: 10px; }
.room-lightbox-nav.is-next { right: 10px; }
.room-lightbox-footer {
    display: grid;
    gap: 10px;
}
.room-lightbox-counter {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}
.room-lightbox-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
    gap: 8px;
}
.room-lightbox-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    background: #eef2f5;
    cursor: pointer;
}
.room-lightbox-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.room-lightbox-thumb.is-active {
    border-color: var(--accent);
}
.stay-card-body {
    display: grid;
    gap: 16px;
    padding: 18px;
}
.stay-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.16;
}
.stay-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.stay-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.stay-card-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef6f7;
    color: #075863;
    font-size: 13px;
    font-weight: 750;
}
.stay-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.stay-card-footer div {
    display: grid;
    gap: 2px;
}
.stay-card-footer small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.stay-card-footer strong {
    font-size: 22px;
    line-height: 1;
}
.services-band {
    padding: 54px 5vw 60px;
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 58px;
    grid-auto-flow: dense;
    gap: 14px;
}
.service-card {
    width: 100%;
    display: grid;
    place-items: center;
    min-height: 0;
    height: 100%;
    grid-row: span 2;
    padding: 20px;
    border: 1px solid rgba(231,235,239,.78);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(20,31,45,.06);
}
.service-card-wide {
    grid-column: span 2;
}
.service-card-tall {
    grid-row: span 3;
}
.service-card-wide.service-card-tall {
    grid-row: span 3;
}
.services-grid-masonry {
    display: block;
    columns: 4 260px;
    column-gap: 14px;
}
.services-grid-masonry .service-card {
    display: grid;
    min-height: 128px;
    height: auto;
    margin: 0 0 14px;
    break-inside: avoid;
    page-break-inside: avoid;
}
.services-grid-masonry .service-card-tall {
    min-height: 174px;
}
.services-grid-masonry .service-card-wide {
    grid-column: auto;
}
.services-grid-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 46px;
    gap: 10px;
}
.services-grid-bento .service-card {
    place-items: end start;
    padding: 16px;
}
.services-grid-bento .service-card:nth-child(8n+1) {
    grid-column: span 2;
    grid-row: span 3;
}
.services-grid-bento .service-card:nth-child(8n+2) {
    grid-column: span 2;
    grid-row: span 2;
}
.services-grid-bento .service-card:nth-child(8n+3),
.services-grid-bento .service-card:nth-child(8n+6) {
    grid-column: span 2;
    grid-row: span 2;
}
.services-grid-bento .service-card:nth-child(8n+4) {
    grid-column: span 2;
    grid-row: span 2;
}
.services-grid-bento .service-card:nth-child(8n+5) {
    grid-column: span 2;
    grid-row: span 2;
}
.services-grid-bento .service-card:nth-child(8n+7),
.services-grid-bento .service-card:nth-child(8n+8) {
    grid-column: span 3;
    grid-row: span 2;
}
.services-grid-bento .service-card-wide {
    grid-column: span 4;
}
.services-grid-bento .service-card-tall {
    grid-row: span 3;
}
.services-grid-bento .service-card strong {
    text-align: left;
    font-size: clamp(15px, 1.25vw, 19px);
}
.service-card-1 {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.58), transparent 23%),
        linear-gradient(135deg, rgba(8,126,139,.18), rgba(255,56,92,.10)),
        #fbfcfd;
}
.service-card-2 {
    background:
        linear-gradient(145deg, rgba(199,144,61,.24), rgba(8,126,139,.10)),
        #fffdf8;
}
.service-card-3 {
    background:
        radial-gradient(circle at 15% 18%, rgba(255,255,255,.56), transparent 20%),
        linear-gradient(135deg, rgba(255,56,92,.18), rgba(23,33,43,.08)),
        #fffafb;
}
.service-card-4 {
    background:
        linear-gradient(145deg, rgba(23,33,43,.12), rgba(8,126,139,.18)),
        #f8fbfc;
}
.service-card-5 {
    background:
        linear-gradient(120deg, rgba(255,56,92,.16), rgba(199,144,61,.20)),
        #fffaf8;
}
.service-card-6 {
    background:
        radial-gradient(circle at 78% 78%, rgba(255,255,255,.58), transparent 25%),
        linear-gradient(150deg, rgba(8,126,139,.20), rgba(23,33,43,.08)),
        #f7fcfc;
}
.service-card-7 {
    background:
        linear-gradient(135deg, rgba(199,144,61,.18), rgba(255,56,92,.13), rgba(8,126,139,.10)),
        #fffdfb;
}
.service-card-8 {
    background:
        linear-gradient(145deg, rgba(23,33,43,.14), rgba(255,255,255,.10), rgba(255,56,92,.11)),
        #f9fbfd;
}
.service-card::after {
    content: "";
    position: absolute;
    width: var(--shape-size, 92px);
    height: var(--shape-size, 92px);
    right: var(--shape-x, -32px);
    top: var(--shape-y, -30px);
    border: var(--shape-border, 1px solid rgba(255,255,255,.70));
    border-radius: 50%;
    transform: rotate(var(--shape-rotate, 0deg));
}
.service-card::before {
    content: "";
    position: absolute;
    left: var(--shape2-x, 22px);
    bottom: var(--shape2-y, 18px);
    width: var(--shape2-w, 46px);
    height: var(--shape2-h, 46px);
    background: rgba(255,255,255,.24);
    clip-path: var(--shape2-path, polygon(50% 0, 100% 100%, 0 100%));
    transform: rotate(var(--shape2-rotate, -8deg));
}
.service-card-2 {
    --shape-size: 84px;
    --shape-y: -26px;
    --shape2-x: calc(100% - 82px);
    --shape2-y: 20px;
    --shape2-w: 58px;
    --shape2-h: 58px;
    --shape2-path: polygon(0 0, 100% 0, 76% 100%, 16% 82%);
}
.service-card-2::after { left: -26px; right: auto; }
.service-card-3 {
    --shape-size: 112px;
    --shape-x: auto;
    --shape-y: auto;
    --shape2-x: calc(100% - 82px);
    --shape2-y: 24px;
    --shape2-w: 54px;
    --shape2-h: 54px;
    --shape2-path: circle(50% at 50% 50%);
}
.service-card-3::after { left: -40px; bottom: -44px; top: auto; right: auto; }
.service-card-4 {
    --shape-size: 78px;
    --shape-x: 18px;
    --shape-y: -38px;
    --shape2-x: calc(100% - 76px);
    --shape2-y: 18px;
    --shape2-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.service-card-5 {
    --shape-size: 120px;
    --shape-x: -46px;
    --shape-y: auto;
    --shape2-x: 24px;
    --shape2-y: 18px;
    --shape2-w: 70px;
    --shape2-h: 34px;
    --shape2-path: inset(0 0 0 0 round 999px);
}
.service-card-5::after { bottom: -44px; top: auto; }
.service-card-6 {
    --shape-size: 76px;
    --shape-x: auto;
    --shape-y: -24px;
    --shape2-x: calc(100% - 78px);
    --shape2-y: 18px;
    --shape2-w: 52px;
    --shape2-h: 52px;
    --shape2-path: polygon(25% 0, 100% 35%, 72% 100%, 0 72%);
}
.service-card-6::after { left: -22px; right: auto; }
.service-card-7 {
    --shape-size: 92px;
    --shape-x: 22px;
    --shape-y: auto;
    --shape2-x: 24px;
    --shape2-y: 20px;
    --shape2-path: polygon(0 18%, 100% 0, 82% 100%, 10% 78%);
}
.service-card-7::after { bottom: -40px; top: auto; }
.service-card-8 {
    --shape-size: 98px;
    --shape-x: -32px;
    --shape-y: -38px;
    --shape2-x: 26px;
    --shape2-y: 18px;
    --shape2-w: 56px;
    --shape2-h: 56px;
    --shape2-path: polygon(50% 0, 61% 35%, 100% 35%, 68% 56%, 80% 100%, 50% 72%, 20% 100%, 32% 56%, 0 35%, 39% 35%);
}
.service-card strong {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 18px;
    line-height: 1.25;
}
.gallery-band {
    padding: 54px 5vw 64px;
    background: #f7fafb;
}
.hotel-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f5;
    box-shadow: 0 14px 32px rgba(20,31,45,.08);
}
.hotel-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 92px;
    grid-auto-flow: dense;
    gap: 16px;
}
.gallery-masonry figure {
    grid-column: span 4;
    grid-row: span 3;
}
.gallery-masonry figure:nth-child(8n + 1) {
    grid-column: span 5;
    grid-row: span 4;
}
.gallery-masonry figure:nth-child(8n + 2) {
    grid-column: span 3;
    grid-row: span 3;
}
.gallery-masonry figure:nth-child(8n + 3) {
    grid-column: span 4;
    grid-row: span 5;
}
.gallery-masonry figure:nth-child(8n + 4) {
    grid-column: span 3;
    grid-row: span 4;
}
.gallery-masonry figure:nth-child(8n + 5) {
    grid-column: span 5;
    grid-row: span 3;
}
.gallery-masonry figure:nth-child(8n + 6) {
    grid-column: span 4;
    grid-row: span 4;
}
.gallery-masonry figure:nth-child(8n + 7) {
    grid-column: span 3;
    grid-row: span 3;
}
.gallery-masonry figure:nth-child(8n) {
    grid-column: span 5;
    grid-row: span 4;
}
.gallery-carousel-shell {
    position: relative;
}
.gallery-carousel-viewport {
    overflow: hidden;
    border-radius: 8px;
    cursor: grab;
    touch-action: pan-y;
}
.gallery-carousel-viewport.is-dragging {
    cursor: grabbing;
}
.gallery-carousel {
    display: flex;
    gap: 16px;
    transition: transform .32s ease;
    will-change: transform;
    user-select: none;
}
.gallery-carousel figure {
    flex: 0 0 calc((100% - 32px) / 3);
    height: 380px;
}
.gallery-carousel img {
    pointer-events: none;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: var(--ink);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    box-shadow: 0 14px 34px rgba(20,31,45,.16);
    transform: translateY(-50%);
}
.gallery-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
}
.gallery-arrow-prev::before {
    transform: translate(-42%, -50%) rotate(-135deg);
}
.gallery-arrow-next::before {
    transform: translate(-58%, -50%) rotate(45deg);
}
.gallery-arrow-prev { left: 14px; }
.gallery-arrow-next { right: 14px; }
.gallery-arrow:disabled {
    cursor: default;
    opacity: .42;
}
.location-band {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 28px;
    align-items: stretch;
    padding: 58px 5vw 64px;
    background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,.72), transparent 23%),
        linear-gradient(135deg, rgba(8,126,139,.12), rgba(255,56,92,.08)),
        #fbfcfd;
}
.location-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.location-copy h2 {
    max-width: 640px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: .98;
}
.location-copy > strong {
    color: var(--ink);
    font-size: 18px;
}
.location-copy > p {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}
.location-directions-btn {
    width: max-content;
    min-width: 150px;
    margin-top: 2px;
}
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.nearby-card {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(231,235,239,.85);
    border-radius: 8px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 12px 28px rgba(20,31,45,.07);
}
.nearby-card span {
    color: var(--teal);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}
.nearby-card strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}
.nearby-card small {
    align-self: end;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}
.location-map {
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 8px;
    background: #eef2f5;
    box-shadow: 0 24px 48px rgba(20,31,45,.12);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    display: block;
}
.location-map-fallback {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 28px;
    text-align: center;
}
.location-map-fallback strong {
    color: var(--ink);
    font-size: 24px;
}
.location-map-fallback p {
    max-width: 360px;
    color: var(--muted);
    line-height: 1.5;
}
.results-header {
    min-height: 340px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 24px;
    align-items: end;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(12, 24, 36, .88), rgba(12, 24, 36, .56)),
        var(--results-image);
    background-size: cover;
    background-position: center;
}
.results-copy {
    max-width: 760px;
}
.back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(255,255,255,.82);
    font-weight: 800;
}
.results-header .eyebrow {
    color: #bdebee;
}
.results-header h1 {
    margin-bottom: 18px;
}
.search-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.search-summary span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}
.results-search {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.results-search label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}
.results-search button {
    grid-column: 1 / -1;
}
.room-list {
    display: grid;
    gap: 18px;
    background:
        linear-gradient(180deg, #f7fafb 0%, #ffffff 100%);
}
.room-row {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 300px;
    gap: 22px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(20,31,45,.07);
}
.room-row > img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.room-row > div { padding: 22px 0; }
.room-row h2 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.1;
}
.room-row p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.6;
}
.room-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.room-meta span, .status {
    background: #eef6f7;
    color: #075863;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
}
.status {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.status-pending {
    background: #fff7df;
    color: #8a5a00;
}
.status-confirmed {
    background: #e9f8ef;
    color: #146c3b;
}
.status-cancelled {
    background: #fff0f3;
    color: #a51233;
}
.status-select {
    border-width: 1.5px;
    font-weight: 750;
}
.status-select-pending {
    border-color: #f0c96a;
    background: #fff7df;
    color: #8a5a00;
}
.status-select-confirmed {
    border-color: #8fd7aa;
    background: #e9f8ef;
    color: #146c3b;
}
.status-select-cancelled {
    border-color: #f2a8b7;
    background: #fff0f3;
    color: #a51233;
}
.crm-segment {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.crm-segment-new {
    background: #edf5ff;
    color: #27507f;
    border: 1px solid #bfd5f3;
}
.crm-segment-repeat {
    background: #ebfaef;
    color: #1c6a3a;
    border: 1px solid #bde5ca;
}
.booking-box {
    padding: 18px;
    display: grid;
    align-content: center;
    gap: 10px;
    border-radius: 0;
    box-shadow: none;
    border-width: 0 0 0 1px;
    background: #fbfcfd;
}
.booking-box strong { font-size: 30px; line-height: 1; }
.booking-box small { color: var(--muted); }
.price-breakdown {
    display: grid;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid #dfe6ee;
    border-radius: 7px;
    background: #fff;
}
.price-breakdown-title {
    color: #425162;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.price-breakdown-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    color: #5c6978;
    font-size: 12px;
    line-height: 1.35;
}
.price-breakdown-line strong {
    color: #1e2d3b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    white-space: nowrap;
}
.price-breakdown-line.is-discount {
    padding-top: 5px;
    border-top: 1px dashed #d7e1ec;
    color: #236b40;
}
.price-breakdown-line.is-discount strong {
    color: #1f6d3f;
}
.empty-state {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 18px 42px rgba(20,31,45,.06);
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 0%, rgba(8,126,139,.12), transparent 30%),
        linear-gradient(180deg, #fbfcfd 0%, var(--admin-bg) 44%);
}
.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 268px;
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #111923;
    color: #fff;
    box-shadow: 18px 0 44px rgba(17, 25, 35, .16);
}
.sidebar strong {
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
    letter-spacing: 0;
}
.sidebar strong::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--accent);
}
.sidebar-group {
    display: grid;
    gap: 7px;
}
.sidebar-group-title {
    padding: 0 13px;
    color: rgba(203,214,226,.58);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sidebar a {
    padding: 12px 13px;
    border-radius: 8px;
    color: #cbd6e2;
    font-weight: 750;
    border: 1px solid transparent;
}
.sidebar a:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.08);
    color: #fff;
}
.admin-main {
    margin-left: 268px;
    padding: 38px;
}
.auth-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.auth-card { width: min(440px, 100%); padding: 28px; display: grid; gap: 12px; }
.register-card { width: min(680px, 100%); }
.auth-card h1, .panel h2 { margin: 0; }
.auth-card p { margin-top: 0; color: var(--muted); }
.auth-link {
    color: var(--teal);
    font-weight: 800;
    text-align: center;
}
.form-section-title {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.help-text {
    margin-top: -6px;
    color: var(--muted);
    line-height: 1.45;
}
.url-copy-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #d9e1ea;
}
.copy-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.copy-field input[type="text"] {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: #f3f6f9;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--muted);
    min-width: 0;
}
.promos-wrap {
    display: grid;
    gap: 24px;
}
.promos-wrap > p.panel-subtitle {
    color: var(--muted);
    font-size: 13px;
}
.promo-quill-editor {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    font-size: 15px;
}
.promos-embed-section {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f7fafc;
}
.promos-embed-section > h3 {
    margin: 0 0 4px;
}
.promos-embed-section > p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.promos-option-card {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.promos-option-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.promos-option-card code {
    font-size: 12px;
    background: #eef2f5;
    padding: 1px 5px;
    border-radius: 4px;
}
.promos-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.promos-option-header strong {
    font-size: 14px;
}
.promos-option-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: #e6f4f6;
    color: #075863;
}
.promos-preview-wrap {
    margin-top: 8px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.promos-preview-label {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    background: #f7fafc;
    margin: 0 !important;
}
.promos-preview-iframe {
    width: 100%;
    height: 280px;
    display: block;
    border: 0;
}
.url-copy-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.url-copy-row p {
    margin: 0 0 6px;
}
.settings-page {
    display: grid;
    gap: 18px;
}
.settings-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 62%, #edf4f8 100%);
    box-shadow: 0 18px 48px rgba(20,31,45,.07);
}
.settings-hero-card h2,
.settings-panel-heading h2 {
    margin: 0;
    color: #17212b;
}
.settings-hero-card span,
.settings-panel-heading span {
    display: block;
    margin-top: 6px;
    color: #5e6c7b;
    font-size: 13px;
    font-weight: 700;
}
.settings-links-panel {
    display: grid;
    gap: 8px;
    padding: 20px;
}
.settings-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6edf4;
}
.settings-block {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border: 1px solid #d8e2ed;
    border-radius: 8px;
}
.settings-block-soft {
    background: linear-gradient(180deg, #f3f7fb 0%, #eef3f8 100%);
}
.settings-form {
    gap: 18px;
    padding: 20px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.settings-form-heading {
    margin-bottom: 0;
}
.settings-form.is-saved {
    border-color: #b6e2c4;
    box-shadow: 0 18px 42px rgba(22, 112, 51, .09);
}
.settings-form.has-save-error {
    border-color: #efb7c3;
    box-shadow: 0 18px 42px rgba(165, 18, 51, .08);
}
.settings-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    grid-template-areas:
        "business ops"
        "seasons services";
    align-items: start;
    gap: 18px;
}
.settings-card {
    background: linear-gradient(180deg, #fafcfe 0%, #f4f8fc 100%);
    border-color: #d3dfeb;
}
.settings-card-business { grid-area: business; }
.settings-card-seasons { grid-area: seasons; }
.settings-card-ops { grid-area: ops; }
.settings-card-services { grid-area: services; }
.settings-block-header {
    display: grid;
    gap: 4px;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(207,219,231,.76);
}
.settings-block-header h3 {
    margin: 0;
    font-size: 18px;
    color: #1d2b3a;
}
.settings-block-header small {
    color: #5b6a79;
    font-size: 12px;
    font-weight: 700;
}
.settings-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.settings-card-seasons textarea,
.settings-card-ops textarea,
.settings-card-services textarea {
    min-height: 132px;
}
.field-label-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.field-label-header .btn.small {
    min-height: 30px;
    padding: 0 10px;
    border-color: #bdcddd;
    background: #f8fbfe;
    color: #2b3a48;
    font-size: 12px;
}
.field-label-header .btn.small:hover {
    border-color: #98b3cb;
    background: #edf4fb;
}
.season-modal-help {
    align-content: end;
}
.settings-actions {
    position: sticky;
    bottom: 14px;
    z-index: 3;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #d9e4ee;
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 34px rgba(20,31,45,.08);
    backdrop-filter: blur(8px);
}
.settings-save-feedback {
    min-height: 18px;
    color: #5a6a7a;
    font-size: 12px;
    font-weight: 700;
}
.settings-save-feedback.is-ok {
    color: #1f6d3f;
}
.settings-save-feedback.is-error {
    color: #a12a45;
}
@media (max-width: 1000px) {
    .settings-panel-heading,
    .settings-hero-card {
        align-items: flex-start;
        flex-direction: column;
    }
    .settings-layout-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "business"
            "ops"
            "seasons"
            "services";
    }
    .settings-two-col {
        grid-template-columns: 1fr;
    }
    .url-copy-row {
        flex-direction: column;
        align-items: stretch;
    }
    .url-copy-row .btn.small {
        width: fit-content;
    }
}
.admin-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    min-height: 112px;
    padding: 20px 24px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(231,235,239,.88);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(20,31,45,.07);
    backdrop-filter: blur(10px);
}
.admin-title h1 {
    margin-bottom: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}
.admin-business-badge {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e9f2ff;
    border: 1px solid #bfd4f0;
    color: #25466a;
    font-size: 12px;
    font-weight: 800;
}
.admin-main {
    padding: 30px;
}
.admin-main .admin-title {
    margin-bottom: 14px;
    min-height: 92px;
    padding: 14px 18px;
}
.admin-main .admin-title h1 {
    font-size: clamp(20px, 2.6vw, 30px);
}
.admin-main .panel {
    padding: 16px;
    margin-bottom: 14px;
}
.admin-main .panel h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.admin-main .panel-heading-row {
    margin-bottom: 10px;
}
.admin-main .form-grid {
    gap: 10px;
}
.admin-main input,
.admin-main textarea,
.admin-main select {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 14px;
}
.admin-main textarea {
    min-height: 88px;
}
.admin-main table th,
.admin-main table td {
    padding: 11px 12px;
}
.admin-main .dashboard-calendar-panel {
    min-height: 520px;
}
.admin-main .dashboard-day-card {
    min-height: 132px;
}
.admin-main .dashboard-month-grid .month-day {
    min-height: 94px;
}
.admin-main .month-reservation-bar {
    min-height: 20px;
    line-height: 20px;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 12px;
}
.crm-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-grid article {
    background: #fff;
    border: 1px solid rgba(231,235,239,.9);
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 18px 42px rgba(20,31,45,.06);
    position: relative;
    overflow: hidden;
}
.stat-grid article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--accent);
}
.stat-grid span { display: block; color: var(--muted); }
.stat-grid strong { display: block; margin-top: 6px; font-size: 30px; line-height: 1.1; letter-spacing: 0; }
@media (max-width: 1200px) {
    .crm-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.panel {
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid rgba(231,235,239,.95);
    box-shadow: 0 18px 42px rgba(20,31,45,.06);
}
.panel h2 {
    font-size: 22px;
    margin-bottom: 14px;
}
.panel-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.panel-heading-row span {
    color: var(--muted);
    font-size: 14px;
    text-transform: capitalize;
}
.dashboard-calendar-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
}
.dashboard-calendars-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    margin-bottom: 18px;
}
.dashboard-week-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}
.dashboard-day-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: #fbfcfd;
    min-height: 150px;
}
.dashboard-day-card.has-bookings {
    background: #f3f8ff;
    border-color: #cfe2ff;
}
.dashboard-day-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.dashboard-day-card .day-name {
    color: var(--muted);
    font-size: 13px;
}
.dashboard-day-card .day-count {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--text);
}
.dashboard-day-card.is-clickable,
.dashboard-month-grid .month-day.is-clickable {
    cursor: pointer;
}
.dashboard-day-card.is-clickable:hover,
.dashboard-day-card.is-clickable:focus-visible,
.dashboard-month-grid .month-day.is-clickable:hover,
.dashboard-month-grid .month-day.is-clickable:focus-visible {
    border-color: #9ec1ff;
    box-shadow: 0 0 0 3px rgba(11,93,215,.12);
}
.dashboard-day-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.dashboard-day-card li {
    font-size: 12px;
    line-height: 1.35;
}
.calendar-booking-chip {
    width: 100%;
    border: 1px solid #d4dfec;
    border-radius: 7px;
    background: #fff;
    color: var(--text);
    text-align: left;
    padding: 6px 7px;
    font-size: 12px;
    line-height: 1.3;
    cursor: pointer;
}
.calendar-booking-chip:hover,
.calendar-booking-chip:focus-visible {
    border-color: #9ec1ff;
    background: #f4f9ff;
    outline: none;
}
.calendar-booking-chip.status-badge {
    border-color: transparent;
    font-weight: 700;
}
.calendar-booking-chip.status-badge small {
    opacity: .92;
}
.calendar-booking-chip.status-pending {
    background: #fff2d9;
    color: #7a4b00;
}
.calendar-booking-chip.status-confirmed {
    background: #e5f7ec;
    color: #145c2e;
}
.calendar-booking-chip.status-cancelled {
    background: #ffe7ee;
    color: #8f1f3a;
}
.dashboard-day-card li small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}
.dashboard-day-card .day-empty {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}
.dashboard-month-grid {
    display: grid;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}
.dashboard-month-grid .month-head-row,
.dashboard-month-grid .month-week,
.dashboard-month-grid .month-week-lane,
.dashboard-month-grid .month-week-days {
    min-width: 690px;
}
.dashboard-month-grid .month-head {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.dashboard-month-grid .month-head-row,
.dashboard-month-grid .month-week-lane,
.dashboard-month-grid .month-week-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}
.dashboard-month-grid .month-week {
    position: relative;
}
.dashboard-month-grid .month-week-overlay {
    position: absolute;
    inset: 34px 0 auto;
    display: grid;
    gap: 4px;
    z-index: 4;
    pointer-events: none;
}
.dashboard-month-grid .month-week-days {
    position: relative;
    z-index: 2;
}
.dashboard-month-grid .month-day {
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 102px;
    padding: 8px;
    background: #fff;
    overflow: visible;
}
.dashboard-month-grid .month-day.is-empty {
    border-style: dashed;
    background: #f8fafb;
}
.dashboard-month-grid .month-day.has-bookings {
    border-color: #cfe2ff;
    background: #f4f9ff;
}
.dashboard-month-grid .month-day.outside-month {
    background: #f7f9fb;
    border-color: #e4e9ef;
}
.dashboard-month-grid .month-day.outside-month .month-day-top strong {
    color: #8ca0b3;
}
.dashboard-month-grid .month-day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc((var(--week-lanes, 0) * 26px) + 6px);
    position: relative;
    z-index: 5;
}
.dashboard-month-grid .month-day-top strong {
    font-size: 14px;
}
.dashboard-month-grid .month-day-top span {
    font-size: 11px;
    background: rgba(11,93,215,.12);
    color: #0b5dd7;
    border-radius: 999px;
    padding: 2px 6px;
}
.dashboard-month-grid .month-day ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}
.dashboard-month-grid .month-day li {
    font-size: 11px;
    line-height: 1.35;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.month-reservation-bar {
    border: 0;
    border-radius: 999px;
    min-height: 22px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 800;
    line-height: 22px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    pointer-events: auto;
}
.month-reservation-bar:hover,
.month-reservation-bar:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11,93,215,.14);
}
.month-reservation-bar.status-pending {
    background: #ffe8bc;
    color: #744300;
}
.month-reservation-bar.status-confirmed {
    background: #d8f2e2;
    color: #145c2e;
}
.month-reservation-bar.status-cancelled {
    background: #ffdfe7;
    color: #8f1f3a;
}
.modal-date-hint {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}
.dashboard-availability-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fbfcfd;
    font-size: 13px;
    color: var(--muted);
}
.dashboard-availability-box.is-loading {
    border-color: #cfe2ff;
    color: #0b5dd7;
    background: #f3f8ff;
}
.dashboard-availability-box.is-ok {
    border-color: #b8e5c6;
    color: #1b6c36;
    background: #f1fbf4;
}
.dashboard-availability-box.is-error {
    border-color: #f6c0cb;
    color: #a12a45;
    background: #fff5f8;
}
.split {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 18px;
}
.form-grid { display: grid; gap: 12px; }
.check { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 10px; }
.check input { width: auto; min-height: auto; }
.compact-row { padding: 12px 0; border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.compact-row span, table small { color: var(--muted); }
.rooms-admin-wrap {
    display: grid;
    gap: 20px;
}
.rooms-admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.rooms-admin-header h2 { margin: 0; }
.room-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    transition: opacity .14s ease;
}
.room-type-grid.is-refreshing { opacity: .42; }
.room-type-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfcfd;
    overflow: hidden;
    transition: box-shadow .18s ease, border-color .18s ease;
}
.room-type-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
    border-color: rgba(8,126,139,.35);
}
.room-type-card.is-inactive { opacity: .7; }
.room-type-card.is-saving { opacity: .6; pointer-events: none; }
.room-type-card.is-entering {
    animation: room-card-enter .3s ease both;
    animation-delay: var(--room-enter-delay, 0ms);
}
.room-type-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #eef2f5;
}
.room-type-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-type-thumb-empty {
    display: grid;
    place-items: center;
    height: 100%;
    color: var(--muted);
    font-size: 13px;
}
.room-type-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
}
.room-type-status-badge.is-active { background: #d1fae5; color: #065f46; }
.room-type-status-badge.is-inactive { background: #fee2e2; color: #991b1b; }
.room-type-card-body {
    display: grid;
    gap: 6px;
    padding: 14px;
    align-content: start;
}
.room-type-name { font-size: 15px; font-weight: 700; }
.room-type-meta { font-size: 12px; color: var(--muted); }
.room-type-stats {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}
.room-type-prices {
    display: flex;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    flex-wrap: wrap;
}
.room-type-card-actions {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
}
.room-gallery-manager {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}
.room-gallery-empty {
    padding: 14px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: #fbfcfd;
}
.room-gallery-item {
    display: grid;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: grab;
    transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease;
}
.room-gallery-item:active {
    cursor: grabbing;
}
.room-gallery-media {
    position: relative;
}
.room-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    background: #eef2f5;
}
.room-gallery-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}
.room-gallery-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #2f3a45;
    background: rgba(239,244,247,.92);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    pointer-events: auto;
}
.room-gallery-item.is-dragging {
    opacity: .65;
    transform: scale(.98);
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.room-gallery-item.is-drop-before {
    border-top: 3px solid #0b7285;
}
.room-gallery-item.is-drop-after {
    border-bottom: 3px solid #0b7285;
}
.room-gallery-badge.is-main {
    color: #0f5132;
    background: #d1fae5;
}
.room-gallery-icon {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.16);
    pointer-events: auto;
    transition: transform .12s ease, filter .12s ease;
}
.room-gallery-icon:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}
.room-gallery-icon svg {
    width: 16px;
    height: 16px;
}
.room-gallery-icon-drag {
    background: rgba(236,239,243,.95);
    color: #5f6d79;
    cursor: grab;
}
.room-gallery-icon-drag:active {
    cursor: grabbing;
}
.room-gallery-icon-main {
    background: rgba(255,242,196,.95);
    color: #b88700;
}
.room-gallery-icon-main svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linejoin: round;
}
.room-gallery-icon-main.is-active {
    background: rgba(255,226,122,.95);
}
.room-gallery-icon-main.is-active svg path {
    fill: currentColor;
    stroke: currentColor;
}
.room-gallery-icon-remove {
    background: rgba(255,225,227,.95);
    color: #b42338;
}
.room-edit-list {
    display: grid;
    gap: 14px;
    transition: opacity .14s ease, transform .14s ease;
}
.room-edit-list.is-refreshing {
    opacity: .42;
    transform: translateY(3px);
}
.room-edit-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.room-edit-card.is-saving {
    border-color: #cfe2ff;
    background: #f5f9ff;
}
.room-edit-card.is-removing {
    opacity: .62;
}
.room-edit-card.is-entering {
    animation: room-card-enter .3s ease both;
    animation-delay: var(--room-enter-delay, 0ms);
}
.room-edit-card.is-updated {
    border-color: #b8e5c6;
    box-shadow: 0 10px 22px rgba(35, 128, 65, .12);
}
.room-edit-card.is-update-error {
    border-color: #f3b4c0;
    background: #fff6f8;
}
.room-edit-form {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 14px;
}
.room-edit-media {
    display: grid;
    gap: 10px;
    align-content: start;
}
.room-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #eef2f5;
}
.room-edit-fields {
    display: grid;
    gap: 10px;
}
.room-update-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.room-update-feedback {
    min-height: 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.room-update-feedback.is-ok {
    color: #1b6c36;
}
.room-update-feedback.is-error {
    color: #a12a45;
}
@keyframes room-card-enter {
    from {
        opacity: 0;
        transform: translateY(7px) scale(.995);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.room-field-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.room-capacity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.room-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.room-capacity-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.booking-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, .8fr)) auto auto;
    gap: 12px;
    align-items: end;
}
.panel-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.panel-heading-row h2 {
    margin: 0;
}
.panel-heading-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.panel-subtitle {
    display: inline-block;
    margin-top: 4px;
}
.calendar-nav {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}
.calendar-nav .btn.small {
    min-height: 30px;
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 15px; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; font-weight: 850; }
tbody tr:hover { background: #fbfcfd; }
.inline-form { display: flex; gap: 8px; align-items: center; }
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}
.pagination a {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}
.pagination a.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}
.modal-open { overflow: hidden; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    padding: 24px;
}
.modal.is-open {
    display: grid;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 27, .58);
    backdrop-filter: blur(6px);
}
.modal-panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(88vh, 820px);
    overflow: auto;
    padding: 0;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #f7fbfc 0%, #ffffff 42%);
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 0;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(231,235,239,.95);
    background:
        linear-gradient(135deg, rgba(8,126,139,.12), rgba(255,56,92,.08)),
        #f8fbfc;
}
.modal-header h2 {
    margin: 4px 0 0;
    font-size: 24px;
}
.modal-panel > form { padding: 0; }
.modal-body {
    display: grid;
    gap: 14px;
    padding: 22px 24px;
}
.modal-field-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.modal-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid rgba(231,235,239,.95);
    background: #f8fbfc;
}
.modal-panel--room {
    width: min(960px, 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal-panel--room .modal-header {
    flex-shrink: 0;
    padding: 26px 36px;
    background:
        linear-gradient(135deg, rgba(8,126,139,.16), rgba(255,56,92,.10)),
        #f3f8fb;
    border-bottom: 1px solid rgba(8,126,139,.20);
}
.modal-panel--room .modal-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}
.modal-panel--room .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 28px 36px;
}
.modal-panel--room .modal-footer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 36px;
    border-top: 2px solid rgba(231,235,239,.95);
    background: #f8fbfc;
}
.discount-box {
    display: grid;
    grid-template-columns: minmax(140px, .75fr) minmax(150px, 1fr) minmax(170px, 1fr);
    gap: 12px;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(8,126,139,.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(8,126,139,.08), rgba(255,56,92,.06)),
        #fbfefe;
}
.discount-box > div {
    display: grid;
    gap: 4px;
}
.discount-box span,
.discount-box small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}
.discount-box strong {
    font-size: 24px;
    line-height: 1;
}
.discount-box small {
    grid-column: 1 / -1;
    padding-top: 2px;
}
code {
    display: block;
    overflow-x: auto;
    padding: 12px;
    background: #f1f4f6;
    border-radius: 7px;
}
.image-preview.is-hidden { display: none; }
.gallery-preview.is-hidden { display: none; }
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
}
.gallery-preview figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 8px;
    background: #fff;
}
.gallery-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.gallery-preview figcaption {
    overflow: hidden;
    padding: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
}
.gallery-admin-card {
    overflow: hidden;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff, #f7fafb);
    box-shadow: 0 14px 34px rgba(20,31,45,.08);
}
.gallery-admin-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.gallery-admin-card div {
    display: grid;
    gap: 4px;
    padding: 12px 12px 4px;
}
.gallery-admin-card strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gallery-admin-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.gallery-delete-check {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 12px 12px;
    padding: 9px 11px;
    border: 1px solid rgba(231,235,239,.95);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.gallery-delete-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.gallery-delete-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(20,31,45,.18);
    border-radius: 50%;
    background: #fff;
    transition: border-color .18s ease, background .18s ease;
}
.gallery-delete-icon::before,
.gallery-delete-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
}
.gallery-delete-icon::before {
    transform: rotate(45deg);
}
.gallery-delete-icon::after {
    transform: rotate(-45deg);
}
.gallery-delete-check:hover {
    border-color: rgba(255, 47, 93, .36);
    color: #c51643;
}
.gallery-delete-check.is-selected {
    border-color: rgba(255, 47, 93, .34);
    background: rgba(255, 47, 93, .07);
    color: #c51643;
    box-shadow: 0 10px 24px rgba(255, 47, 93, .10);
}
.gallery-delete-check.is-selected .gallery-delete-icon {
    border-color: #ff2f5d;
    background: #ff2f5d;
    color: #fff;
}
.gallery-delete-check.is-selected .gallery-delete-icon::before,
.gallery-delete-check.is-selected .gallery-delete-icon::after {
    opacity: 1;
}
.hero-style-picker {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}
.hero-style-picker legend {
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 850;
}
.hero-style-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hero-style-card {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.hero-style-card:hover {
    transform: translateY(-1px);
    border-color: rgba(255,56,92,.45);
    box-shadow: 0 12px 28px rgba(20,31,45,.08);
}
.hero-style-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.hero-style-card:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,56,92,.14), 0 14px 30px rgba(20,31,45,.10);
}
.hero-style-card strong { font-size: 15px; }
.hero-style-card small { color: var(--muted); line-height: 1.35; }
.style-preview {
    height: 118px;
    border-radius: 7px;
    background: #eef2f5;
    position: relative;
    overflow: hidden;
}
.preview-image,
.preview-copy,
.preview-search {
    position: absolute;
    display: block;
    border-radius: 5px;
}
.hero-option-classic .preview-image {
    inset: 0;
    background: linear-gradient(135deg, #0f2230, #557984);
}
.hero-option-classic .preview-copy {
    left: 12px;
    top: 24px;
    width: 42%;
    height: 38px;
    background: rgba(255,255,255,.86);
}
.hero-option-classic .preview-search {
    right: 12px;
    bottom: 12px;
    width: 34%;
    height: 72px;
    background: #fff;
}
.hero-option-split .preview-image {
    right: 10px;
    top: 10px;
    bottom: 10px;
    width: 44%;
    background: linear-gradient(135deg, #8ba7ad, #243846);
    box-shadow: 0 10px 22px rgba(20,31,45,.20);
}
.hero-option-split .preview-copy {
    left: 12px;
    top: 26px;
    width: 36%;
    height: 42px;
    background: #fff;
}
.hero-option-split .preview-search {
    left: 34%;
    bottom: 12px;
    width: 34%;
    height: 34px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(20,31,45,.14);
}
.hero-option-minimal .preview-image {
    inset: 0;
    background: linear-gradient(rgba(20,31,45,.45), rgba(20,31,45,.72)), linear-gradient(135deg, #3a6d78, #162634);
}
.hero-option-minimal .preview-copy {
    left: 28%;
    top: 28px;
    width: 44%;
    height: 34px;
    background: rgba(255,255,255,.86);
}
.hero-option-minimal .preview-search {
    left: 14%;
    right: 14%;
    bottom: 16px;
    height: 28px;
    background: #fff;
}

@media (max-width: 1200px) and (min-width: 901px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services-grid-bento {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .services-grid-masonry {
        columns: 2 260px;
    }
    .gallery-carousel figure {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 64px;
        gap: 0;
        padding: 10px 5vw;
        flex-wrap: nowrap;
    }
    .brand-title-img {
        max-height: 30px;
    }
    .brand-hotel-name {
        font-size: 16px;
    }
    .topbar-desktop { display: none; }
    .topbar-mobile { display: block; }
    .hotel-mini-footer-inner {
        min-height: 48px;
        padding: 8px 5vw;
        font-size: 12px;
    }
    .hotel-mini-logo {
        height: 15px;
    }
    .landing-hero, .hotel-hero, .results-header, .results-search, .room-row, .split, .room-type-grid, .room-field-grid, .room-capacity-grid, .room-price-grid, .room-capacity-price-grid, .stat-grid, .hero-style-grid, .room-card-grid, .booking-filters, .location-band, .nearby-grid { grid-template-columns: 1fr; }
    .dashboard-calendars-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-calendar-panel {
        min-height: auto;
    }
    .calendar-nav {
        width: 100%;
    }
    .calendar-nav .btn.small {
        flex: 1 1 30%;
        justify-content: center;
    }
    .dashboard-week-grid,
    .dashboard-week-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mb-landing {
        padding: 18px 5vw 0;
    }
    .mb-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mb-floating-box {
        right: 12px;
        top: 12px;
    }
    .mb-stat-badge {
        left: 12px;
        bottom: 12px;
    }
    .mb-feature-grid {
        margin-top: 36px;
        grid-template-columns: 1fr;
    }
    .mb-feature,
    .mb-feature-main,
    .mb-feature-dark,
    .mb-feature-soft {
        grid-column: auto;
    }
    .mb-cta {
        margin-top: 34px;
    }
    .mb-cta-actions-row {
        align-items: stretch;
        gap: 10px;
    }
    .mb-cta-main-actions,
    .mb-cta-side-actions {
        width: 100%;
        justify-content: flex-start;
    }
    .mb-pricing {
        margin: 34px auto 38px;
        padding: 18px;
        border-radius: 22px;
    }
    .mb-pricing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mb-hotels {
        margin-top: 34px;
    }
    .mb-footer {
        margin: 28px calc(50% - 50vw) 0;
    }
    .mb-footer-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 5vw 22px;
        align-items: start;
    }
    .mb-footer-col {
        align-items: flex-start;
    }
    .mb-footer-brand-row {
        gap: 10px;
    }
    .mb-footer-brand-row p {
        white-space: normal;
    }
    .mb-footer-logo {
        width: min(78px, 30vw);
    }
    .mb-footer-line {
        white-space: normal;
        flex-wrap: wrap;
    }
    .mb-privacy-header,
    .mb-terms-header {
        padding: 14px 14px;
    }
    .mb-privacy-body,
    .mb-terms-body {
        padding: 14px;
    }
    .mb-social-float {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }
    .mb-float-btn {
        width: 46px;
        height: 46px;
    }
    .mb-float-btn svg {
        width: 22px;
        height: 22px;
    }
    .landing-hero {
        min-height: auto;
        padding: 38px 5vw 42px;
    }
    .landing-brand-lockup {
        margin-bottom: 10px;
    }
    .landing-brand-logo {
        width: min(280px, 84vw);
    }
    .landing-hero::before { display: none; }
    .landing-visual {
        min-height: auto;
    }
    .landing-visual img {
        height: 260px;
    }
    .landing-floating-panel {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }
    .landing-mini-stat {
        top: 12px;
        right: 12px;
    }
    .hotel-hero { min-height: auto; }
    .hero-split::after {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 260px;
        grid-area: image;
        order: -1;
    }
    .hero-split {
        background: #fff;
        grid-template-areas:
            "image"
            "copy"
            "search";
    }
    .hero-split::before { display: none; }
    .hero-split .hero-copy::after { display: none; }
    .hero-split .search-box { margin-top: 0; grid-template-columns: 1fr; }
    .hero-minimal .search-box { grid-template-columns: 1fr; }
    .hotel-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 20px;
    }
    .hotel-card-title-row strong {
        font-size: 21px;
    }
    .results-header {
        min-height: auto;
        padding-top: 34px;
    }
    .results-search button { grid-column: auto; }
    .room-row > div, .booking-box { padding: 16px; }
    .booking-box { border-left: 0; border-top: 1px solid var(--line); }
    .room-showcase { padding: 38px 5vw 46px; }
    .services-band { padding: 38px 5vw 46px; }
    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .service-card,
    .service-card:nth-child(n) {
        min-height: 118px;
        grid-column: auto;
        grid-row: auto;
    }
    .services-grid-masonry {
        columns: 1;
    }
    .services-grid-masonry .service-card,
    .services-grid-masonry .service-card-tall {
        min-height: 118px;
    }
    .services-grid-bento .service-card,
    .services-grid-bento .service-card:nth-child(n),
    .services-grid-bento .service-card-wide,
    .services-grid-bento .service-card-tall {
        grid-column: auto;
        grid-row: auto;
        place-items: center;
    }
    .services-grid-bento .service-card strong {
        text-align: center;
        font-size: 18px;
    }
    .gallery-band { padding: 38px 5vw 46px; }
    .location-band { padding: 38px 5vw 46px; }
    .location-map,
    .location-map iframe {
        min-height: 320px;
    }
    .location-directions-btn {
        width: 100%;
    }
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .gallery-masonry figure,
    .gallery-masonry figure:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        height: 260px;
    }
    .gallery-carousel figure {
        flex-basis: 100%;
        height: 280px;
    }
    .stay-card-footer { align-items: stretch; flex-direction: column; }
    .stay-card-footer .btn { width: 100%; }
    .modal { padding: 14px; }
    .modal-header, .modal-body, .modal-footer { padding: 18px; }
    .modal-field-row { grid-template-columns: 1fr; }
    .modal-footer { align-items: stretch; flex-direction: column-reverse; }
    .discount-box { grid-template-columns: 1fr; }
    .panel-heading-row { align-items: flex-start; flex-direction: column; }
    .pagination { justify-content: flex-start; }
    .sidebar { position: static; width: auto; box-shadow: none; }
    .admin-main { margin-left: 0; padding: 18px; }
    .admin-title { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1100px) {
    .admin-main {
        padding: 22px;
    }
}
