:root {
    --bg: #f6f7f9;
    --panel: #ffffff;
    --text: #18202a;
    --muted: #667085;
    --line: #d9dee7;
    --brand: #0f766e;
    --brand-dark: #115e59;
    --danger: #b42318;
    --success: #047857;
}

@font-face {
    font-display: swap;
    font-family: "Pleasant Lobster";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/google/Lobster-Regular.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Pleasant Lobster";
    font-style: normal;
    font-weight: 700;
    src: url("/assets/fonts/google/Lobster-Regular.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Lato";
    font-style: normal;
    font-weight: 600 700;
    src: url("/assets/fonts/google/Lato-Bold.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Lato";
    font-style: normal;
    font-weight: 900;
    src: url("/assets/fonts/google/Lato-Black.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

.admin-login-body {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, 0.86), rgba(15, 118, 110, 0.72)),
        url("/uploads/gallery/2026/06/resort-front-main.jpeg") center / cover no-repeat;
    color: #18202a;
}

.admin-login-shell {
    align-items: center;
    display: grid;
    min-height: 100vh;
    padding: 24px;
}

.admin-login-shell > .alert {
    margin: 0 auto 14px;
    max-width: 560px;
    width: 100%;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.28);
    display: grid;
    gap: 18px;
    margin: 0 auto;
    max-width: 560px;
    padding: clamp(22px, 3vw, 34px);
    width: 100%;
}

.admin-login-brand {
    align-items: center;
    display: flex;
    gap: 12px;
}

.admin-login-brand > span {
    align-items: center;
    background: #101828;
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.admin-login-brand strong,
.admin-login-brand small {
    display: block;
}

.admin-login-brand small,
.admin-login-copy p {
    color: #667085;
}

.admin-login-copy span {
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-login-copy h1 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.08;
    margin: 8px 0 10px;
}

.admin-login-form {
    display: grid;
    gap: 14px;
}

.admin-login-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.admin-login-form legend,
.admin-login-form > label {
    color: #344054;
    display: grid;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
}

.admin-role-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
}

.admin-role-grid label {
    cursor: pointer;
}

.admin-role-grid input {
    position: absolute;
    opacity: 0;
}

.admin-role-grid span {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    display: flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    min-height: 44px;
    padding: 10px;
    text-align: center;
}

.admin-role-grid input:checked + span {
    background: #e7f5f3;
    border-color: #0f766e;
    color: #115e59;
}

.admin-login-form input[type="email"],
.admin-login-form input[type="password"],
.admin-login-form input[type="text"],
.admin-login-form select {
    background: #ffffff;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    color: #18202a;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
}

.admin-login-form select {
    appearance: auto;
}

.admin-captcha-row {
    align-items: center;
    display: flex;
    gap: 10px;
}

.admin-captcha-row input[type="text"] {
    flex: 1 1 150px;
    min-width: 0;
}

.admin-captcha-code {
    background: #101828;
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-size: 18px;
    justify-content: center;
    letter-spacing: 0.18em;
    min-width: 128px;
    padding: 9px 12px;
}

.admin-captcha-refresh {
    align-items: center;
    background: #e7f5f3;
    border: 1px solid #b7ddd8;
    border-radius: 6px;
    color: #115e59;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.admin-captcha-refresh:hover {
    background: #0f766e;
    border-color: #0f766e;
    color: #ffffff;
}

.admin-captcha-refresh:disabled {
    cursor: wait;
    opacity: 0.65;
}

.admin-login-form .button {
    min-height: 48px;
    width: 100%;
}

.revenue-summary-grid {
    box-sizing: border-box;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 25%));
    margin: 18px 0;
    padding: 0 6px;
}

.revenue-summary-grid article {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-sizing: border-box;
    display: grid;
    gap: 6px;
    margin: 0 8px;
    padding: 18px;
}

.revenue-summary-grid article:first-child {
    margin-left: 0;
    margin-right: 12px;
}

.revenue-summary-grid article:last-child {
    margin-left: 12px;
    margin-right: 0;
}

.revenue-summary-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.revenue-summary-grid strong {
    color: var(--text);
    font-size: 24px;
    line-height: 1.1;
}

.revenue-summary-grid small {
    color: var(--muted);
}

.revenue-expense-panel {
    margin: 18px 0;
}

.revenue-expense-form {
    align-items: end;
}

.revenue-notes-field {
    grid-column: span 2;
}

.revenue-notes-field textarea {
    resize: vertical;
}

.revenue-two-column {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.booking-list-title.compact {
    justify-content: flex-end;
    min-height: 42px;
    padding: 8px 12px;
}

@media (max-width: 1100px) {
    .revenue-summary-grid {
        gap: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .revenue-summary-grid article {
        margin: 0;
    }

    .revenue-two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .revenue-summary-grid {
        grid-template-columns: 1fr;
    }

    .revenue-notes-field {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .admin-role-grid {
        grid-template-columns: 1fr;
    }
}

a {
    color: var(--brand-dark);
    text-decoration: none;
}

.topbar {
    align-items: center;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
}

.nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-button {
    display: none;
}

.nav form {
    margin: 0;
}

.shell {
    margin: 0 auto;
    max-width: 1180px;
    padding: 32px 20px;
}

.hero {
    align-items: center;
    background: linear-gradient(135deg, #0f766e, #164e63);
    border-radius: 8px;
    color: #fff;
    display: flex;
    min-height: 320px;
    padding: 48px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 8px 0 16px;
    max-width: 760px;
}

.hero p {
    max-width: 620px;
}

.eyebrow {
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.button {
    align-items: center;
    background: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    text-align: center;
}

.button.ghost {
    background: transparent;
    color: var(--brand-dark);
}

.hero .button.ghost {
    border-color: #fff;
    color: #fff;
}

.link-button {
    background: none;
    border: 0;
    color: var(--brand-dark);
    min-height: 0;
    padding: 0;
}

.section-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 32px 0 18px;
}

.section-head.compact {
    margin-top: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.panel,
.room-card,
.stat {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.panel {
    padding: 24px;
}

.narrow {
    margin: 30px auto;
    max-width: 460px;
}

.room-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.room-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.room-meta,
.muted {
    color: var(--muted);
    font-size: 14px;
}

.room-footer,
.stats {
    display: flex;
    gap: 16px;
}

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

.stats {
    margin-bottom: 18px;
}

.stat {
    flex: 1;
    padding: 20px;
}

.stat span {
    color: var(--muted);
    display: block;
}

.stat strong {
    font-size: 32px;
}

.form {
    display: grid;
    gap: 16px;
}

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

.add-room-panel {
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(24, 32, 42, 0.08);
}

.add-room-panel h1 {
    font-size: 60px;
    margin-bottom: 16px;
}

.add-room-form {
}

.add-room-form .form-label {
    color: #344055;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.add-room-form .form-control,
.add-room-form .form-select {
    background: #fbfdff;
    border-color: #6b7280;
    border-radius: 8px;
    min-height: 42px;
}

.field-note {
    color: var(--muted);
    font-size: 14px;
    margin: 6px 0 0;
}

.image-url-field {
    grid-column: span 2;
}

.span-all {
    grid-column: 1 / -1;
}

.form label:not(.form-label) {
    color: var(--muted);
    display: grid;
    font-size: 14px;
    gap: 6px;
}

input:not(.form-control),
select:not(.form-select),
textarea:not(.form-control) {
    border: 1px solid #6b7280;
    border-radius: 6px;
    color: var(--text);
    font: inherit;
    min-height: 44px;
    padding: 9px 11px;
    width: 100%;
}

.booking-form {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
}

.booking-form .button {
    justify-content: center;
}

.public-offer-strip {
    align-items: center;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.public-offer-strip strong,
.public-offer-badge {
    font-weight: 900;
}

.public-offer-badge {
    align-self: flex-start;
    background: #dc2626;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    padding: 5px 9px;
}

.public-price-preview {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    display: grid;
    gap: 5px;
    padding: 10px;
}

.public-price-preview[hidden] {
    display: none;
}

.public-price-preview span,
.public-price-preview small {
    font-size: 12px;
    font-weight: 800;
}

.public-price-preview div {
    align-items: baseline;
    display: flex;
    gap: 8px;
}

.public-price-preview del {
    color: #64748b;
}

.public-price-preview strong {
    color: #15803d;
    font-size: 18px;
}

.alert {
    margin-bottom: 16px;
}

.alert.success {
    background: #ecfdf3;
    color: var(--success);
}

.alert.error {
    background: #fef3f2;
    color: var(--danger);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    border-collapse: collapse;
    min-width: 720px;
    table-layout: fixed;
    width: 100%;
}

.col-unit {
    width: 25%;
}

.col-type {
    width: 25%;
}

.col-occupancy {
    width: 13%;
}

.col-price {
    width: 25%;
}

.col-extras {
    width: 17%;
}

.col-actions {
    width: 25%;
}

td,
th {
    overflow-wrap: anywhere;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

.badge {
    background: #eef6f5;
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 13px;
    padding: 4px 10px;
}

@media (max-width: 1024px) {
    .shell {
        max-width: 920px;
        padding: 28px 18px;
    }

    .hero {
        min-height: 280px;
        padding: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

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

    .add-room-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .public-booking-band form,
    .public-about {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .topbar {
        align-items: stretch;
        flex-wrap: wrap;
        min-height: 60px;
        padding: 0 18px;
    }

    .brand {
        align-items: center;
        display: flex;
        min-height: 60px;
    }

    .nav-toggle-button {
        align-items: center;
        cursor: pointer;
        display: grid;
        gap: 5px;
        justify-content: center;
        margin-left: auto;
        min-height: 60px;
        width: 44px;
    }

    .nav-toggle-button span {
        background: var(--text);
        border-radius: 999px;
        display: block;
        height: 2px;
        width: 24px;
    }

    .nav {
        align-items: stretch;
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0 0 14px;
    }

    .nav-toggle:checked + .nav-toggle-button + .nav {
        display: flex;
    }

    .nav a,
    .nav span,
    .nav form,
    .link-button {
        border-top: 1px solid var(--line);
        display: block;
        padding: 12px 0;
        text-align: left;
        width: 100%;
    }

    .link-button {
        color: var(--brand-dark);
    }

    .section-head,
    .stats {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-hero,
    .public-page-hero {
        min-height: 420px;
        padding: 54px 28px;
    }

    .public-hero h1,
    .public-page-hero h1 {
        font-size: 40px;
    }

    .public-booking-band {
        margin-top: -34px;
    }

    .public-section-head,
    .public-hot-offer {
        align-items: flex-start;
        display: grid;
        gap: 16px;
    }

    .hero {
        padding: 28px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .actions,
    .room-footer {
        flex-direction: column;
    }

    .public-room-grid,
    .public-amenities,
    .public-footer {
        grid-template-columns: 1fr;
    }

    .actions .button {
        width: 100%;
    }

    .grid-form,
    .add-room-form,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .public-offer-strip {
        align-items: flex-start;
        display: grid;
    }

    .image-url-field {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .shell {
        padding: 20px 12px;
    }

    .hero,
    .panel,
    .room-card,
    .stat {
        border-radius: 6px;
    }

    .hero {
        min-height: 0;
        padding: 24px 18px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .panel,
    .room-card {
        padding: 16px;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .button,
    .add-room-form .btn {
        min-height: 46px;
        width: 100%;
    }

    .link-button {
        min-height: 0;
        width: 100%;
    }
}

/* Premium UI layer */
:root {
    --luxury-ink: #111827;
    --luxury-muted: #64748b;
    --luxury-teal: #0f766e;
    --luxury-teal-dark: #083f3b;
    --luxury-gold: #d9a441;
    --luxury-rose: #f7ebe7;
    --luxury-sky: #eaf4f4;
    --admin-panel: #111827;
    --admin-panel-soft: #182235;
    --admin-line: #334155;
}

body {
    background:
        radial-gradient(circle at top left, rgba(217, 164, 65, 0.16), transparent 28rem),
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.2), transparent 34rem),
        linear-gradient(180deg, #dfe6ee 0%, #cbd5e1 100%);
    color: var(--luxury-ink);
    font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
}

.app-navbar {
    background: linear-gradient(135deg, #0d1b2a 0%, #0f766e 100%);
    border: 0;
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.18);
    position: sticky;
    top: 0;
    z-index: 30;
}

.app-navbar .container-fluid {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    min-height: 72px;
}

.app-navbar .navbar-brand {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    text-decoration: none;
}

.app-navbar .navbar-collapse {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.app-navbar .navbar-nav {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-navbar .nav-item {
    list-style: none;
}

.app-navbar .navbar-brand,
.app-navbar .nav-link,
.app-navbar .navbar-text {
    color: rgba(255, 255, 255, 0.92);
}

.app-navbar .nav-link {
    border-radius: 999px;
    display: inline-flex;
    font-weight: 600;
    padding: 9px 14px;
    text-decoration: none;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.app-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    display: none;
}

.app-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, #f5d48a 0%, #d9a441 100%);
    border-radius: 12px;
    color: #17202a;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    letter-spacing: 0;
    width: 36px;
}

.brand-logo {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    flex: 0 1 270px;
    height: 64px;
    justify-content: center;
    overflow: hidden;
    padding: 3px 6px;
    width: 270px;
}

.brand-logo img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.admin-brand-logo {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
    padding: 6px 12px;
}

.page-surface {
    max-width: 1240px;
    padding-bottom: 56px;
}

.public-body {
    background: #fbf8f2;
    color: #1f2933;
    overflow-x: hidden;
}

.public-contact-strip {
    align-items: center;
    background: #7b2328;
    color: #fff7ed;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 800;
    gap: 18px;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
}

.public-body .app-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(123, 35, 40, 0.12);
    box-shadow: 0 12px 30px rgba(52, 38, 28, 0.08);
}

.public-body .app-navbar .navbar-brand,
.public-body .app-navbar .nav-link,
.public-body .app-navbar .navbar-text {
    color: #3a2723;
}

.public-body .app-navbar .nav-link:hover,
.public-body .app-navbar .nav-link:focus {
    background: #f8efe2;
    color: #a76b2b;
}

.public-body .app-navbar .navbar-toggler {
    border-color: rgba(123, 35, 40, 0.28);
}

.public-body .app-navbar .navbar-toggler-icon {
    filter: none;
}

.public-body .brand-mark {
    background: #7b2328;
    color: #f8d48a;
}

.public-body .btn-light {
    background: #a76b2b;
    border-color: #a76b2b;
    color: #fff;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    padding: 9px 16px;
    text-decoration: none;
}

.public-page-surface {
    max-width: none;
    overflow-x: hidden;
    padding: 0;
}

.public-hero,
.public-page-hero {
    background:
        linear-gradient(90deg, rgba(36, 22, 18, 0.72), rgba(36, 22, 18, 0.28)),
        var(--hero-image) center / cover no-repeat;
    border-radius: 8px;
    color: #fff;
    min-height: 520px;
    overflow: hidden;
    padding: 78px 52px;
}

.public-hero-content {
    max-width: 620px;
}

.public-kicker {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #f8d48a;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
    padding: 7px 12px;
    text-transform: uppercase;
}

.public-hero h1,
.public-page-hero h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 16px;
    max-width: 760px;
}

.public-hero p,
.public-page-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 700;
    max-width: 640px;
}

.public-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.public-body .button {
    background: #a76b2b;
    border-color: #a76b2b;
    border-radius: 4px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.public-body .button.ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.public-booking-band {
    background: #ffffff;
    border: 1px solid rgba(167, 107, 43, 0.16);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(52, 38, 28, 0.12);
    margin: -54px auto 46px;
    max-width: 1040px;
    padding: 18px;
    position: relative;
    z-index: 3;
}

.public-booking-band form {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.public-booking-band label {
    color: #7b2328;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    text-transform: uppercase;
}

.public-booking-band input,
.public-body .booking-form input {
    border: 1px solid #dac8b3;
    border-radius: 4px;
    color: #1f2933;
    min-height: 42px;
    padding: 8px 10px;
}

.public-about {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    margin-bottom: 42px;
}

.public-about h2,
.public-section-head h2,
.public-hot-offer h2 {
    color: #2a1c18;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
}

.public-about p,
.public-hot-offer p {
    color: #6b5b52;
    font-weight: 700;
}

.public-amenities {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-amenities span {
    background: #fff;
    border: 1px solid #ead8c0;
    border-radius: 8px;
    color: #7b2328;
    font-weight: 900;
    padding: 18px;
}

.public-section-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin: 20px 0 18px;
}

.public-section-head a {
    color: #7b2328;
    font-weight: 900;
}

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

.public-room-card {
    border: 0;
    box-shadow: 0 20px 50px rgba(52, 38, 28, 0.12);
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.public-room-card > img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.public-room-card-body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.public-room-card h2,
.public-room-card h3 {
    color: #2a1c18;
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.public-room-card p {
    color: #6b5b52;
    margin: 0;
}

.public-room-card .room-footer strong {
    color: #7b2328;
}

.rooms-page-hero {
    margin-bottom: 22px;
    min-height: 330px;
}

.public-booking-room-card .booking-form {
    background: #fbf8f2;
    border: 1px solid #ead8c0;
    border-radius: 8px;
    padding: 12px;
}

.public-hot-offer {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(123, 35, 40, 0.94), rgba(123, 35, 40, 0.72)),
        url('/assets/img/pleasantBrochure.jpeg') center / cover no-repeat;
    border-radius: 8px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
    padding: 34px;
}

.public-hot-offer h2,
.public-hot-offer p {
    color: #fff;
}

.public-footer {
    background: #231815;
    color: rgba(255, 255, 255, 0.78);
    display: grid;
    gap: 24px;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    margin-top: 48px;
    padding: 42px max(20px, calc((100vw - 1180px) / 2));
}

.public-footer strong,
.public-footer span {
    color: #fff;
    display: block;
    font-weight: 900;
    margin-bottom: 10px;
}

.public-footer a {
    color: rgba(255, 255, 255, 0.78);
    display: block;
    margin-bottom: 6px;
}

.public-footer p {
    margin: 0 0 6px;
}

.public-body {
    background: #f3f3f3;
}

.public-body .app-navbar {
    background: #ffffff;
    min-height: 78px;
}

.vilena-hero,
.vilena-page-hero {
    background:
        linear-gradient(90deg, rgba(26, 18, 13, 0.76), rgba(26, 18, 13, 0.2)),
        var(--hero-image) center / cover no-repeat;
    border-radius: 0;
    color: #ffffff;
    min-height: 620px;
    padding: 96px 58px;
}

.public-body .alert {
    margin: 18px auto;
    max-width: 1180px;
}

.public-body .public-offer-strip,
.public-body .vilena-about,
.public-body .vilena-section-head,
.public-body .vilena-room-grid,
.public-body .vilena-booking-room-grid,
.public-body .vilena-why,
.public-body .vilena-packages {
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
}

.public-body.public-template-elevation .vilena-about {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    width: auto;
}

.public-body .vilena-booking-panel {
    border-left: 0;
    border-right: 0;
    max-width: none;
    width: 100%;
}

.vilena-page-hero {
    min-height: 360px;
    margin-bottom: 26px;
}

.vilena-hero-copy {
    max-width: 660px;
}

.vilena-kicker {
    color: #d7a85b;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.vilena-kicker.dark {
    color: #8f5d27;
}

.vilena-hero h1,
.vilena-page-hero h1 {
    color: inherit;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.98;
    margin: 0 0 18px;
    max-width: 760px;
}

.vilena-page-hero h1 {
    font-size: 52px;
}

.vilena-hero p,
.vilena-page-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 700;
    max-width: 610px;
}

.vilena-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.vilena-booking-panel {
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(63, 38, 24, 0.16);
    margin: -64px auto 62px;
    max-width: 1060px;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.vilena-booking-panel form {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto auto;
}

.vilena-booking-panel label {
    color: #2b1d17;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    text-transform: uppercase;
}

.vilena-booking-panel input,
.vilena-booking-room-card .booking-form input {
    background: #fbf8f2;
    border: 1px solid #dfc8ab;
    border-radius: 0;
    min-height: 46px;
    padding: 9px 11px;
}

.vilena-about {
    align-items: stretch;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    margin-bottom: 64px;
}

.vilena-about-copy {
    background: #ffffff;
    padding: 42px;
}

.vilena-about h2,
.vilena-section-head h2,
.vilena-packages h2,
.vilena-hot-offer h2 {
    color: #2b1d17;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
}

.vilena-about p,
.vilena-room-card p,
.vilena-package-grid p {
    color: #76675f;
    font-weight: 700;
}

.vilena-amenities {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.vilena-amenities span {
    align-items: center;
    background: #f8efe2;
    border-left: 4px solid #a76b2b;
    color: #4b3026;
    display: flex;
    font-weight: 900;
    gap: 10px;
    padding: 16px;
}

.vilena-amenity-icon {
    color: #a76b2b;
    flex: 0 0 20px;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    fill: none;
    width: 20px;
}

.vilena-about-image {
    align-items: end;
    background:
        linear-gradient(180deg, transparent, rgba(26, 18, 13, 0.72)),
        var(--about-image) center / cover no-repeat;
    color: #fff;
    display: flex;
    min-height: 420px;
    padding: 28px;
}

.vilena-about-image span {
    font-size: 28px;
    font-weight: 900;
}

.vilena-section-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin: 0 0 22px;
}

.vilena-section-head.compact {
    margin-bottom: 18px;
}

.vilena-section-head a {
    color: #7b2328;
    font-weight: 900;
}

.vilena-room-grid,
.vilena-booking-room-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vilena-gallery-showcase {
    margin-bottom: 42px;
}

.vilena-photo-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.25fr repeat(2, minmax(0, 0.72fr));
    grid-template-rows: repeat(2, minmax(120px, 190px));
    padding: 0 40px;
}

.vilena-photo-grid figure {
    margin: 0;
    min-height: 0;
    overflow: hidden;
}

.vilena-photo-grid figure:first-child {
    grid-row: span 2;
}

.vilena-photo-grid img {
    box-shadow: 0 18px 42px rgba(63, 38, 24, 0.14);
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

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

.vilena-room-card {
    background: #ffffff;
    border: 0;
    box-shadow: 0 22px 58px rgba(63, 38, 24, 0.12);
    display: grid;
    overflow: hidden;
}

.vilena-room-card > img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.vilena-room-card > div {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.vilena-room-card span {
    color: #a76b2b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.vilena-room-card h2,
.vilena-room-card h3 {
    color: #2b1d17;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.vilena-room-card footer,
.vilena-room-card .room-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.vilena-room-card strong {
    color: #7b2328;
}

.vilena-room-card footer a {
    color: #a76b2b;
    font-weight: 900;
}

.vilena-rooms-showcase {
    background: #f3f3f3;
    padding: 62px 40px 70px;
}

.vilena-pattern-head {
    margin: 0 auto 38px;
    text-align: center;
}

.vilena-pattern-head h2 {
    align-items: center;
    color: #0943A0;
    display: flex;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 900;
    gap: 18px;
    justify-content: center;
    line-height: 1;
    margin: 0 0 28px;
}

.vilena-pattern-head h2::before,
.vilena-pattern-head h2::after {
    background: #0943A0;
    content: "";
    display: block;
    height: 2px;
    width: 68px;
}

.vilena-pattern-head p {
    color: #5e6d7e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 8px;
    margin: 0;
    text-transform: uppercase;
}

.vilena-rooms-showcase .vilena-room-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
    padding-left: 0;
    padding-right: 0;
}

.vilena-rooms-showcase .vilena-room-card {
    box-shadow: none;
}

.vilena-rooms-showcase .vilena-room-card > div {
    padding: 20px;
}

.vilena-rooms-showcase .vilena-room-card h3 {
    color: #0943A0;
    font-size: 18px;
}

.vilena-rooms-showcase .vilena-room-card p {
    color: #777f8d;
    font-size: 13px;
}

.vilena-rooms-showcase .vilena-room-card strong {
    color: #0943A0;
    font-size: 30px;
}

.vilena-rooms-showcase .vilena-room-card footer a {
    border: 1px solid #F4C024;
    color: #F4C024;
    font-size: 13px;
    min-width: 104px;
    padding: 10px 14px;
    text-align: center;
}

.vilena-view-all {
    display: flex;
    margin: 60px auto 0;
    max-width: 210px;
    min-height: 62px;
}

.rooms-list-pattern-head {
    padding: 54px 20px 36px;
}

.vilena-booking-room-card .public-offer-badge {
    justify-self: start;
}

.vilena-booking-room-card .booking-form {
    background: #f8efe2;
    border: 1px solid #ead8c0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
}

.vilena-why {
    display: grid;
    gap: 22px;
    margin: 58px 0;
}

.vilena-why-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vilena-why-grid article,
.vilena-package-grid article {
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(63, 38, 24, 0.1);
    padding: 26px;
}

.vilena-why span {
    color: #d7a85b;
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.vilena-why h3,
.vilena-package-grid h3 {
    color: #2b1d17;
    font-size: 22px;
    font-weight: 900;
}

.vilena-testimonials {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 48px;
    padding: 0 40px;
}

.vilena-testimonial-intro {
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(63, 38, 24, 0.12);
    padding: 34px;
}

.vilena-testimonial-intro h2 {
    color: #2b1d17;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
}

.vilena-testimonial-intro p,
.vilena-testimonial-card p {
    color: #76675f;
    font-weight: 700;
}

.vilena-testimonial-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vilena-google-reviews-widget {
    min-width: 0;
    width: 100%;
}

.vilena-google-reviews-head {
    margin: 0 0 22px;
    text-align: center;
}

.vilena-google-reviews-head h2 {
    color: #2b1d17;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.22;
    margin: 0 0 8px;
}

.vilena-google-reviews-head p {
    color: #76675f;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.vilena-testimonial-card {
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(63, 38, 24, 0.1);
    display: grid;
    gap: 16px;
    padding: 28px;
}

.vilena-stars {
    color: #c99a3d;
    font-size: 15px;
    letter-spacing: 0.12em;
}

.vilena-testimonial-card footer {
    border-top: 1px solid rgba(167, 107, 43, 0.18);
    padding-top: 16px;
}

.vilena-testimonial-card strong {
    color: #2b1d17;
    display: block;
    font-weight: 900;
}

.vilena-testimonial-card span {
    color: #a76b2b;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-top: 3px;
    text-transform: uppercase;
}

.vilena-places {
    margin-bottom: 54px;
}

.vilena-place-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 40px;
}

.vilena-place-card {
    align-items: end;
    background:
        linear-gradient(180deg, rgba(9, 67, 160, 0.18), rgba(9, 67, 160, 0.72)),
        var(--place-image) center / cover no-repeat;
    color: #ffffff;
    display: flex;
    min-height: 390px;
    overflow: hidden;
    padding: 30px;
}

.vilena-place-card h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
}

.vilena-place-card p {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.vilena-place-card strong {
    color: #ffffff;
    display: block;
    font-size: 28px;
    font-weight: 900;
    margin-top: 20px;
}

.vilena-packages {
    margin-bottom: 48px;
}

.vilena-package-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vilena-package-grid strong {
    color: #7b2328;
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.vilena-hot-offer {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(123, 35, 40, 0.95), rgba(123, 35, 40, 0.74)),
        var(--offer-image, url('/assets/img/resort/front-night-entry.jpeg')) center / cover no-repeat;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    margin: 0;
    max-width: none;
    padding: 40px;
    width: 100%;
}

.vilena-hot-offer h2,
.vilena-hot-offer p {
    color: #ffffff;
}

.public-body .button {
    background: #0943A0;
    border-color: #0943A0;
    border-radius: 0;
    color: #ffffff;
    letter-spacing: 0;
}

.public-body .button.ghost {
    background: transparent;
    border-color: #F4C024;
    color: #F4C024;
}

.vilena-hero,
.vilena-page-hero {
    isolation: isolate;
    position: relative;
}

.vilena-hero::before,
.vilena-page-hero::before {
    animation: vilenaHeroZoom 18s ease-in-out infinite alternate;
    background: var(--hero-image) center / cover no-repeat;
    content: "";
    inset: 0;
    position: absolute;
    transform: scale(1.02);
    z-index: -2;
}

.vilena-hero::after,
.vilena-page-hero::after {
    background:
        radial-gradient(circle at 78% 32%, rgba(244, 192, 36, 0.2), transparent 18rem),
        linear-gradient(90deg, rgba(9, 67, 160, 0.86), rgba(9, 67, 160, 0.48) 46%, rgba(8, 27, 49, 0.24));
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.vilena-hero > *,
.vilena-page-hero > * {
    position: relative;
    z-index: 1;
}

.vilena-hero-gallery {
    align-items: end;
    bottom: 44px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 104px);
    position: absolute;
    right: 48px;
    z-index: 2;
}

.vilena-hero-gallery span {
    animation: vilenaGalleryFloat 4s ease-in-out infinite;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(180deg, transparent, rgba(8, 27, 49, 0.34)),
        var(--gallery-image) center / cover no-repeat;
    border: 3px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 44px rgba(8, 27, 49, 0.35);
    display: block;
}

.vilena-hero-gallery span:nth-child(2) {
    animation-delay: 0.45s;
    margin-bottom: 34px;
}

.vilena-hero-gallery span:nth-child(3) {
    animation-delay: 0.9s;
    margin-bottom: 12px;
}

@keyframes vilenaHeroZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.12);
    }
}

@keyframes vilenaGalleryFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.public-contact-strip {
    background: #0943A0;
    color: #ffffff;
}

.public-body .brand-mark {
    background: #0943A0;
    color: #F4C024;
}

.public-body .app-navbar .nav-link:hover,
.public-body .app-navbar .nav-link:focus {
    background: #fff8dc;
    color: #0943A0;
}

.vilena-kicker,
.public-kicker {
    color: #F4C024;
}

.vilena-kicker.dark {
    color: #0943A0;
}

.vilena-booking-panel,
.public-booking-band {
    border-top: 4px solid #F4C024;
}

.vilena-booking-panel label,
.public-booking-band label,
.public-room-card .room-footer strong,
.vilena-room-card strong,
.vilena-room-card footer a,
.public-section-head a {
    color: #0943A0;
}

.vilena-amenities span {
    border-left-color: #F4C024;
    color: #0943A0;
}

.public-offer-badge,
.offer-badge {
    background: #F4C024;
    color: #07306f;
}

.vilena-hot-offer,
.public-hot-offer {
    background:
        linear-gradient(90deg, rgba(11, 79, 138, 0.95), rgba(11, 79, 138, 0.72)),
        var(--offer-image, url('/assets/img/resort/front-night-entry.jpeg')) center / cover no-repeat;
}

.public-footer {
    background: #07306f;
}

@media (max-width: 1024px) {
    .vilena-room-grid,
    .vilena-booking-room-grid,
    .vilena-photo-grid,
    .vilena-testimonials,
    .vilena-package-grid,
    .vilena-place-grid,
    .vilena-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vilena-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .vilena-booking-panel form,
    .vilena-about {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .vilena-hero-gallery {
        bottom: 22px;
        gap: 8px;
        grid-template-columns: repeat(3, 74px);
        right: 22px;
    }

    .vilena-hero,
    .vilena-page-hero {
        min-height: 430px;
        padding: 54px 28px;
    }

    .vilena-hero h1,
    .vilena-page-hero h1 {
        font-size: 42px;
    }

    .vilena-section-head,
    .vilena-hot-offer {
        align-items: flex-start;
        display: grid;
        gap: 16px;
    }

    .vilena-room-grid,
    .vilena-booking-room-grid,
    .vilena-photo-grid,
    .vilena-testimonials,
    .vilena-package-grid,
    .vilena-place-grid,
    .vilena-why-grid,
    .vilena-amenities {
        grid-template-columns: 1fr;
    }

    .vilena-booking-room-card .booking-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .vilena-hero-gallery {
        display: none;
    }

    .public-body .public-offer-strip,
    .public-body .vilena-about,
    .public-body .vilena-section-head,
    .public-body .vilena-room-grid,
    .public-body .vilena-booking-room-grid,
    .vilena-photo-grid,
    .vilena-testimonials,
    .vilena-place-grid,
    .public-body .vilena-why,
    .public-body .vilena-packages {
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
    }

    .public-body .vilena-booking-panel,
    .vilena-hot-offer {
        width: 100%;
    }

    .vilena-hero,
    .vilena-page-hero {
        min-height: 380px;
        padding: 40px 18px;
    }

    .vilena-hero h1,
    .vilena-page-hero h1,
    .vilena-about h2,
    .vilena-section-head h2,
    .vilena-packages h2,
    .vilena-hot-offer h2 {
        font-size: 32px;
    }

    .vilena-booking-panel {
        margin-top: -38px;
        padding: 16px;
    }

    .vilena-about-copy,
    .vilena-hot-offer {
        padding: 24px;
    }
}

@media (max-width: 1024px) {
    .public-room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-booking-band form,
    .public-about {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .public-hero,
    .public-page-hero {
        min-height: 420px;
        padding: 54px 28px;
    }

    .public-hero h1,
    .public-page-hero h1 {
        font-size: 40px;
    }

    .public-booking-band {
        margin-top: -34px;
    }

    .public-section-head,
    .public-hot-offer {
        align-items: flex-start;
        display: grid;
        gap: 16px;
    }

    .public-room-grid,
    .public-amenities,
    .public-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .public-contact-strip {
        justify-content: flex-start;
    }

    .public-hero,
    .public-page-hero {
        min-height: 360px;
        padding: 42px 20px;
    }

    .public-hero h1,
    .public-page-hero h1 {
        font-size: 34px;
    }

    .public-booking-band {
        margin-bottom: 30px;
        padding: 14px;
    }

    .public-about h2,
    .public-section-head h2,
    .public-hot-offer h2 {
        font-size: 28px;
    }

    .public-footer {
        padding: 30px 18px;
    }
}

.alert {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.page-alert {
    margin: 0 0 18px;
}

.page-alert-maroon {
    color: #7f1d1d;
    font-weight: 900;
}

.add-room-page {
    display: grid;
    gap: 0;
}

.add-room-hero {
    align-items: center;
    background:
        linear-gradient(135deg, #0d1b2a 0%, #0f766e 100%);
    border-radius: 24px 24px 0 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    min-height: 190px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.add-room-hero::after {
    background:
        linear-gradient(135deg, transparent 0 30%, rgba(255, 255, 255, 0.14) 30% 31%, transparent 31% 100%),
        radial-gradient(circle at 88% 10%, rgba(217, 164, 65, 0.34), transparent 15rem);
    content: "";
    inset: 0;
    opacity: 0.55;
    pointer-events: none;
    position: absolute;
}

.add-room-hero > * {
    position: relative;
    z-index: 1;
}

.add-room-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.05;
    margin: 6px 0 10px;
}

.add-room-hero p:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin: 0;
    max-width: 580px;
}

.add-room-hero .eyebrow {
    color: #f5d48a;
}

.add-room-panel {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #cbd5e1;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    color: #111827;
}

.form-section-title {
    align-items: center;
    background: linear-gradient(90deg, #e2e8f0, #f8fafc);
    border: 1px solid #94a3b8;
    border-left: 5px solid #0f172a;
    border-radius: 12px;
    color: #0f172a;
    display: flex;
    font-size: 13px;
    font-weight: 900;
    gap: 12px;
    letter-spacing: 0;
    margin: 22px 0 12px;
    padding: 11px 13px;
    text-transform: uppercase;
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-section-title::after {
    background: linear-gradient(90deg, #0f172a, rgba(15, 23, 42, 0));
    content: "";
    flex: 1;
    height: 2px;
}

.add-room-form .form-label {
    color: #1f2937;
    font-size: 14px;
    font-weight: 900;
}

.add-room-form .form-control,
.add-room-form .form-select {
    background: #ffffff;
    border: 2px solid #1f2937;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    color: #0f172a;
    min-height: 48px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.add-room-form .form-control:focus,
.add-room-form .form-select:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.16), 0 12px 26px rgba(15, 23, 42, 0.12);
}

.add-room-form .form-text {
    color: #64748b;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--luxury-teal), var(--luxury-teal-dark));
    border: 0;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.28);
    color: #fff;
    font-weight: 800;
    min-height: 46px;
}

.btn-luxury:hover,
.btn-luxury:focus {
    background: linear-gradient(135deg, #12877f, #083f3b);
    color: #fff;
}

.btn-soft {
    background: #e2e8f0;
    border: 1px solid #94a3b8;
    border-radius: 12px;
    color: #0f172a;
    font-weight: 800;
    min-height: 46px;
}

.btn-soft:hover,
.btn-soft:focus {
    background: #cbd5e1;
    border-color: #64748b;
    color: #0f172a;
}

.panel,
.room-card,
.stat {
    border: 0;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

.table-wrap {
    background: #fff;
    border-radius: 16px;
}

.admin-shell {
    display: grid;
    gap: 24px;
    grid-template-columns: 280px minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1480px;
    padding: 28px 24px 56px;
}

.admin-sidebar {
    align-self: start;
    background:
        linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.96)),
        #0d1b2a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(13, 27, 42, 0.18);
    min-height: calc(100vh - 112px);
    padding: 22px;
    position: sticky;
    top: 88px;
}

.admin-mobile-menu-button,
.admin-sidebar-mobile-head,
.admin-sidebar-backdrop {
    display: none;
}

.sidebar-title {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 6px 8px 12px;
    text-transform: uppercase;
}

.sidebar-link {
    align-items: center;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    font-weight: 800;
    gap: 12px;
    margin-bottom: 8px;
    min-height: 48px;
    padding: 10px 12px;
    text-decoration: none;
}

.admin-sidebar > .sidebar-link {
    background: rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: inset 3px 0 0 var(--luxury-gold);
    color: #fff;
    margin-bottom: 8px;
    min-height: 58px;
    padding-left: 12px;
    padding-right: 8px;
}

.sidebar-link:hover,
.sidebar-link:focus,
.sidebar-link.active {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.sidebar-link.active {
    box-shadow: inset 3px 0 0 var(--luxury-gold);
}

.sidebar-link.disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.sidebar-link.disabled:hover {
    background: transparent;
}

.sidebar-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #f5d48a;
    display: inline-flex;
    flex: 0 0 34px;
    font-size: 13px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.sidebar-menu-group {
    border-radius: 0;
    margin-bottom: 8px;
}

.sidebar-menu-group.active {
    background: transparent;
}

.sidebar-menu-head {
    align-items: center;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: inset 3px 0 0 var(--luxury-gold);
    color: #fff;
    display: grid;
    font-weight: 900;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 58px;
    padding: 10px 10px 10px 12px;
    text-transform: uppercase;
}

.sidebar-menu-head small {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 900;
    min-width: 22px;
    padding: 3px 7px;
    text-align: center;
}

.sidebar-submenu {
    display: grid;
    gap: 4px;
    padding: 10px 8px 2px 18px;
}

.sidebar-submenu-link {
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.68);
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    padding: 7px 9px;
}

.sidebar-submenu-link:hover,
.sidebar-submenu-link:focus,
.sidebar-submenu-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.sidebar-menu-group:first-of-type .sidebar-submenu-link {
    color: rgba(255, 255, 255, 0.68);
}

.admin-content {
    margin: 0;
    max-width: none;
    padding: 0;
}

.admin-menu-head {
    margin-bottom: 16px;
}

.admin-menu-head h1 {
    color: #243041;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 4px;
}

.admin-menu-head p {
    color: #50647d;
    font-size: 14px;
    margin: 0;
}

.admin-menu-grid {
    column-count: 3;
    column-gap: 14px;
    display: block;
}

.admin-menu-card {
    background: #fff;
    border: 1px solid #dce6f1;
    border-radius: 8px;
    break-inside: avoid;
    display: inline-block;
    margin: 0 0 14px;
    overflow: hidden;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    width: 100%;
}

.admin-menu-card-head {
    align-items: center;
    border-bottom: 1px solid #dce6f1;
    display: grid;
    gap: 10px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 52px;
    padding: 11px 12px;
}

.admin-menu-card-head h2 {
    color: #8b0000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.admin-menu-icon,
.admin-menu-item-icon {
    align-items: center;
    background: #e4f6f2;
    border-radius: 8px;
    color: #0596a1;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.admin-menu-count {
    background: #f8fafc;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    min-width: 22px;
    padding: 4px 7px;
    text-align: center;
}

.admin-menu-list {
    display: flex;
    flex-direction: column;
}

.admin-menu-item {
    align-items: center;
    color: #0f172a;
    display: grid;
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    min-height: 68px;
    padding: 12px;
    text-decoration: none;
}

.admin-menu-item + .admin-menu-item {
    border-top: 1px solid #e8eef5;
}

.admin-menu-item:hover,
.admin-menu-item:focus {
    background: #f8fbfc;
}

.admin-menu-item-copy {
    display: block;
    min-width: 0;
}

.admin-menu-item-copy strong {
    color: #021127;
    display: block;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3px;
}

.admin-menu-item-copy small {
    color: #50647d;
    display: block;
    font-size: 12px;
    line-height: 1.3;
}

.admin-menu-arrow {
    color: #8aa0b8;
    font-size: 24px;
    line-height: 1;
}

.future-menu-card {
    background: #fbfdfd;
    border: 1px solid #dce8e8;
    border-radius: 18px;
    height: 100%;
    padding: 20px;
}

.future-menu-card span {
    align-items: center;
    background: linear-gradient(135deg, var(--luxury-teal), var(--luxury-teal-dark));
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    margin-bottom: 14px;
    width: 38px;
}

.future-menu-card strong {
    display: block;
    margin-bottom: 8px;
}

.future-menu-card p {
    color: var(--luxury-muted);
    margin: 0;
}

.menu-page-head {
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.94)),
        #0d1b2a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(13, 27, 42, 0.14);
    margin-top: 0;
    padding: 22px;
}

.menu-page-head h1,
.menu-page-head .eyebrow,
.menu-page-head .muted {
    color: #ffffff;
}

.menu-page-head .muted {
    opacity: 0.78;
}

.food-menu-panel {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.food-menu-panel-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.food-menu-panel-head h2 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin: 2px 0 0;
}

.food-menu-panel-head > span {
    background: #eef6f5;
    border: 1px solid #c6e2dd;
    border-radius: 999px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.food-menu-form,
.food-menu-edit {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, 1fr)) auto;
}

.food-menu-form label,
.food-menu-edit label {
    color: #334155;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
    margin: 0;
}

.food-menu-form input,
.food-menu-form select,
.food-menu-edit input,
.food-menu-edit select {
    background: #fbfdff;
    border: 2px solid #1f2937;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 44px;
    padding: 8px 10px;
    width: 100%;
}

.food-menu-submit {
    align-self: end;
    min-height: 44px;
}

.food-menu-list {
    display: grid;
    gap: 12px;
}

.food-menu-empty,
.food-menu-item {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.food-menu-empty {
    padding: 26px;
    text-align: center;
}

.food-menu-empty h2 {
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.food-menu-empty p {
    color: #64748b;
    font-weight: 700;
    margin: 0;
}

.food-menu-item {
    padding: 14px;
}

.food-menu-view {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) auto auto;
}

.food-menu-view span,
.food-menu-price span {
    color: #64748b;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.food-menu-view strong {
    color: #0f172a;
    display: block;
    font-size: 17px;
    font-weight: 900;
}

.food-menu-price {
    text-align: right;
}

.food-menu-price strong {
    color: #0f766e;
    font-size: 18px;
}

.food-menu-status {
    border-radius: 999px;
    margin-top: 4px;
    padding: 3px 8px;
}

.food-menu-status.is-active {
    background: #dcfce7;
    color: #166534;
}

.food-menu-status.is-inactive {
    background: #fee2e2;
    color: #991b1b;
}

.food-menu-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.food-menu-actions form {
    margin: 0;
}

.food-menu-edit[hidden] {
    display: none;
}

.gallery-page-head {
    align-items: flex-end;
}

.gallery-upload-panel {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.2fr);
    margin-bottom: 18px;
}

.gallery-upload-panel h2,
.gallery-list-head h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    margin: 2px 0 0;
}

.gallery-upload-form {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.gallery-upload-form label,
.gallery-edit-form label {
    color: #334155;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    margin: 0;
}

.gallery-upload-form input,
.gallery-edit-form input {
    border: 1px solid #9fb6c8;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 40px;
    padding: 8px 10px;
    width: 100%;
}

.gallery-list-section {
    display: grid;
    gap: 14px;
}

.gallery-list-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.gallery-list-head > span {
    background: #eaf5f3;
    border: 1px solid #c6e2dd;
    border-radius: 999px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card,
.gallery-empty {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.gallery-card {
    display: grid;
    gap: 12px;
    padding: 12px;
}

.gallery-thumb {
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery-edit-form {
    display: grid;
    gap: 10px;
}

.gallery-meta,
.gallery-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-meta span {
    background: #f1f5f9;
    border-radius: 999px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 8px;
}

.gallery-actions .action-btn,
.gallery-delete-form .action-btn {
    flex: 1 1 120px;
}

.gallery-delete-form {
    margin: 0;
}

.gallery-delete-form .action-btn {
    width: 100%;
}

.gallery-empty {
    padding: 28px;
    text-align: center;
}

.gallery-empty h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 6px;
}

.gallery-empty p {
    color: #64748b;
    font-weight: 800;
    margin: 0;
}

.offers-page-head {
    align-items: flex-end;
}

.offer-form-panel {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.offer-form-panel h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    margin: 2px 0 0;
}

.offer-form,
.offer-edit-form {
    display: grid;
    gap: 12px;
}

.offer-form {
    align-items: end;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.offer-edit-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-wide {
    grid-column: span 2;
}

.offer-form label,
.offer-edit-form label {
    color: #334155;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    margin: 0;
}

.offer-form input,
.offer-form select,
.offer-edit-form input,
.offer-edit-form select {
    border: 1px solid #9fb6c8;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 40px;
    padding: 8px 10px;
    width: 100%;
}

.offer-submit {
    align-self: end;
}

.offer-list-section {
    display: grid;
    gap: 14px;
}

.offer-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
    display: grid;
    gap: 12px;
    padding: 14px;
}

.offer-card-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.offer-badge {
    background: #dc2626;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.offer-delete-form {
    margin: 0;
}

.offer-delete-form .action-btn,
.offer-edit-form > .action-btn {
    width: 100%;
}

.inventory-summary {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
    display: grid;
    gap: 16px;
    grid-template-columns: 170px 170px 1fr;
    margin-bottom: 22px;
    padding: 18px 22px;
}

.inventory-summary span,
.stat small {
    color: var(--luxury-muted);
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.inventory-summary strong {
    color: var(--luxury-ink);
    display: block;
    font-size: 32px;
    line-height: 1;
}

.inventory-summary p {
    color: var(--luxury-muted);
    margin: 0;
}

.floor-group {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
    margin-bottom: 22px;
    overflow: hidden;
}

.floor-group-head {
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(15, 118, 110, 0.9));
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 22px 24px;
}

.floor-group-head h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 4px 0 0;
}

.floor-group-head .eyebrow {
    color: #f5d48a;
}

.floor-group-head span {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-weight: 800;
    padding: 8px 14px;
}

.floor-group .table-wrap {
    border-radius: 0;
}

.table-actions,
.action-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
}

.actions-cell {
    text-align: right;
}

.actions-cell .action-group {
    justify-content: flex-end;
}

.booking-action-group {
    flex-wrap: wrap;
}

.booking-list-table thead th {
    background: #334155;
    color: #FFFFFF;
}

.booking-list-table tbody tr:nth-child(even) {
    background: #EBEBEF;
}

.booking-list-table .col-booking-sno {
    width: 52px;
}

.booking-list-table .col-booking-guest {
    width: 190px;
}

.booking-list-table .col-booking-room {
    width: 170px;
}

.booking-list-table .col-booking-stay {
    width: 170px;
}

.booking-list-table .col-booking-status {
    width: 130px;
}

.booking-list-table .col-booking-actions {
    width: 210px;
}

.booking-list-shell {
    background: #FFFFFF;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    overflow: hidden;
}

.booking-list-title {
    align-items: center;
    background: #FFFFFF;
    border-bottom: 1px solid #d8e3ea;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
}

.booking-list-title h1 {
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
    margin: 0;
}

.booking-list-title p {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    margin: 2px 0 0;
}

.booking-list-title > span {
    background: #eaf5f3;
    border: 1px solid #c6e2dd;
    border-radius: 999px;
    color: #0f766e;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 8px;
}

.booking-list-filters {
    align-items: end;
    background: #FFFFFF;
    border-bottom: 1px solid #d8e3ea;
    display: grid;
    gap: 8px;
    grid-template-columns: 1.1fr 1.1fr 1.1fr auto auto;
    padding: 10px 12px;
}

.booking-list-filters.checked-out-filters {
    grid-template-columns: 1fr 1fr 1fr minmax(180px, 1.4fr) 1fr auto auto;
}

.booking-list-filters.revenue-filters {
    grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) minmax(170px, 1fr) auto;
}

.revenue-quick-ranges {
    display: grid;
    gap: 8px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(116px, max-content));
    justify-content: start;
}

.revenue-quick-ranges .button {
    min-width: 116px;
}

.booking-list-filters label {
    color: #334155;
    display: grid;
    font-size: 11px;
    font-weight: 900;
    gap: 5px;
}

.booking-list-filters input,
.booking-list-filters select {
    background: #FFFFFF;
    border: 1px solid #9fb6c8;
    border-radius: 5px;
    font: inherit;
    min-height: 34px;
    padding: 6px 8px;
}

.booking-clear-btn {
    background: #f8fafc;
    color: #334155;
}

.booking-quick-filters {
    background: #fff;
    border-bottom: 1px solid #d8e3ea;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 12px;
}

.booking-quick-filters a {
    background: #f1f5f9;
    border: 1px solid #d8e3ea;
    border-radius: 5px;
    color: #0f172a;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 8px;
    text-decoration: none;
}

.booking-quick-filters a.is-active {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}

.booking-list-wrap {
    border-radius: 0;
}

.booking-list-table th,
.booking-list-table td {
    font-size: 12px;
    padding: 9px 10px;
    vertical-align: middle;
}

.booking-list-table {
    font-size: 12px;
}

.booking-list-table tbody td,
.booking-list-table tbody td strong,
.booking-list-table tbody td span,
.booking-list-table .booking-id-link,
.booking-list-table .muted {
    font-size: 14px;
}

.booking-id-link {
    color: #2563eb;
    font-size: 11px;
    font-weight: 900;
}

.booking-room-pill,
.booking-status-pill {
    border-radius: 999px;
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    margin-top: 4px;
    padding: 4px 6px;
    text-transform: capitalize;
}

.booking-room-pill {
    background: #e0f2fe;
    color: #075985;
}

.booking-status-pill {
    background: #fee2e2;
    color: #b91c1c;
}

.booking-status-pill.is-checked-in {
    background: #dcfce7;
    color: #15803d;
}

.booking-status-pill.is-confirmed {
    background: #dbeafe;
    color: #1d4ed8;
}

.booking-status-pill.is-enquiry {
    background: #fef3c7;
    color: #92400e;
}

.booking-status-pill.is-active {
    background: #dcfce7;
    color: #15803d;
}

.booking-status-pill.is-logged-out {
    background: #dbeafe;
    color: #1d4ed8;
}

.booking-status-pill.is-session-expired {
    background: #fef3c7;
    color: #92400e;
}

.security-activity-table {
    min-width: 1180px;
}

.security-toggle-row {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #d9dee7;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px;
}

.security-toggle-row strong,
.security-toggle-row small {
    display: block;
}

.security-toggle-row strong {
    color: #18202a;
    font-size: 15px;
}

.security-toggle-row small {
    color: #667085;
    margin-top: 3px;
}

.security-toggle-row input {
    opacity: 0;
    position: absolute;
}

.security-toggle-ui {
    align-items: center;
    background: #e5e7eb;
    border-radius: 999px;
    color: #475467;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 900;
    justify-content: flex-start;
    min-width: 82px;
    padding: 4px;
}

.security-toggle-ui::before {
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
    content: "";
    height: 24px;
    width: 24px;
}

.security-toggle-ui span {
    padding: 0 9px;
}

.security-toggle-row input:checked + .security-toggle-ui {
    background: #0f766e;
    color: #ffffff;
    justify-content: flex-end;
}

.booking-list-actions {
    display: grid;
    gap: 5px;
    justify-items: end;
}

.booking-action-note {
    color: #b91c1c;
    font-size: 10px;
    font-weight: 800;
}

.booking-pagination {
    align-items: center;
    background: #334155;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
}

.booking-pagination span {
    font-size: 11px;
    font-weight: 800;
}

.booking-pagination div {
    display: flex;
    gap: 3px;
}

.booking-pagination a {
    background: #e2e8f0;
    color: #0f172a;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 7px;
    text-decoration: none;
}

.booking-pagination a.is-active {
    background: #dc2626;
    color: #fff;
}

.booking-pagination a.is-disabled {
    color: #94a3b8;
    pointer-events: none;
}

.table-actions form,
.action-group form,
.booking-list-actions form {
    margin: 0;
}

.unit-title {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.bedroom-count-cell {
    text-align: center;
}

.unit-meta {
    color: var(--luxury-teal-dark);
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.occupancy-line {
    display: block;
}

.action-btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    min-height: 34px;
    padding: 8px 9px;
    text-decoration: none;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
    white-space: nowrap;
}

.action-btn:hover,
.action-btn:focus {
    transform: translateY(-1px);
}

.action-view {
    background: #edf7f7;
    border-color: #cce5e3;
    color: #0b4f4a;
}

.action-view:hover,
.action-view:focus {
    background: #dff1f0;
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.16);
    color: #083f3b;
}

.action-edit {
    background: #fff7e6;
    border-color: #f2d38d;
    color: #7a4b00;
}

.action-edit:hover,
.action-edit:focus {
    background: #ffefc7;
    box-shadow: 0 8px 18px rgba(217, 164, 65, 0.2);
    color: #633d00;
}

.action-delete {
    background: #fff1f0;
    border-color: #f4b4ad;
    color: #b42318;
}

.action-delete:hover,
.action-delete:focus {
    background: #ffe3e0;
    box-shadow: 0 8px 18px rgba(180, 35, 24, 0.16);
    color: #991b12;
}

.action-checkin {
    background: #ecfdf5;
    border-color: #bbf7d0;
    color: #15803d;
}

.action-checkin:hover,
.action-checkin:focus {
    background: #dcfce7;
    box-shadow: 0 8px 18px rgba(21, 128, 61, 0.16);
    color: #166534;
}

.action-checkout {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.action-checkout:hover,
.action-checkout:focus {
    background: #dbeafe;
    box-shadow: 0 8px 18px rgba(29, 78, 216, 0.16);
    color: #1e40af;
}

.action-btn.is-disabled {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    pointer-events: none;
}

.room-preview {
    background: #eef4f4;
    border: 1px solid #dbe8e8;
    border-radius: 20px;
    min-height: 300px;
    overflow: hidden;
}

.room-preview img {
    display: block;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    width: 100%;
}

.room-preview-empty {
    align-items: center;
    color: var(--luxury-muted);
    display: flex;
    font-weight: 800;
    justify-content: center;
    min-height: 300px;
}

.detail-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid div,
.description-panel {
    background: #fbfdfd;
    border: 1px solid #dce8e8;
    border-radius: 16px;
    padding: 16px;
}

.detail-grid span,
.description-panel span {
    color: var(--luxury-muted);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.detail-grid strong {
    color: var(--luxury-ink);
    font-size: 18px;
}

.description-panel p {
    margin: 0;
}

.rate-layout {
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
}

.rate-bulk-form {
    background: #fbfdfd;
    border: 1px solid #dce8e8;
    border-radius: 20px;
    padding: 22px;
}

.rate-bulk-form .form-section-title {
    background: linear-gradient(90deg, rgba(15, 118, 110, 0.1), transparent);
    border-radius: 12px;
    padding: 10px 12px;
}

.rate-bulk-form .form-label,
.rate-mini-card label {
    color: #2d3748;
    font-size: 13px;
    font-weight: 800;
}

.rate-bulk-form .form-control,
.rate-bulk-form .form-select,
.rate-mini-card .form-control {
    background: #fff;
    border-color: #6b7280;
    border-radius: 12px;
    min-height: 44px;
}

.date-range-picker {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.date-range-field {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 251, 0.96));
    border: 1px solid #d4e0e7;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
    padding: 14px;
}

.date-range-field span {
    background: #e8f8f7;
    border-radius: 999px;
    color: var(--luxury-teal-dark);
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 4px 9px;
    text-transform: uppercase;
}

.date-range-field label {
    color: #1f2937;
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.date-range-field input {
    background: #fff;
    border: 1px solid #6b7280;
    border-radius: 12px;
    color: var(--luxury-ink);
    font: inherit;
    font-weight: 800;
    min-height: 46px;
    padding: 9px 11px;
    width: 100%;
}

.date-range-field input:focus {
    border-color: var(--luxury-teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
    outline: 0;
}

.date-range-arrow {
    align-self: center;
    background: linear-gradient(135deg, var(--luxury-teal), var(--luxury-teal-dark));
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
    text-transform: uppercase;
}

.rate-mini-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rate-mini-card {
    background: #fff;
    border: 1px solid #dce8e8;
    border-radius: 16px;
    padding: 14px;
}

.rate-mini-card strong {
    display: block;
    margin-bottom: 10px;
}

.rate-mini-card label {
    display: block;
    margin: 8px 0 5px;
}

.rate-calendar-card {
    background: #ffffff;
    border: 1px solid #dce8e8;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
    min-width: 0;
    overflow: hidden;
}

.rate-calendar-head {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(217, 164, 65, 0.24), transparent 18rem),
        linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(15, 118, 110, 0.94));
    color: #fff;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 24px;
}

.rate-calendar-head h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 4px 0 0;
}

.calendar-legend {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.calendar-legend span {
    align-items: center;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 7px;
    padding: 7px 10px;
}

.legend-dot {
    border-radius: 999px;
    display: inline-flex;
    height: 9px;
    width: 9px;
}

.legend-dot.today {
    background: #f5d48a;
}

.legend-dot.selected {
    background: #67e8f9;
}

.legend-dot.rated {
    background: #0f766e;
}

.rate-calendar-grid {
    background: #e6eeee;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.rate-calendar-weekdays {
    background: #e6eeee;
}

.rate-calendar-weekdays span {
    background: #f5f9f9;
    color: var(--luxury-muted);
    font-size: 12px;
    font-weight: 900;
    padding: 14px 8px;
    text-align: center;
    text-transform: uppercase;
}

.rate-day {
    border: 0;
    background: #fff;
    color: var(--luxury-ink);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 112px;
    padding: 12px;
    position: relative;
    text-align: left;
    transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
    width: 100%;
}

.rate-day:hover,
.rate-day:focus {
    background: #f7fbfb;
    box-shadow: inset 0 0 0 2px rgba(15, 118, 110, 0.2);
    outline: 0;
}

.rate-day.muted-day {
    background: #f4f6f6;
    color: #98a2b3;
}

.rate-day.has-rate {
    background:
        linear-gradient(180deg, rgba(239, 250, 248, 0.95), #ffffff);
    box-shadow: inset 0 0 0 2px rgba(15, 118, 110, 0.18);
}

.rate-day.is-today {
    box-shadow: inset 0 0 0 2px rgba(217, 164, 65, 0.72);
}

.rate-day.in-range {
    background: #e8f8f7;
}

.rate-day.range-start,
.rate-day.range-end {
    background: linear-gradient(135deg, #0f766e, #0b4f4a);
    color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.rate-day.range-start small,
.rate-day.range-end small,
.rate-day.range-start p,
.rate-day.range-end p {
    color: rgba(255, 255, 255, 0.82);
}

.rate-day-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.rate-day-top strong {
    align-items: center;
    background: rgba(13, 27, 42, 0.07);
    border-radius: 12px;
    display: inline-flex;
    font-size: 18px;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    padding: 0 8px;
}

.range-start .rate-day-top strong,
.range-end .rate-day-top strong {
    background: rgba(255, 255, 255, 0.18);
}

.day-name {
    color: var(--luxury-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.range-start .day-name,
.range-end .day-name {
    color: rgba(255, 255, 255, 0.78);
}

.rate-day-body {
    margin-top: auto;
}

.rate-pill {
    background: #0f766e;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 5px;
    padding: 6px 9px;
}

.range-start .rate-pill,
.range-end .rate-pill {
    background: rgba(255, 255, 255, 0.18);
}

.rate-day p {
    color: var(--luxury-ink);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
}

.rate-day small {
    color: var(--luxury-muted);
}

.rates-page {
    margin: 0 auto;
    max-width: 1240px;
}

.peak-rate-form {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 300px;
}

.peak-rate-form.per-head-calendar-form {
    grid-template-columns: minmax(0, 1fr);
}

[data-selected-date-fields] {
    display: none;
}

.peak-calendar-shell {
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    grid-column: 1;
    min-width: 0;
    overflow: hidden;
}

.peak-calendar-hero {
    align-items: center;
    background: linear-gradient(100deg, #761221, #202735);
    color: #fff;
    display: grid;
    gap: 20px;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    min-height: 96px;
    padding: 18px 22px;
    text-align: center;
}

.peak-calendar-hero h1 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
    margin: 2px 0 4px;
}

.peak-calendar-hero p:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin: 0;
}

.peak-nav-btn {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 42px;
    font-weight: 300;
    height: 48px;
    justify-content: center;
    line-height: 1;
    width: 48px;
}

.peak-nav-btn:hover,
.peak-nav-btn:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    outline: 0;
}

.peak-calendar-months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.peak-month {
    padding: 26px 22px 22px;
}

.peak-month + .peak-month {
    border-left: 1px solid #e3e8ef;
}

.peak-month h2 {
    color: #8a0611;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 18px;
    text-align: center;
}

.peak-weekdays,
.peak-days {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.peak-weekdays {
    margin-bottom: 12px;
}

.peak-weekdays span {
    color: #687083;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.peak-day,
.peak-day-placeholder {
    aspect-ratio: 1.28;
    display: block;
    min-height: 52px;
}

.peak-day {
    align-items: center;
    background: linear-gradient(180deg, #fbfcfe, #f5f7fa);
    border: 1px solid #dbe3ee;
    border-radius: 11px;
    color: #101828;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    justify-content: center;
    position: relative;
    transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
    width: 100%;
}

.peak-day:hover,
.peak-day:focus {
    border-color: #0f766e;
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.14);
    outline: 0;
    transform: translateY(-1px);
}

.peak-day.is-selected {
    background: #eefcf9;
    border-color: #0f766e;
    box-shadow: inset 0 0 0 1px #0f766e;
    color: #0b5f58;
}

.peak-day.is-today {
    border-color: #d9a441;
}

.peak-day.is-past,
.peak-day:disabled {
    background: #eef2f7;
    border-color: #d8dee8;
    color: #9aa4b2;
    cursor: not-allowed;
    opacity: 0.68;
}

.peak-day.is-past:hover,
.peak-day.is-past:focus,
.peak-day:disabled:hover,
.peak-day:disabled:focus {
    box-shadow: none;
    transform: none;
}

.peak-day i {
    background: #0f766e;
    border-radius: 999px;
    bottom: 8px;
    height: 7px;
    position: absolute;
    right: 9px;
    width: 7px;
}

.peak-day.is-selected i {
    background: #0b5f58;
}

.peak-calendar-footer {
    align-items: center;
    background: #fbfcfe;
    border-top: 1px solid #e3e8ef;
    color: #667085;
    display: flex;
    justify-content: space-between;
    min-height: 66px;
    padding: 18px 24px;
}

.peak-calendar-footer strong {
    font-size: 18px;
}

.selected-date-list {
    align-items: center;
    background: #ffffff;
    border-top: 1px solid #e3e8ef;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 18px;
}

.selected-date-list[hidden] {
    display: none;
}

.selected-date-chip {
    align-items: center;
    background: #eefcf9;
    border: 1px solid #0f766e;
    border-radius: 999px;
    color: #0b5f58;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
    min-height: 34px;
    padding: 6px 10px 6px 12px;
}

.selected-date-chip span {
    align-items: center;
    background: #0f766e;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    height: 18px;
    justify-content: center;
    line-height: 1;
    width: 18px;
}

.upcoming-rates-card {
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    grid-column: 1;
    min-width: 0;
    overflow: hidden;
}

.upcoming-rates-head {
    align-items: center;
    background: #fbfcfe;
    border-bottom: 1px solid #e3e8ef;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 18px 22px;
}

.upcoming-rates-head h2 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin: 2px 0 0;
}

.rate-sort-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.rate-sort-actions span {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rate-sort-actions a {
    background: #0f172a;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    padding: 9px 12px;
}

.rate-sort-actions a:hover,
.rate-sort-actions a:focus {
    background: #0f766e;
    color: #fff;
    outline: 0;
}

.upcoming-rates-table-wrap {
    overflow-x: auto;
}

.upcoming-rates-table {
    border-collapse: collapse;
    margin: 0;
    min-width: 820px;
    width: 100%;
}

.upcoming-rates-table th,
.upcoming-rates-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 13px 16px;
    text-align: left;
    white-space: nowrap;
}

.upcoming-rates-table th {
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.upcoming-rates-table td {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.upcoming-rates-table tbody tr:hover {
    background: #f9fafb;
}

.rate-record-actions {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.rate-record-actions form {
    margin: 0;
}

.rate-view-only {
    background: #eef2f7;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: #64748b;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    min-width: 78px;
    padding: 7px 10px;
    text-transform: uppercase;
}

.rate-edit-row[hidden] {
    display: none;
}

.rate-edit-row td {
    background: #f8fafc;
    padding: 16px;
}

.rate-record-edit-form {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(140px, 1fr)) auto;
}

.rate-record-edit-form label {
    display: grid;
    gap: 6px;
    margin: 0;
}

.rate-record-edit-form span {
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rate-record-edit-form .form-control {
    border-color: #6b7280;
    border-radius: 9px;
    min-height: 42px;
}

.rate-edit-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.empty-upcoming-rates {
    color: #64748b;
    font-weight: 800;
    padding: 22px;
}

.peak-rate-panel {
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    display: grid;
    gap: 14px;
    grid-column: 2;
    grid-row: 1 / span 2;
    padding: 22px;
}

.peak-rate-panel h2 {
    color: var(--luxury-ink);
    font-size: 24px;
    font-weight: 900;
    margin: 2px 0 6px;
}

.peak-rate-panel p:last-child {
    color: var(--luxury-muted);
    margin: 0;
}

.current-rate-summary {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0f766e;
    border-radius: 10px;
    display: grid;
    gap: 6px;
    padding: 12px;
}

.current-rate-summary[hidden] {
    display: none;
}

.current-rate-summary span {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.current-rate-summary strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.peak-rate-panel .form-label {
    color: #2d3748;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: -6px;
}

.peak-rate-panel .form-control,
.peak-rate-panel .form-select {
    border-color: #6b7280;
    border-radius: 10px;
    min-height: 46px;
}

.room-check-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.room-info-list {
    border: 2px solid #1f2937;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding: 10px;
}

.room-info-badge {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    color: #0f172a;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
}

.room-info-badge[hidden] {
    display: none;
}

.room-info-badge input {
    accent-color: #0f766e;
}

.room-info-badge small {
    color: #0f766e;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.room-info-badge.is-unavailable {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #94a3b8;
}

.room-info-badge.is-unavailable small {
    color: #8a0611;
}

.room-info-badge.is-partial {
    background: #fff7ed;
    border-color: #c2410c;
    color: #9a3412;
}

.room-info-badge.is-partial small {
    color: #c2410c;
}

.room-availability-note {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin: -6px 0 0;
}

.rate-ui-modal {
    align-items: center;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 2000;
}

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

.rate-ui-modal-card {
    align-items: start;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.26);
    display: grid;
    gap: 16px;
    grid-template-columns: 44px minmax(0, 1fr);
    max-width: 460px;
    padding: 22px;
    width: min(100%, 460px);
}

.rate-ui-modal-icon {
    align-items: center;
    background: #8a0611;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.rate-ui-modal-card h2 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
}

.rate-ui-modal-card p {
    color: #475569;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

.rate-ui-modal-card .btn {
    grid-column: 2;
    justify-self: end;
    min-width: 92px;
}

.per-head-form {
    display: grid;
    gap: 18px;
}

.per-head-card {
    background: #fff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
}

.per-head-section-title h2 {
    color: #8a0611;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.per-head-section-title p {
    color: #5f7089;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 24px;
}

.per-head-section-title.compact h2 {
    margin-bottom: 18px;
}

.sharing-rent-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(180px, 276px));
}

.sharing-rent-field {
    display: grid;
    gap: 10px;
    margin: 0;
}

.sharing-rent-field > span,
.charge-head-copy strong {
    color: #263247;
    font-size: 18px;
    font-weight: 900;
}

.currency-input {
    align-items: stretch;
    border: 1px solid #cfdae5;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 52px;
    overflow: hidden;
}

.currency-input b {
    align-items: center;
    background: #f8fafc;
    border-right: 1px solid #cfdae5;
    color: #111827;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
}

.currency-input input {
    background: #fbfdff;
    border: 0;
    color: #13263a;
    font-size: 18px;
    min-width: 0;
    outline: 0;
    padding: 0 14px;
}

.currency-input:focus-within {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.per-head-rate-table {
    display: grid;
}

.per-head-rate-head,
.per-head-rate-row {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.95fr) minmax(220px, 0.95fr);
}

.per-head-rate-head {
    background: #344155;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    padding: 20px 10px;
    text-transform: uppercase;
}

.per-head-rate-row {
    align-items: center;
    border-bottom: 1px solid #344155;
    padding: 22px 10px;
}

.per-head-rate-row:nth-child(5) {
    background: #effcff;
}

.charge-head-copy {
    display: grid;
    gap: 4px;
}

.charge-head-copy span {
    color: #5f7089;
    font-size: 16px;
}

.per-head-actions {
    display: flex;
    justify-content: flex-end;
}

.per-head-calendar-panel {
    align-content: start;
    grid-column: 1;
    grid-row: 2;
}

.per-head-calendar-form .per-head-records-card {
    grid-column: 1;
    grid-row: 3;
}

.per-head-calendar-panel > div:first-child {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.per-head-calendar-panel .room-info-list {
    max-height: none;
}

.per-head-calendar-panel {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
}

.per-head-calendar-panel > div:first-child,
.per-head-calendar-panel .per-head-room-selector,
.per-head-calendar-panel .room-availability-note,
.per-head-calendar-panel .per-head-mini-section,
.per-head-calendar-panel > .btn {
    grid-column: 1 / -1;
}

.per-head-room-selector {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
}

.per-head-room-type-field,
.per-head-room-no-field {
    display: grid;
    gap: 8px;
    margin: 0;
}

.per-head-mini-section {
    border-top: 1px solid #e2e8f0;
    display: grid;
    gap: 10px;
    padding-top: 14px;
}

.per-head-calendar-panel .per-head-sharing-section {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.per-head-calendar-panel .per-head-sharing-section h3 {
    grid-column: 1 / -1;
}

.per-head-calendar-panel .per-head-charge-section {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.per-head-calendar-panel .per-head-charge-section h3 {
    grid-column: 1 / -1;
}

.per-head-mini-section h3 {
    color: #8a0611;
    font-size: 16px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.per-head-mini-section label,
.per-head-pair-row label {
    display: grid;
    gap: 5px;
    margin: 0;
}

.per-head-mini-section label span,
.per-head-pair-row label span,
.per-head-record-edit-form label span {
    color: #475569;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.per-head-pair-row {
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    padding: 10px;
}

.per-head-pair-row strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    grid-column: 1 / -1;
}

.per-head-records-table td {
    vertical-align: top;
}

.per-head-record-edit-form {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
}

.per-head-record-edit-form label {
    display: grid;
    gap: 5px;
    margin: 0;
}

.per-head-record-edit-form .rate-edit-actions {
    grid-column: 1 / -1;
}

.settings-panel {
    margin-bottom: 18px;
}

.settings-page-head h1 {
    color: #0f172a;
    font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
    margin: 4px 0 0;
}

.settings-page-head h1::after {
    background: linear-gradient(90deg, #0f172a, #0f766e);
    border-radius: 999px;
    content: "";
    display: block;
    height: 4px;
    margin-top: 10px;
    width: 86px;
}

.user-title-card {
    background: linear-gradient(135deg, #102a43, #0f766e);
    border-radius: 8px;
    color: #ffffff;
    margin-top: 0;
    padding: 20px;
}

.user-title-card .eyebrow,
.user-title-card h1,
.user-title-card .muted {
    color: #ffffff;
}

.user-title-card .button {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
}

.settings-inline-form {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(240px, 1fr) auto;
}

.users-create-form {
    grid-template-columns: minmax(140px, 1fr) minmax(210px, 1.2fr) minmax(140px, 0.8fr) minmax(220px, 1fr) auto;
}

.settings-inline-form label,
.settings-row-form {
    margin: 0;
}

.settings-inline-form label {
    color: #2d3748;
    font-size: 13px;
    font-weight: 900;
}

.settings-inline-form input,
.settings-inline-form select,
.settings-row-form .form-control {
    border: 1px solid #6b7280;
    border-radius: 10px;
    color: var(--luxury-ink);
    font: inherit;
    min-height: 44px;
    padding: 9px 11px;
    width: 100%;
}

.user-account-list {
    display: grid;
    gap: 14px;
}

.user-account-card {
    background: #ffffff;
    border: 1px solid #d9dee7;
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
    padding: 10px 12px;
}

.user-account-head {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.user-account-card .user-account-head {
    display: none;
}

.user-avatar {
    align-items: center;
    background: #0f766e;
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.user-account-head h3,
.user-account-head p {
    margin: 0;
}

.user-account-head h3 {
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.user-account-head p {
    color: var(--luxury-muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.user-edit-form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(130px, 0.9fr) minmax(210px, 1.2fr) minmax(130px, 0.7fr) minmax(220px, 1fr) minmax(112px, auto);
    min-width: 0;
}

.user-edit-form label {
    display: grid;
    gap: 5px;
    margin: 0;
    min-width: 0;
}

.user-edit-form label span {
    color: var(--luxury-muted);
    font-size: 12px;
    font-weight: 800;
}

.user-edit-form input,
.user-edit-form select {
    border: 1px solid #6b7280;
    border-radius: 10px;
    color: var(--luxury-ink);
    font: inherit;
    min-height: 38px;
    padding: 8px 10px;
    width: 100%;
}

.user-password-reset-field {
    grid-column: auto;
}

.user-card-actions {
    align-items: end;
    display: flex;
    justify-content: stretch;
}

.user-card-actions .action-btn {
    min-width: 112px;
    width: 100%;
}

.password-field {
    display: flex;
    gap: 8px;
}

.password-field input {
    flex: 1 1 auto;
    min-width: 0;
}

.password-field button {
    background: #f8fafc;
    border: 1px solid #6b7280;
    border-radius: 10px;
    color: var(--brand-dark);
    cursor: pointer;
    font-weight: 800;
    min-height: 38px;
    padding: 8px 10px;
}

.user-card-status-action {
    align-self: end;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.user-card-status-action .action-btn {
    justify-content: center;
    min-width: 130px;
}

.property-settings-stats .stat small {
    min-height: 38px;
}

.property-settings-form {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.property-settings-form label {
    color: #2d3748;
    font-size: 13px;
    font-weight: 900;
    margin: 0;
}

.property-settings-form input,
.property-settings-form select,
.property-settings-form textarea {
    border: 2px solid #1f2937;
    border-radius: 10px;
    color: var(--luxury-ink);
    font: inherit;
    min-height: 46px;
    padding: 9px 11px;
    width: 100%;
}

.property-settings-form textarea {
    resize: vertical;
}

.property-settings-wide {
    grid-column: 1 / -1;
}

.floor-name-settings {
    display: grid;
    gap: 14px;
}

.floor-name-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.property-settings-actions {
    align-items: end;
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-end;
}

.room-capacity-note {
    color: #f5d48a !important;
    font-size: 14px !important;
    font-weight: 800;
    margin-top: 10px !important;
}

.room-type-list-panel {
    padding: 18px;
}

.room-type-list {
    display: grid;
    gap: 12px;
}

.room-type-item {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px;
}

.room-type-view,
.room-type-edit,
.room-type-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.room-type-view {
    justify-content: space-between;
}

.room-type-view strong {
    color: #0f172a;
    font-size: 16px;
}

.room-type-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.room-type-actions form {
    margin: 0;
}

.room-type-edit {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
}

.room-type-edit[hidden] {
    display: none;
}

.room-type-edit .form-control {
    min-height: 42px;
}

.admin-content .form-control,
.admin-content .form-select,
.admin-content input:not([type="hidden"]),
.admin-content select,
.admin-content textarea {
    border-color: #1f2937;
    border-width: 2px;
}

.notification-head {
    align-items: center;
}

.notification-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.notification-guide {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    margin-bottom: 18px;
}

.notification-guide div,
.notification-variable-panel,
.notification-event-panel {
    background: #ffffff;
    border: 1px solid #d7dee8;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.notification-guide div {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
}

.notification-guide strong,
.notification-event-head h2,
.notification-row-main strong {
    color: #0f172a;
}

.notification-guide span,
.notification-row-main small,
.notification-row-summary {
    color: #64748b;
}

.notification-variable-panel {
    margin-bottom: 18px;
    padding: 12px 14px;
}

.notification-variable-toggle {
    background: transparent;
    border: 0;
    color: #0f172a;
    font: inherit;
    font-weight: 900;
    padding: 0;
}

.notification-variable-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.notification-variable-list code {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 9px;
}

.notification-template-stack {
    display: grid;
    gap: 16px;
}

.notification-event-panel {
    overflow: hidden;
}

.notification-event-head {
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #d7dee8;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 18px;
}

.notification-event-kicker {
    color: #64748b;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.notification-event-head h2 {
    font-size: 19px;
    font-weight: 900;
    margin: 0;
}

.notification-event-head strong {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    color: #075985;
    font-size: 12px;
    padding: 6px 10px;
    white-space: nowrap;
}

.notification-template-list {
    display: grid;
}

.notification-template-row {
    border-bottom: 1px solid #e2e8f0;
}

.notification-template-row:last-child {
    border-bottom: 0;
}

.notification-template-row > summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 12px minmax(120px, 170px) minmax(180px, 1fr) auto auto;
    list-style: none;
    padding: 14px 18px;
}

.notification-template-row > summary::-webkit-details-marker {
    display: none;
}

.notification-status-dot {
    background: #cbd5e1;
    border-radius: 999px;
    height: 10px;
    width: 10px;
}

.notification-status-dot.is-on {
    background: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.notification-row-main {
    display: grid;
    gap: 2px;
}

.notification-row-main strong {
    font-size: 14px;
    font-weight: 900;
}

.notification-row-main small,
.notification-row-summary {
    font-size: 13px;
    font-weight: 700;
}

.notification-row-summary {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notification-row-state,
.notification-row-edit {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
    text-align: center;
}

.notification-row-state {
    background: #f1f5f9;
    color: #475569;
}

.notification-row-state.is-enabled {
    background: #dcfce7;
    color: #166534;
}

.notification-row-edit {
    background: #111827;
    color: #ffffff;
}

.notification-template-form {
    background: #fbfdff;
    border-top: 1px solid #e2e8f0;
    padding: 16px 18px 18px;
}

.notification-form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px);
}

.notification-form-grid label {
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    margin: 0;
}

.notification-form-grid input,
.notification-form-grid textarea {
    border: 2px solid #1f2937;
    border-radius: 8px;
    color: #0f172a;
    display: block;
    font: inherit;
    margin-top: 6px;
    min-height: 42px;
    padding: 8px 10px;
    width: 100%;
}

.notification-form-grid textarea {
    resize: vertical;
}

.notification-form-wide {
    grid-column: 1 / -1;
}

.notification-enable-check {
    align-items: center;
    align-self: end;
    display: flex;
    gap: 10px;
    min-height: 42px;
}

.notification-enable-check input {
    height: 18px;
    margin: 0;
    min-height: auto;
    width: 18px;
}

.notification-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

@media (max-width: 900px) {
    .notification-guide,
    .notification-form-grid {
        grid-template-columns: 1fr;
    }

    .notification-template-row > summary {
        grid-template-columns: 12px minmax(90px, 130px) minmax(0, 1fr);
    }

    .notification-row-state,
    .notification-row-edit {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .notification-event-head,
    .notification-template-row > summary {
        align-items: start;
    }

    .notification-event-head {
        flex-direction: column;
    }

    .notification-template-row > summary {
        grid-template-columns: 12px minmax(0, 1fr);
    }

    .notification-row-summary,
    .notification-row-state,
    .notification-row-edit {
        grid-column: 2;
    }

    .notification-row-summary {
        white-space: normal;
    }
}

.has-app-confirm {
    overflow: hidden;
}

.app-confirm-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 3000;
}

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

.app-confirm-backdrop {
    background: rgba(15, 23, 42, 0.58);
    inset: 0;
    position: absolute;
}

.app-confirm-card {
    align-items: start;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.34);
    color: #0f172a;
    display: grid;
    gap: 16px;
    grid-template-columns: 46px minmax(0, 1fr);
    max-width: 460px;
    padding: 22px;
    position: relative;
    width: min(100%, 460px);
}

.app-confirm-icon {
    align-items: center;
    background: #fff1f0;
    border: 1px solid #f4b4ad;
    border-radius: 999px;
    color: #8a0611;
    display: inline-flex;
    font-size: 24px;
    font-weight: 900;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.app-confirm-card h2 {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
}

.app-confirm-card p {
    color: #475569;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.app-confirm-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 22px;
}

.app-confirm-danger {
    background: #8a0611;
    box-shadow: 0 14px 30px rgba(138, 6, 17, 0.22);
}

.app-confirm-danger:hover,
.app-confirm-danger:focus {
    background: #70040d;
}

.booking-create-panel {
    background: #fff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
    display: grid;
    gap: 12px;
    padding: 18px;
}

.booking-filter-panel,
.booking-charge-grid,
.booking-guest-panel {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-filter-panel {
    background: #f8fbfc;
    border: 1px solid #cbdde6;
    border-radius: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 12px;
}

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

.booking-filter-category {
    grid-column: span 1;
}

.booking-filter-panel label,
.booking-entry-form label {
    color: #334155;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    margin: 0;
}

.required-label b {
    color: #dc2626;
    font-size: 13px;
    font-weight: 900;
}

.booking-create-panel input,
.booking-create-panel select,
.booking-create-panel textarea {
    background: #fbfdff;
    border: 1px solid #9fb6c8;
    border-radius: 6px;
    color: #0f172a;
    font: inherit;
    min-height: 38px;
    padding: 7px 10px;
    width: 100%;
}

.booking-entry-form {
    display: grid;
    gap: 12px;
}

.booking-availability-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.booking-availability-head h2 {
    font-size: 18px;
    font-weight: 900;
    margin: 2px 0 0;
}

.booking-availability-head span {
    background: #eef6f5;
    border-radius: 999px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.booking-empty-state {
    background: #f8fbfc;
    border: 1px dashed #9fb6c8;
    border-radius: 8px;
    padding: 24px;
}

.booking-empty-state h2 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
}

.booking-empty-state p {
    color: #64748b;
    font-weight: 700;
    margin: 0;
}

.booking-details-flow {
    display: grid;
    gap: 12px;
}

.booking-details-flow[hidden],
.booking-empty-state[hidden] {
    display: none;
}

.booking-category-slots {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-mode-switch {
    background: #eef4f8;
    border: 1px solid #cbdde6;
    border-radius: 8px;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
}

.booking-mode-switch button {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #102030;
    font-size: 13px;
    font-weight: 900;
    min-height: 42px;
    text-transform: uppercase;
}

.booking-mode-switch button.is-active {
    background: linear-gradient(135deg, #0f766e, #12324a);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
    color: #fff;
}

.booking-per-head-panel {
    background: linear-gradient(135deg, #f8fbfc, #eef6f9);
    border: 1px solid #cbdde6;
    border-radius: 8px;
    display: grid;
    gap: 14px;
    padding: 14px;
}

.per-head-booking-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.per-head-booking-grid.per-head-sharing-grid {
    background: #f8fbfc;
    border: 1px solid #d8e5ec;
    border-radius: 8px;
    grid-template-columns: minmax(0, 1fr);
    padding: 10px;
}

.per-head-booking-grid > div {
    display: grid;
    gap: 8px;
}

.per-head-booking-grid > div > span {
    color: #0f172a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.per-head-sharing-help {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.per-head-room-need {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 7px;
    color: #9a3412;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
}

.per-head-choice-list {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.per-head-choice-list label {
    align-items: center;
    background: #fff;
    border: 1px solid #cbdde6;
    border-radius: 7px;
    cursor: pointer;
    display: grid;
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 44px;
    padding: 9px 10px;
}

.per-head-choice-list input {
    accent-color: #0f766e;
}

.per-head-choice-list span {
    color: #102030;
    font-size: 13px;
    font-weight: 900;
}

.per-head-choice-list strong {
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    text-align: right;
}

.per-head-sharing-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.per-head-sharing-breakdown span,
.per-head-sharing-breakdown strong {
    background: #eef6f5;
    border: 1px solid #c6e2dd;
    border-radius: 999px;
    color: #0f766e;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 9px;
}

.per-head-sharing-breakdown strong {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.per-head-availability-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.per-head-availability-summary span {
    background: #fff;
    border: 1px solid #cbdde6;
    border-radius: 999px;
    color: #102030;
    font-size: 11px;
    font-weight: 900;
    padding: 7px 10px;
}

.per-head-availability-summary span.is-preferred {
    background: #dcfce7;
    border-color: #86efac;
    color: #15803d;
}

.per-head-room-suggestion {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    color: #9a3412;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 900;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 12px;
}

.per-head-room-suggestion button {
    background: #9a3412;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    min-height: 32px;
    padding: 6px 10px;
    text-transform: uppercase;
}

.per-head-room-slots {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.per-head-room-card {
    background: #fff;
    border: 1px solid #cbdde6;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 10px;
}

.per-head-room-card.is-selected {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.per-head-room-card h3 {
    color: #102030;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.per-head-room-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.per-head-room-card span {
    background: #f4f8fa;
    border-radius: 999px;
    color: #475569;
    font-size: 10px;
    font-weight: 900;
    padding: 5px 7px;
}

.per-head-room-controls {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 34px 1fr 34px;
}

.per-head-room-controls button {
    background: #102030;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    height: 34px;
}

.per-head-room-controls button:disabled {
    background: #cbd5e1;
}

.per-head-room-controls strong {
    color: #102030;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.per-head-day-plan {
    display: grid;
    gap: 10px;
}

.per-head-food-counts {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 7px;
    color: #15803d;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
}

.per-head-day-plan [data-per-head-day-plan] {
    display: grid;
    gap: 10px;
}

.per-head-day-card {
    background: #fff;
    border: 1px solid #d8e5ec;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 10px;
}

.per-head-day-card h3 {
    color: #102030;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.per-head-day-grid {
    display: grid;
    gap: 7px;
}

.per-head-day-row {
    align-items: center;
    background: #f8fbfc;
    border: 1px solid #e2ebf0;
    border-radius: 7px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(170px, 1fr) max-content max-content;
    min-height: 48px;
    padding: 7px 9px;
}

.per-head-day-row.is-disabled {
    opacity: 0.58;
}

.per-head-day-row strong,
.per-head-day-row label {
    color: #102030;
    font-size: 12px;
    font-weight: 900;
}

.per-head-day-row label {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 6px;
    white-space: nowrap;
}

.per-head-day-row .per-head-meal-toggle {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 8px;
    min-width: 0;
}

.per-head-day-row .per-head-meal-toggle input[type="checkbox"] {
    accent-color: #0f766e;
    flex: 0 0 auto;
    height: 11px;
    min-height: 11px;
    padding: 0;
    width: 11px;
}

.per-head-meal-toggle strong {
    font-size: 13px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.per-head-day-row input {
    font-size: 13px;
    font-weight: 900;
    min-height: 34px;
    padding: 6px 8px;
    text-align: center;
    width: 58px;
}

.booking-slot-panel,
.booking-request-summary {
    background: #f8fbfc;
    border: 1px solid #cbdde6;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 10px;
}

.booking-category-slot-card {
    align-content: start;
    background: #fff;
    background-clip: padding-box;
    border-radius: 7px;
    box-shadow: none;
    isolation: isolate;
    min-height: 0;
    overflow: hidden;
}

.booking-category-slot-card.is-selected {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.16);
}

.booking-category-slot-card.is-unavailable {
    background: #fffafa;
    border-color: #fecaca;
}

.booking-category-slot-card:not(.is-unavailable):nth-child(6n + 1) {
    background: linear-gradient(180deg, #ffd41f 0%, #ff9800 48%, #dc3b00 100%);
    border-color: rgba(255, 176, 0, 0.92);
}

.booking-category-slot-card:not(.is-unavailable):nth-child(6n + 2) {
    background: linear-gradient(180deg, #ff39bd 0%, #a526a7 50%, #200048 100%);
    border-color: rgba(215, 45, 169, 0.92);
}

.booking-category-slot-card:not(.is-unavailable):nth-child(6n + 3) {
    background: linear-gradient(180deg, #ff5364 0%, #d73668 48%, #74279f 100%);
    border-color: rgba(240, 68, 93, 0.92);
}

.booking-category-slot-card:not(.is-unavailable):nth-child(6n + 4) {
    background: linear-gradient(180deg, #0db4ee 0%, #166aab 48%, #142b70 100%);
    border-color: rgba(19, 152, 210, 0.92);
}

.booking-category-slot-card:not(.is-unavailable):nth-child(6n + 5) {
    background: linear-gradient(180deg, #2358d9 0%, #2721a7 52%, #41119b 100%);
    border-color: rgba(47, 69, 199, 0.92);
}

.booking-category-slot-card:not(.is-unavailable):nth-child(6n) {
    background: linear-gradient(180deg, #1ca7f2 0%, #0874ce 48%, #0754a6 100%);
    border-color: rgba(11, 134, 216, 0.92);
}

.booking-category-slot-card .booking-slot-stats div {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
}

.booking-category-slot-card:not(.is-unavailable) .booking-slot-title h2,
.booking-category-slot-card:not(.is-unavailable) .booking-slot-stats span,
.booking-category-slot-card:not(.is-unavailable) .booking-slot-stats strong {
    color: #fff;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.28);
}

.booking-category-slot-card:not(.is-unavailable) .booking-slot-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.booking-slot-head {
    align-items: start;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.booking-slot-title {
    min-width: 0;
}

.booking-slot-title h2 {
    color: #000;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}

.booking-slot-badge {
    background: #eef6f5;
    border: 1px solid #c6e2dd;
    border-radius: 999px;
    color: #0f766e;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    padding: 5px 8px;
    white-space: nowrap;
}

.booking-slot-badge.is-full {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.booking-slot-stats {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-slot-stats div {
    background: #f4f8fa;
    border: 1px solid #e2ebf0;
    border-radius: 5px;
    display: grid;
    gap: 2px;
    min-height: 42px;
    padding: 6px;
}

.booking-slot-stats span {
    color: #000;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-slot-stats strong {
    color: #000;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.booking-category-slot-card.is-unavailable .booking-slot-stats strong {
    color: #b91c1c;
}

.booking-day-availability {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.booking-day-status {
    border-radius: 2px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    padding: 5px 7px;
}

.booking-day-status.is-available {
    background: #ecfdf5;
    border: 1px solid #86efac;
    color: #15803d;
}

.booking-day-status.is-not-available {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

.booking-room-slots {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
}

.booking-room-slot {
    background: #fff;
    border: 1px solid #7f9bb1;
    border-radius: 2px;
    color: #0f172a;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    min-height: 32px;
    padding: 6px;
    text-align: center;
}

.booking-room-slot:hover,
.booking-room-slot:focus {
    border-color: #0f766e;
    outline: none;
}

.booking-room-slot.is-selected {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
    box-shadow: none;
}

.checkin-room-slots {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(128px, max-content));
    max-width: none;
}

.checkin-col-category {
    width: 20%;
}

.checkin-col-rooms {
    width: 76px;
}

.checkin-col-available {
    width: 57%;
}

.checkin-col-selected {
    width: 14%;
}

.checkin-room-slot {
    display: block;
}

.checkin-room-slot input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkin-room-slot span {
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #f7fbfc);
    border: 1px solid #b7cddd;
    border-radius: 8px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    gap: 6px;
    justify-content: center;
    min-height: 42px;
    min-width: 128px;
    padding: 8px 12px;
    text-align: center;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
    white-space: nowrap;
}

.checkin-room-slot strong {
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.checkin-room-slot small,
.checkin-room-hint {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

.checkin-room-slot small {
    line-height: 1;
    white-space: nowrap;
}

.checkin-room-slot input:focus + span,
.checkin-room-slot span:hover {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.checkin-room-slot input:checked + span {
    background: linear-gradient(135deg, #0f766e, #0b5f59);
    border-color: #0f766e;
    box-shadow: 0 6px 14px rgba(15, 118, 110, 0.2);
    color: #fff;
}

.checkin-room-slot input:checked + span small {
    color: rgba(255, 255, 255, 0.82);
}

.checkin-room-hint {
    display: block;
    margin-top: 8px;
}

.checkin-room-empty {
    color: #b91c1c;
    font-size: 12px;
    font-weight: 900;
    grid-column: 1 / -1;
    margin: 0;
}

.checkin-selected-rooms {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    min-height: 34px;
}

.checkin-selected-rooms span,
.checkin-selected-rooms button {
    background: #eef6f5;
    border: 1px solid #b7d8d3;
    border-radius: 999px;
    color: #0f766e;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 6px 9px;
}

.checkin-selected-rooms button::after {
    content: " change";
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
}

.checkin-selected-rooms button:hover,
.checkin-selected-rooms button:focus {
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
    outline: none;
}

.checkin-selected-rooms .checkin-selected-empty {
    background: #f8fbfc;
    border-color: #d8e3ea;
    color: #94a3b8;
    cursor: default;
}

tr.is-room-limit-hit .checkin-room-hint {
    color: #b91c1c;
}

.booking-slot-empty {
    color: #b91c1c;
    font-size: 10px;
    font-weight: 900;
    grid-column: 1 / -1;
    margin: 0;
}

.booking-request-summary [data-request-summary] {
    display: grid;
    gap: 8px;
}

.booking-request-summary [data-request-summary] > div {
    align-items: center;
    background: #fff;
    border: 1px solid #e2ebf0;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
}

.booking-request-summary span {
    color: #334155;
    font-weight: 900;
}

.booking-request-summary strong {
    color: #0f172a;
    font-weight: 900;
}

.booking-capacity-message {
    background: #f8fbfc;
    border: 1px solid #cbdde6;
    border-radius: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    grid-column: 1 / -1;
    line-height: 1.45;
    padding: 10px 12px;
}

.booking-capacity-message.is-ok {
    background: #eef6f5;
    border-color: #b7d8d3;
    color: #0f766e;
}

.booking-capacity-message.is-warning {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #9a3412;
}

.booking-kids-age-panel {
    border-top: 1px solid #d8e3ea;
    display: grid;
    gap: 10px;
    grid-column: 1 / -1;
    padding-top: 12px;
}

.booking-kids-age-panel[hidden] {
    display: none;
}

.booking-kids-age-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.booking-kids-age-head span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.booking-kids-age-head strong {
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
}

.booking-kids-age-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.booking-kids-age-grid label span {
    color: #475569;
    font-size: 11px;
    font-weight: 900;
}

.booking-phone-field {
    position: relative;
}

.booking-field-hint {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

.booking-guest-suggestions {
    background: #fff;
    border: 1px solid #cbdde6;
    border-radius: 6px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
    display: grid;
    gap: 4px;
    left: 0;
    padding: 6px;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    z-index: 20;
}

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

.booking-guest-suggestions button {
    background: #f8fbfc;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    display: grid;
    gap: 2px;
    padding: 8px 10px;
    text-align: left;
}

.booking-guest-suggestions button:hover,
.booking-guest-suggestions button:focus {
    border-color: #0f766e;
    outline: none;
}

.booking-guest-suggestions strong {
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
}

.booking-guest-suggestions span {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

.booking-category-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.booking-category-card {
    background: #f8fbfc;
    border: 1px solid #cbdde6;
    border-radius: 8px;
    color: #102030;
    cursor: pointer;
    display: grid;
    gap: 4px;
    padding: 12px;
    text-align: left;
}

.booking-category-card.is-selected {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.booking-category-card span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-category-card strong {
    font-size: 30px;
    line-height: 1;
}

.booking-category-card small {
    color: #64748b;
    font-weight: 800;
}

.booking-category-card b {
    color: #0f766e;
    font-size: 13px;
}

.booking-selected-card {
    align-items: center;
    border: 1px solid #b7d5dd;
    border-radius: 8px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 14px;
}

.booking-selected-card h2 {
    font-size: 26px;
    font-weight: 900;
    margin: 2px 0 0;
}

.booking-selected-stats,
.booking-summary-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
}

.booking-selected-stats div,
.booking-summary-grid div,
.booking-total-guests {
    background: #eef6f5;
    border-radius: 7px;
    padding: 10px;
}

.booking-selected-stats span,
.booking-summary-grid span,
.booking-total-guests span {
    color: #475569;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-selected-stats strong,
.booking-summary-grid strong,
.booking-total-guests strong {
    color: #0f172a;
    display: block;
    font-size: 16px;
    font-weight: 900;
}

.booking-guest-panel {
    border: 1px solid #b7d5dd;
    border-radius: 8px;
    grid-template-columns: 130px repeat(3, minmax(0, 1fr));
    padding: 12px;
}

.booking-total-guests strong {
    color: #0f766e;
    font-size: 30px;
}

.booking-person-readout {
    background: #f8fbfc;
    border: 1px solid #d8e3ea;
    border-radius: 7px;
    padding: 10px;
}

.booking-person-readout span {
    color: #475569;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-person-readout strong {
    color: #0f172a;
    display: block;
    font-size: 18px;
    font-weight: 900;
}

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

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

.booking-price-split,
.booking-guest-details {
    border: 1px solid #cbdde6;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 12px;
}

.booking-price-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.booking-price-head h2 {
    font-size: 20px;
    margin: 0;
}

.booking-price-head span {
    color: #64748b;
    font-size: 12px;
}

.booking-price-split > div:not(.booking-price-head) {
    align-items: center;
    background: #f4f8f9;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.booking-price-split span,
.booking-price-split strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.booking-submit {
    justify-self: start;
}

.booking-detail-page {
    display: grid;
    gap: 14px;
}

.booking-detail-banner {
    align-items: center;
    background: #0f3f3c;
    border-radius: 8px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 18px;
}

.booking-detail-banner h2 {
    font-size: 26px;
    font-weight: 900;
    margin: 8px 0 4px;
}

.booking-detail-banner p {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    margin: 0;
}

.booking-detail-banner > div:last-child {
    display: grid;
    gap: 4px;
    text-align: right;
}

.booking-detail-banner > div:last-child span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-detail-banner > div:last-child strong {
    font-size: 26px;
    font-weight: 900;
}

.booking-list-page-banner {
    gap: 18px;
    margin-bottom: 14px;
    padding: 14px 18px;
}

.booking-list-page-banner h2 {
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 5px;
}

.booking-list-page-banner p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.booking-list-banner-actions {
    align-items: center;
    display: flex !important;
    gap: 14px;
    justify-content: flex-end;
    text-align: right;
}

.booking-list-total {
    display: grid;
    gap: 2px;
    min-width: 92px;
}

.booking-list-total span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-list-total strong {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.booking-list-banner-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.booking-list-page-banner > div:last-child .btn {
    justify-self: end;
    margin-top: 0;
    min-height: 38px;
    padding: 8px 14px;
    white-space: nowrap;
}

.booking-detail-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.booking-detail-grid div,
.booking-detail-card {
    background: #fff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    padding: 14px;
}

.booking-detail-grid span {
    color: #64748b;
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.booking-detail-grid strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.booking-detail-wide {
    grid-column: 1 / -1;
}

.booking-notes {
    color: #334155;
    font-weight: 800;
    line-height: 1.6;
    margin: 0;
}

.booking-pdf-actions {
    align-items: center;
    background: #f8fbfc;
    border: 1px solid #cfe0ea;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px;
}

.booking-pdf-actions.is-ready {
    background: #eefaf5;
    border-color: #9bdabc;
}

.booking-pdf-actions.is-enquiry {
    align-items: start;
    background: #fff7ed;
    border-color: #fed7aa;
}

.booking-pdf-actions span {
    color: #64748b;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.booking-pdf-actions strong {
    color: #0f172a;
    display: block;
    font-size: 18px;
    font-weight: 900;
    margin-top: 3px;
}

.booking-pdf-action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.booking-confirm-enquiry-form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(130px, 0.8fr) minmax(130px, 0.8fr) minmax(180px, 1.2fr) auto;
}

.booking-confirm-enquiry-form label {
    color: #92400e;
    display: grid;
    font-size: 11px;
    font-weight: 900;
    gap: 6px;
    text-transform: uppercase;
}

.booking-confirm-enquiry-form input,
.booking-confirm-enquiry-form select {
    background: #fff;
    border: 1px solid #fed7aa;
    border-radius: 6px;
    color: #0f172a;
    font: inherit;
    min-height: 42px;
    padding: 8px 10px;
}

.booking-proof-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
}

.booking-proof-card {
    background: #f8fbfc;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 12px;
}

.booking-proof-card figcaption {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.booking-proof-card img {
    aspect-ratio: 16 / 10;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: block;
    object-fit: contain;
    width: 100%;
}

.booking-proof-file,
.booking-proof-empty {
    align-items: center;
    background: #fff;
    border: 1px dashed #b7cddd;
    border-radius: 6px;
    color: #0f766e;
    display: flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    min-height: 140px;
    padding: 16px;
    text-align: center;
}

.booking-proof-empty {
    color: #94a3b8;
}

.checkout-page-head {
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.94)),
        #0d1b2a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(13, 27, 42, 0.14);
    margin-top: 0;
    padding: 22px;
}

.checkout-page-head h1,
.checkout-page-head .eyebrow,
.checkout-page-head .muted {
    color: #ffffff;
}

.checkout-page-head .muted {
    opacity: 0.78;
}

.section-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.checkout-panel {
    display: grid;
    gap: 18px;
}

.checkout-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.checkout-summary div {
    background:
        linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.96)),
        #0d1b2a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    border-top: 3px solid #f5d48a;
    display: grid;
    gap: 5px;
    padding: 14px;
}

.checkout-summary span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-summary strong {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.checkout-card {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    padding: 18px;
}

.checkout-food-add,
.checkout-payment-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(240px, 1fr) 120px auto;
}

.checkout-payment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.checkout-food-add label,
.checkout-payment-grid label {
    color: #334155;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
}

.checkout-food-add input,
.checkout-food-add select,
.checkout-payment-grid input,
.checkout-payment-grid select {
    background: #fbfdff;
    border: 2px solid #1f2937;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 44px;
    padding: 8px 10px;
    width: 100%;
}

.checkout-food-add .button {
    align-self: end;
}

.checkout-food-list {
    display: grid;
    gap: 10px;
}

.checkout-food-row {
    align-items: center;
    background: #f8fbfc;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(180px, 1fr) 70px 110px 110px auto;
    padding: 12px;
}

.checkout-food-row label {
    display: grid;
    gap: 4px;
    margin: 0;
}

.checkout-food-row input {
    background: #ffffff;
    border: 1px solid #94a3b8;
    border-radius: 6px;
    color: #0f172a;
    font: inherit;
    min-height: 36px;
    padding: 6px 8px;
    width: 100%;
}

.checkout-food-row span,
.checkout-empty-note {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.checkout-food-row span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-food-row strong {
    color: #0f172a;
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.checkout-actions {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 16px 18px;
}

.checkout-actions p {
    color: #64748b;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.food-orders-hero {
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.97), rgba(15, 118, 110, 0.92)),
        url('/assets/img/pleasantBrochure.jpeg') center/cover;
    color: #ffffff;
}

.food-orders-hero h1,
.food-orders-hero .eyebrow,
.food-orders-hero .muted {
    color: #ffffff;
}

.food-orders-hero .muted {
    opacity: 0.78;
}

.food-room-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.food-room-summary div {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    padding: 14px 16px;
}

.food-room-summary span,
.food-room-body span,
.food-order-row span,
.food-order-row small {
    color: #64748b;
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.food-room-summary strong {
    color: #0f172a;
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.food-room-grid,
.food-order-list {
    display: grid;
    gap: 14px;
}

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

.food-room-card,
.food-room-empty,
.food-order-row,
.food-preorder-card {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
}

.food-room-card {
    display: grid;
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 16px;
}

.food-room-icon {
    align-items: center;
    background: linear-gradient(135deg, #0f766e, #12324a);
    border-radius: 8px;
    display: grid;
    min-height: 92px;
    padding: 12px;
    text-align: center;
}

.food-room-icon span,
.food-room-icon strong {
    color: #ffffff;
}

.food-room-icon span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.food-room-icon strong {
    font-size: 28px;
    font-weight: 900;
}

.food-room-body h2 {
    color: #0f172a;
    font-size: 20px;
    margin: 4px 0;
}

.food-room-body p {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.food-room-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.food-room-pills b {
    background: #eef6f5;
    border-radius: 999px;
    color: #0f766e;
    font-size: 12px;
    padding: 5px 9px;
}

.food-room-actions {
    grid-column: 1 / -1;
}

.food-room-actions .button {
    justify-content: center;
    width: 100%;
}

.food-room-empty {
    grid-column: 1 / -1;
    padding: 28px;
    text-align: center;
}

.food-room-empty h2 {
    color: #0f172a;
    font-size: 22px;
}

.food-room-empty p {
    color: #64748b;
    font-weight: 800;
}

.food-order-form,
.food-order-edit {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.food-order-form label,
.food-order-edit label {
    color: #334155;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
}

.food-order-form input,
.food-order-form select,
.food-order-edit input,
.food-order-edit select {
    background: #fbfdff;
    border: 2px solid #1f2937;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 44px;
    padding: 8px 10px;
    width: 100%;
}

.food-order-wide {
    grid-column: span 2;
}

.food-preorder-date {
    border: 0;
    grid-template-columns: minmax(220px, 1fr) auto;
    padding: 0;
}

.food-order-row {
    padding: 14px;
}

.food-order-view {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(180px, 1.5fr) 70px 100px 100px 110px minmax(220px, auto);
}

.food-order-row strong {
    color: #0f172a;
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.food-order-row.status-preordered {
    border-left: 5px solid #f59e0b;
}

.food-order-row.status-confirmed {
    border-left: 5px solid #2563eb;
}

.food-order-row.status-served {
    border-left: 5px solid #10a56f;
}

.food-order-row.status-cancelled {
    border-left: 5px solid #dc2626;
    opacity: 0.72;
}

.food-order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.food-order-actions form {
    margin: 0;
}

.food-order-edit {
    border-top: 1px solid #d8e3ea;
    margin-top: 12px;
    padding-top: 12px;
}

.food-order-edit[hidden] {
    display: none;
}

.food-order-today-list {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.food-order-status {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 9px;
}

.food-order-status.status-preordered {
    background: #fff7ed;
    color: #c2410c;
}

.food-order-status.status-confirmed {
    background: #dbeafe;
    color: #1d4ed8;
}

.food-order-status.status-served {
    background: #dcfce7;
    color: #166534;
}

.food-order-status.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.booking-checkin-card {
    background: #fff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    display: grid;
    gap: 18px;
    padding: 22px;
}

.booking-checkin-head h2 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 6px;
}

.booking-checkin-head p,
.booking-checkin-note,
.booking-checkin-actions p {
    color: #64748b;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.walkin-section-title {
    align-items: center;
    color: #0f172a;
    display: flex;
    font-size: 15px;
    font-weight: 900;
    gap: 12px;
    letter-spacing: 0;
    margin-top: 4px;
}

.walkin-banner-kicker {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.walkin-banner-kicker span:last-child {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.walkin-section-title::after {
    background: linear-gradient(90deg, #b7cddd, rgba(183, 205, 221, 0));
    content: "";
    flex: 1;
    height: 1px;
}

.walkin-payment-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.walkin-payment-summary div {
    background:
        linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.96)),
        #0d1b2a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid #f5d48a;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(13, 27, 42, 0.12);
    display: grid;
    gap: 5px;
    padding: 12px 14px;
}

.walkin-payment-summary span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.walkin-payment-summary strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.walkin-payment-new-row {
    grid-column-start: 1;
}

.booking-checkin-grid {
    display: grid;
    gap: 16px 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-checkin-grid label {
    color: #334155;
    display: grid;
    font-size: 14px;
    font-weight: 900;
    gap: 8px;
}

.booking-checkin-grid input,
.booking-checkin-grid select,
.booking-checkin-grid textarea {
    background: #fbfdff;
    border: 1px solid #b7cddd;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 46px;
    padding: 9px 12px;
    width: 100%;
}

.booking-checkin-grid textarea {
    resize: vertical;
}

.booking-checkin-full {
    grid-column: 1 / -1;
}

.walkin-proof-upload {
    grid-column: span 2;
}

.walkin-camera-guide {
    background: #effaf7;
    border: 1px solid #a7e4d2;
    border-radius: 8px;
    color: #115e59;
    display: grid;
    gap: 2px;
    padding: 9px 11px;
}

.walkin-camera-guide strong,
.walkin-camera-guide span {
    font-size: 12px !important;
}

.walkin-camera-guide strong {
    font-weight: 600 !important;
}

.walkin-proof-preview {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    margin-top: 8px;
    padding: 7px;
}

.walkin-proof-preview[hidden] {
    display: none;
}

.walkin-proof-preview img {
    border-radius: 6px;
    height: 42px;
    object-fit: cover;
    width: 52px;
}

.walkin-proof-preview > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.walkin-proof-preview button {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    color: #b42318;
    min-height: 32px;
    padding: 5px 8px;
}

.walkin-address-scan {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 8px;
}

.walkin-address-scan button {
    background: #0f766e;
    border: 0;
    border-radius: 8px;
    color: #fff;
    min-height: 36px;
    padding: 7px 11px;
}

.walkin-address-scan button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.walkin-address-scan small {
    color: #64748b;
    flex: 1 1 220px;
}

.booking-checkin-actions {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.booking-checkin-submit {
    background: #10a56f;
    border-color: #10a56f;
    justify-self: end;
}

.today-room-date {
    align-items: center;
    display: flex;
    gap: 8px;
}

.today-room-date input {
    background: #fff;
    border: 1px solid #b7cddd;
    border-radius: 8px;
    min-height: 42px;
    padding: 8px 10px;
}

.today-room-hero {
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.94)),
        #0d1b2a;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(13, 27, 42, 0.14);
    margin-top: 0;
    padding: 22px;
}

.today-room-hero h1,
.today-room-hero .eyebrow,
.today-room-hero .muted {
    color: #ffffff;
}

.today-room-hero .muted {
    opacity: 0.76;
}

.today-room-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: -4px 0 18px;
}

.today-room-summary div {
    background: #ffffff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 2px;
    padding: 14px 16px;
}

.today-room-summary span {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.today-room-summary strong {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.today-room-board {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.today-room-group {
    background: #fff;
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.today-room-group.is-premium-non-ac {
    grid-column: 1 / -1;
}

.today-room-group.is-premium-non-ac .today-room-grid {
    grid-auto-columns: minmax(180px, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
}

.today-room-group-head {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(11, 79, 74, 0.96)),
        #0d1b2a;
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 16px 18px;
}

.today-room-group-head .eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.today-room-group-head h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    margin: 2px 0 0;
}

.today-room-group-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.today-room-group-stats span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.today-room-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 16px;
}

.today-room-card {
    background: linear-gradient(180deg, #ffffff, #f8fbfc);
    border: 1px solid #d8e3ea;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    display: grid;
    gap: 12px;
    padding: 16px;
    position: relative;
}

.today-room-card::before {
    background: #94a3b8;
    border-radius: 8px 0 0 8px;
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 4px;
}

.today-room-card.status-available::before {
    background: #10a56f;
}

.today-room-card.status-booked::before {
    background: #2563eb;
}

.today-room-card.status-checked_in::before {
    background: #0284c7;
}

.today-room-card.status-checkout_due::before {
    background: #f59e0b;
}

.today-room-top,
.today-room-meta,
.today-room-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.today-room-top span,
.today-room-booking span {
    color: #64748b;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.today-room-floor-mobile {
    display: none !important;
}

.today-room-price-mobile {
    display: none !important;
}

.today-room-mobile-separator {
    display: none !important;
}

.today-room-top strong {
    color: #0f172a;
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.today-room-status {
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 9px;
}

.today-room-status.status-available {
    background: #dcfce7;
    color: #166534;
}

.today-room-status.status-booked {
    background: #dbeafe;
    color: #1d4ed8;
}

.today-room-status.status-checked_in {
    background: #e0f2fe;
    color: #075985;
}

.today-room-status.status-checkout_due {
    background: #fff7ed;
    color: #c2410c;
}

.today-room-meta span {
    color: #475569;
    font-size: 12px;
    font-weight: 800;
}

.today-room-booking {
    background: #f8fbfc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}

.today-room-booking strong {
    color: #0f172a;
    display: block;
    font-size: 16px;
    font-weight: 900;
}

.today-room-booking small {
    color: #64748b;
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
}

.today-room-booking.is-empty {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.today-room-actions .action-btn {
    justify-content: center;
}

@media (max-width: 820px) {
    .admin-menu-grid {
        column-count: 2;
    }

    .app-navbar .navbar-collapse {
        padding: 12px 0 6px;
    }

    .add-room-hero {
        align-items: flex-start;
        border-radius: 18px 18px 0 0;
        flex-direction: column;
        gap: 20px;
        padding: 26px 20px;
    }

    .add-room-hero h1 {
        font-size: 34px;
    }

    .add-room-panel {
        border-radius: 0 0 18px 18px;
    }

    .admin-shell {
        display: block;
        padding: 18px 12px 42px;
    }

    .admin-body.admin-sidebar-open {
        overflow: hidden;
    }

    .admin-mobile-menu-button {
        align-items: center;
        background: #15100d;
        border: 1px solid rgba(201, 154, 61, 0.34);
        border-radius: 999px;
        color: #fff;
        display: inline-flex;
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
        margin-left: auto;
        min-height: 38px;
        padding: 0 16px;
        text-transform: uppercase;
    }

    .admin-sidebar-backdrop {
        background: rgba(15, 23, 42, 0.48);
        display: block;
        inset: 0;
        position: fixed;
        z-index: 1039;
    }

    .admin-sidebar-backdrop[hidden] {
        display: none;
    }

    .admin-sidebar {
        border-radius: 18px;
        bottom: 0;
        display: block;
        left: 0;
        margin: 0;
        max-width: 86vw;
        min-height: 0;
        overflow-y: auto;
        padding: 14px;
        position: fixed;
        top: 0;
        transform: translateX(-105%);
        transition: transform 0.22s ease;
        width: min(330px, 86vw);
        z-index: 1040;
    }

    .admin-body.admin-sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-sidebar-mobile-head {
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        color: #fff;
        display: flex;
        justify-content: space-between;
        margin: 0 0 12px;
        padding: 2px 0 12px;
    }

    .admin-sidebar-mobile-head strong {
        font-size: 13px;
        font-weight: 800;
    }

    .admin-sidebar-mobile-head button {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        padding: 7px 12px;
    }

    .sidebar-title {
        display: none;
    }

    .sidebar-link {
        margin: 0;
    }

    .admin-sidebar > .sidebar-link {
        margin-bottom: 8px;
        min-height: 44px;
    }

    .sidebar-menu-group {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        margin: 0 0 8px;
        overflow: hidden;
    }

    .sidebar-menu-head {
        box-shadow: none;
        font-size: 12px;
        min-height: 40px;
        padding: 8px 9px;
    }

    .sidebar-menu-head small {
        display: none;
    }

    .sidebar-submenu {
        gap: 5px;
        padding: 6px 8px 9px;
    }

    .sidebar-submenu-link {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 9px;
        font-size: 12px;
        line-height: 1.15;
        padding: 7px 8px;
        white-space: normal;
    }

    .sidebar-link.disabled {
        display: none;
    }

    .inventory-summary {
        grid-template-columns: 1fr;
    }

    .food-menu-form,
    .food-menu-edit,
    .food-menu-view {
        grid-template-columns: 1fr;
    }

    .gallery-upload-panel,
    .gallery-upload-form,
    .offer-form,
    .offer-edit-form {
        grid-template-columns: 1fr;
    }

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

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-wide {
        grid-column: auto;
    }

    .food-menu-price {
        text-align: left;
    }

    .food-menu-actions {
        justify-content: flex-start;
    }

    .today-room-hero {
        align-items: stretch;
        display: grid;
        gap: 16px;
    }

    .today-room-date {
        align-items: stretch;
        display: grid;
    }

    .today-room-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .today-room-board {
        grid-template-columns: 1fr;
    }

    .today-room-group-head {
        align-items: flex-start;
        display: grid;
        gap: 12px;
    }

    .today-room-group-stats {
        justify-content: flex-start;
    }

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

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

    .rate-mini-grid {
        grid-template-columns: 1fr;
    }

    .date-range-picker {
        grid-template-columns: 1fr;
    }

    .date-range-arrow {
        justify-self: center;
    }

    .rate-day {
        min-height: 88px;
        padding: 9px;
    }
}

@media (max-width: 560px) {
    .admin-menu-head h1 {
        font-size: 24px;
    }

    .admin-menu-grid {
        column-count: 1;
    }

    .admin-menu-item {
        min-height: 64px;
    }

    .page-surface {
        padding-left: 12px;
        padding-right: 12px;
    }

    .add-room-hero h1 {
        font-size: 30px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .walkin-page-head {
        align-items: center;
        display: grid;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
        margin: 10px 0 !important;
    }

    .walkin-page-head > div {
        align-items: baseline;
        display: flex;
        flex-wrap: wrap;
        gap: 3px 7px;
        min-width: 0;
    }

    .walkin-page-head .eyebrow {
        font-size: 10px !important;
        font-weight: 400 !important;
        margin: 0;
    }

    .walkin-page-head h1 {
        font-size: 16px !important;
        font-weight: 500 !important;
        margin: 0;
    }

    .walkin-page-head .muted {
        flex-basis: 100%;
        font-size: 11px !important;
        font-weight: 400 !important;
    }

    .walkin-page-head .button {
        font-size: 11px !important;
        font-weight: 400 !important;
        min-height: 34px;
        padding: 6px 9px;
        width: auto;
    }

    .walkin-form + *,
    .booking-detail-page {
        gap: 10px;
    }

    .booking-detail-page .booking-detail-banner {
        align-items: center;
        display: grid;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 10px 12px;
    }

    .booking-detail-page .walkin-banner-kicker {
        margin: 0;
    }

    .booking-detail-page .walkin-banner-kicker span:last-child {
        display: none;
    }

    .booking-detail-page .walkin-banner-kicker .badge {
        font-size: 10px !important;
        font-weight: 400 !important;
        padding: 3px 7px;
    }

    .booking-detail-page .booking-detail-banner h2 {
        font-size: 16px !important;
        font-weight: 500 !important;
        margin: 5px 0 2px;
    }

    .booking-detail-page .booking-detail-banner p {
        font-size: 11px !important;
        font-weight: 400 !important;
        line-height: 1.35;
    }

    .booking-detail-page .booking-detail-banner > div:last-child {
        gap: 1px;
        text-align: right;
    }

    .booking-detail-page .booking-detail-banner > div:last-child span {
        font-size: 9px !important;
        font-weight: 400 !important;
    }

    .booking-detail-page .booking-detail-banner > div:last-child strong {
        font-size: 14px !important;
        font-weight: 500 !important;
        white-space: nowrap;
    }

    .walkin-payment-summary {
        gap: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .walkin-payment-summary div {
        gap: 2px;
        min-height: 58px;
        padding: 8px 10px;
    }

    .walkin-payment-summary span {
        font-size: 10px !important;
        font-weight: 400 !important;
    }

    .walkin-payment-summary strong {
        font-size: 13px !important;
        font-weight: 500 !important;
    }

    .today-room-hero {
        align-items: center;
        display: grid;
        gap: 10px;
        grid-template-columns: auto minmax(0, 1fr);
        margin-bottom: 12px;
        padding: 10px 12px;
    }

    .today-room-hero .eyebrow,
    .today-room-hero .muted {
        display: none;
    }

    .today-room-hero h1 {
        font-size: 15px;
        font-weight: 400;
        margin: 0;
        white-space: nowrap;
    }

    .today-room-date {
        display: grid;
        gap: 6px;
        grid-template-columns: minmax(0, 1fr) auto;
        min-width: 0;
    }

    .today-room-date input,
    .today-room-date .button {
        font-size: 14px;
        font-weight: 400;
        min-height: 38px;
    }

    .today-room-date input {
        min-width: 0;
        padding-left: 7px;
        padding-right: 7px;
        width: 100%;
    }

    .today-room-date .button {
        padding-left: 10px;
        padding-right: 10px;
    }

    .today-room-summary {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0 0 12px;
    }

    .today-room-summary div {
        align-items: center;
        display: flex;
        justify-content: space-between;
        min-height: 48px;
        padding: 9px 11px;
    }

    .today-room-summary div:last-child {
        grid-column: auto;
    }

    .today-room-summary span {
        font-size: 11px;
        font-weight: 400;
    }

    .today-room-summary strong {
        font-size: 18px;
        font-weight: 500;
    }

    .today-room-board {
        gap: 12px;
    }

    .today-room-group-head {
        gap: 8px;
        padding: 12px;
    }

    .today-room-group-head > div:first-child {
        align-items: baseline;
        display: flex;
        gap: 7px;
        min-width: 0;
    }

    .today-room-group-head .eyebrow {
        font-size: 10px !important;
        font-weight: 700 !important;
        margin: 0;
        white-space: nowrap;
    }

    .today-room-group-head h2 {
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.25;
        margin: 0;
    }

    .today-room-group-stats {
        gap: 6px;
    }

    .today-room-group-stats span {
        font-size: 11px;
        font-weight: 400;
        padding: 4px 8px;
    }

    .today-room-grid,
    .today-room-group.is-premium-non-ac .today-room-grid {
        display: grid;
        gap: 8px;
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        overflow-x: visible;
        padding: 8px;
    }

    .today-room-card {
        border-radius: 10px;
        box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
        gap: 5px;
        padding: 9px 10px 9px 13px;
    }

    .today-room-card::before {
        border-radius: 10px 0 0 10px;
        width: 3px;
    }

    .today-room-card:nth-child(4n + 1)::before {
        background: #10a56f;
    }

    .today-room-card:nth-child(4n + 2)::before {
        background: #2563eb;
    }

    .today-room-card:nth-child(4n + 3)::before {
        background: #d97706;
    }

    .today-room-card:nth-child(4n + 4)::before {
        background: #7c3aed;
    }

    .today-room-top > div {
        align-items: baseline;
        display: flex;
        gap: 6px;
    }

    .today-room-floor-mobile {
        display: inline !important;
        font-size: 11px !important;
        font-weight: 400 !important;
        margin-left: 4px;
        text-transform: uppercase !important;
    }

    .today-room-mobile-separator {
        color: #94a3b8 !important;
        display: inline !important;
        font-size: 11px !important;
        font-weight: 400 !important;
    }

    .today-room-price-mobile {
        display: inline !important;
        font-size: 11px !important;
        font-weight: 400 !important;
        margin-left: 4px;
        text-transform: uppercase !important;
        white-space: nowrap;
    }

    .today-room-floor-desktop,
    .today-room-price-desktop,
    .today-room-meta {
        display: none !important;
    }

    .today-room-top span,
    .today-room-booking span {
        font-size: 10px;
        font-weight: 400;
    }

    .today-room-top strong {
        font-size: 18px;
        font-weight: 500;
    }

    .today-room-status {
        background: transparent !important;
        border-radius: 0;
        font-size: 11px !important;
        font-weight: 400 !important;
        padding: 0;
        text-transform: uppercase;
    }

    .today-room-meta span {
        font-size: 12px;
        font-weight: 400;
    }

    .today-room-booking {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 8px;
        padding: 6px 8px;
    }

    .today-room-booking strong {
        font-size: 12px;
        font-weight: 400;
    }

    .today-room-booking small {
        font-size: 11px !important;
        font-weight: 400 !important;
        margin-top: 0;
    }

    .today-room-booking.is-empty {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .today-room-booking.is-empty span,
    .today-room-booking.is-empty strong {
        font-size: 11px !important;
        font-weight: 400 !important;
    }

    .today-room-booking.is-empty small::before {
        color: #94a3b8;
        content: "— ";
    }

    .today-room-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .today-room-actions .action-btn {
        flex: 1 1 auto;
        font-size: 12px;
        font-weight: 400;
        min-height: 34px;
        padding: 6px 9px;
    }

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

@media (max-width: 640px) {
    .admin-shell {
        padding: 12px 10px 32px;
    }

    .app-navbar .container-fluid {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        min-height: 0;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 14px;
        padding-top: 14px;
    }

    .app-navbar .navbar-toggler {
        align-items: center;
        border-radius: 14px;
        display: inline-flex;
        height: 44px;
        justify-content: center;
        margin-left: auto;
        width: 48px;
    }

    .app-navbar .navbar-collapse {
        background: #fffaf3;
        border: 1px solid rgba(167, 107, 43, 0.16);
        border-radius: 18px;
        box-shadow: 0 18px 44px rgba(52, 38, 28, 0.12);
        flex: 0 0 100%;
        margin-top: 8px;
        padding: 12px;
        width: 100%;
    }

    .app-navbar .navbar-collapse.collapse:not(.show) {
        display: none;
    }

    .app-navbar .navbar-collapse.collapse.show,
    .app-navbar .navbar-collapse.collapsing {
        display: block;
    }

    .app-navbar .navbar-nav {
        align-items: stretch;
        gap: 8px;
        justify-content: stretch;
        width: 100%;
    }

    .app-navbar .nav-item {
        width: 100%;
    }

    .app-navbar .nav-link,
    .public-body .btn-light {
        border-radius: 12px;
        justify-content: flex-start;
        min-height: 44px;
        padding: 11px 14px;
        width: 100%;
    }

    .public-body .app-navbar .nav-link {
        background: #ffffff;
        border: 1px solid rgba(123, 35, 40, 0.08);
        color: #2f211c;
        font-weight: 900;
    }

    .public-body .app-navbar .nav-link.active,
    .public-body .app-navbar .nav-link:hover,
    .public-body .app-navbar .nav-link:focus {
        background: #f8efe2;
        color: #8d2630;
    }

    .public-body .btn-light {
        align-items: center;
        justify-content: center;
    }

    .public-template-switch {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .public-template-switch a {
        justify-content: center;
        min-height: 44px;
        padding: 10px 12px;
    }

    .public-body .panel a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .brand-mark {
        border-radius: 10px;
        height: 32px;
        width: 32px;
    }

    .admin-sidebar {
        background: rgba(13, 27, 42, 0.98);
        border-radius: 16px;
        box-shadow: 0 14px 32px rgba(13, 27, 42, 0.18);
        grid-template-columns: 1fr;
        margin-bottom: 14px;
        padding: 10px;
    }

    .sidebar-link {
        border-radius: 999px;
        font-size: 13px;
        min-height: 40px;
        padding: 8px 12px;
    }

    .sidebar-icon {
        display: none;
    }

    .section-head {
        gap: 12px;
        margin: 18px 0 14px;
    }

    .section-head h1 {
        font-size: 25px;
    }

    .section-head .button {
        width: 100%;
    }

    .gallery-list-head {
        align-items: flex-start;
        display: grid;
        gap: 8px;
    }

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

    .gallery-upload-form .button {
        width: 100%;
    }

    .stats {
        gap: 12px;
        width: 100%;
    }

    .stat {
        width: 100%;
    }

    .inventory-summary {
        border-radius: 16px;
        gap: 12px;
        padding: 16px;
    }

    .inventory-summary strong {
        font-size: 28px;
    }

    .floor-group {
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .floor-group-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 18px;
    }

    .floor-group-head h2 {
        font-size: 22px;
    }

    .table-wrap {
        background: transparent;
        overflow: visible;
    }

    table {
        min-width: 0;
    }

    table thead {
        display: none;
    }

    table,
    tbody,
    tr,
    td {
        display: block;
        width: 100%;
    }

    tr {
        background: #fff;
        border: 1px solid #dce8e8;
        border-radius: 16px;
        box-shadow: 0 10px 26px rgba(16, 24, 40, 0.08);
        margin: 12px;
        overflow: hidden;
    }

    td {
        align-items: flex-start;
        border-bottom: 1px solid #edf2f2;
        display: flex;
        gap: 14px;
        justify-content: space-between;
        padding: 12px 14px;
        text-align: right;
    }

    .bedroom-count-cell {
        text-align: right;
    }

    td:last-child {
        border-bottom: 0;
    }

    td::before {
        color: var(--luxury-muted);
        content: attr(data-label);
        flex: 0 0 100px;
        font-size: 12px;
        font-weight: 900;
        text-align: left;
        text-transform: uppercase;
    }

    td[data-label="Unit"],
    td[data-label="Action"] {
        display: block;
        text-align: left;
    }

    td[data-label="Unit"]::before,
    td[data-label="Action"]::before {
        display: block;
        margin-bottom: 8px;
    }

    .table-actions,
    .action-group {
        display: grid;
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .table-actions .btn,
    .table-actions form,
    .table-actions button,
    .action-group .action-btn,
    .action-group form,
    .action-group button {
        width: 100%;
    }

    .action-btn {
        border-radius: 12px;
        min-height: 42px;
    }

    .add-room-hero {
        border-radius: 16px 16px 0 0;
        min-height: 0;
        padding: 22px 16px;
    }

    .add-room-hero h1 {
        font-size: 28px;
    }

    .add-room-hero p:last-child {
        font-size: 14px;
    }

    .add-room-panel {
        border-radius: 0 0 16px 16px;
    }

    .add-room-panel .card-body {
        padding: 18px !important;
    }

    .add-room-form .form-control,
    .add-room-form .form-select {
        min-height: 46px;
    }

    .btn-luxury,
    .btn-soft {
        width: 100%;
    }

    .room-preview,
    .room-preview img,
    .room-preview-empty {
        min-height: 210px;
    }

    .rate-bulk-form {
        padding: 16px;
    }

    .rate-calendar-head {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 16px 16px 0 0;
        padding: 18px;
    }

    .calendar-legend {
        justify-content: flex-start;
    }

    .rate-calendar-head h2 {
        font-size: 24px;
    }

    .rate-calendar-weekdays span {
        font-size: 10px;
        padding: 9px 2px;
    }

    .rate-day {
        min-height: 74px;
        padding: 7px;
    }

    .rate-day-top strong {
        border-radius: 9px;
        font-size: 14px;
        height: 28px;
        min-width: 28px;
    }

    .rate-day p,
    .rate-day small,
    .rate-pill {
        display: none;
    }

    .peak-rate-form {
        grid-template-columns: 1fr;
    }

    .peak-rate-form.per-head-calendar-form {
        grid-template-columns: 1fr;
    }

    .peak-calendar-shell,
    .upcoming-rates-card,
    .peak-rate-panel {
        grid-column: 1;
    }

    .peak-rate-panel {
        grid-row: auto;
    }

    .per-head-calendar-panel {
        grid-row: 2;
        grid-template-columns: 1fr;
    }

    .per-head-calendar-form .per-head-records-card {
        grid-row: 3;
    }

    .per-head-calendar-panel .per-head-sharing-section,
    .per-head-calendar-panel .per-head-charge-section {
        grid-template-columns: 1fr;
    }

    .per-head-room-selector {
        grid-template-columns: 1fr;
    }

    .peak-calendar-hero {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        padding: 16px;
    }

    .peak-nav-btn {
        font-size: 34px;
        height: 42px;
        width: 42px;
    }

    .peak-calendar-hero h1 {
        font-size: 30px;
    }

    .peak-calendar-hero p:last-child {
        font-size: 14px;
    }

    .peak-calendar-months {
        grid-template-columns: 1fr;
    }

    .peak-month + .peak-month {
        border-left: 0;
        border-top: 1px solid #e3e8ef;
    }

    .peak-weekdays,
    .peak-days {
        gap: 8px;
    }

    .peak-month {
        padding: 22px 14px 18px;
    }

    .peak-weekdays span {
        font-size: 12px;
    }

    .peak-day,
    .peak-day-placeholder {
        min-height: 44px;
    }

    .peak-day {
        border-radius: 9px;
        font-size: 16px;
    }

    .peak-calendar-footer {
        padding: 15px 16px;
    }

    .peak-calendar-footer strong {
        font-size: 16px;
    }

    .upcoming-rates-head {
        align-items: flex-start;
        display: grid;
    }

    .rate-sort-actions {
        justify-content: flex-start;
    }

    .rate-record-edit-form {
        grid-template-columns: 1fr;
    }

    .per-head-record-edit-form {
        grid-template-columns: 1fr;
    }

    .upcoming-rates-table-wrap {
        overflow: visible;
    }

    .upcoming-rates-table {
        min-width: 0;
    }

    .upcoming-rates-table td {
        white-space: normal;
    }

    .upcoming-rates-table td[colspan]::before {
        display: none;
    }

    .upcoming-rates-table .rate-record-actions {
        align-items: stretch;
        display: grid;
        justify-content: stretch;
    }

    .upcoming-rates-table .rate-record-actions .action-btn,
    .upcoming-rates-table .rate-record-actions form {
        width: 100%;
    }

    .rate-view-only {
        width: 100%;
    }

    .rate-edit-actions {
        justify-content: flex-start;
    }

    .sharing-rent-grid,
    .per-head-rate-head,
    .per-head-rate-row {
        grid-template-columns: 1fr;
    }

    .per-head-rate-head {
        display: none;
    }

    .per-head-section-title h2 {
        font-size: 22px;
    }

    .per-head-section-title p {
        font-size: 16px;
    }

    .settings-inline-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .user-account-card {
        align-items: stretch;
        display: flex;
        flex-direction: column;
    }

    .user-edit-form,
    .users-create-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .user-account-head {
        align-items: flex-start;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .user-account-head .badge {
        grid-column: 1 / -1;
        justify-self: flex-start;
    }

    .user-password-reset-field {
        grid-column: auto;
    }

    .user-card-actions,
    .user-card-status-action {
        justify-content: stretch;
    }

    .user-card-actions .action-btn,
    .user-card-status-action,
    .user-card-status-action .action-btn {
        width: 100%;
    }

    .property-settings-form {
        grid-template-columns: 1fr;
    }

    .floor-name-grid {
        grid-template-columns: 1fr;
    }

    .property-settings-actions {
        justify-content: stretch;
    }

    .booking-filter-panel,
    .booking-guest-panel,
    .booking-charge-grid,
    .booking-summary-grid {
        grid-template-columns: 1fr;
    }

    .booking-availability-head {
        align-items: center;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid #d8e4ea;
        border-radius: 10px;
        display: flex;
        gap: 10px;
        justify-content: space-between;
        padding: 10px 12px;
        position: sticky;
        top: 74px;
        z-index: 20;
    }

    .booking-availability-head .eyebrow {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .booking-availability-head h2 {
        font-size: 14px;
        margin: 0;
    }

    .booking-availability-head > span {
        flex: 0 0 auto;
        font-size: 11px;
        padding: 5px 8px;
    }

    .booking-detail-banner {
        align-items: stretch;
        display: grid;
        gap: 12px;
    }

    .booking-detail-banner > div:last-child {
        text-align: left;
    }

    .booking-pdf-actions,
    .booking-pdf-action-links,
    .booking-confirm-enquiry-form {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

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

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

    .checkout-summary,
    .checkout-food-add,
    .checkout-payment-grid,
    .checkout-food-row,
    .food-room-summary,
    .food-room-grid,
    .food-order-form,
    .food-order-edit,
    .food-order-view,
    .food-preorder-date {
        grid-template-columns: 1fr;
    }

    .food-order-wide,
    .food-room-actions {
        grid-column: auto;
    }

    .food-order-actions {
        justify-content: flex-start;
    }

    .checkout-actions {
        align-items: stretch;
        display: grid;
    }

    .walkin-proof-upload {
        grid-column: auto;
    }

    .walkin-payment-summary {
        grid-template-columns: 1fr;
    }

    .booking-checkin-actions {
        align-items: stretch;
        display: grid;
    }

    .booking-list-title,
    .booking-pagination {
        align-items: stretch;
        display: grid;
        gap: 8px;
    }

    .booking-list-page-banner {
        padding: 14px;
    }

    .booking-list-page-banner h2 {
        font-size: 21px;
    }

    .booking-list-banner-actions {
        align-items: stretch;
        display: grid !important;
        gap: 10px;
        text-align: left;
    }

    .booking-list-total {
        align-items: end;
        display: flex;
        justify-content: space-between;
        min-width: 0;
    }

    .booking-list-banner-buttons {
        display: grid;
        gap: 8px;
    }

    .booking-list-page-banner > div:last-child .btn {
        justify-self: stretch;
        margin-top: 0;
    }

    .booking-list-shell {
        border-radius: 12px;
    }

    .booking-list-title {
        padding: 12px;
    }

    .booking-list-title > span {
        justify-self: start;
    }

    .booking-list-filters {
        gap: 10px;
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .booking-list-filters.checked-out-filters {
        grid-template-columns: 1fr;
    }

    .booking-list-filters.revenue-filters,
    .revenue-quick-ranges {
        grid-template-columns: 1fr;
    }

    .booking-list-filters .button,
    .booking-clear-btn {
        width: 100%;
    }

    .booking-quick-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 10px 12px;
    }

    .booking-quick-filters a {
        text-align: center;
    }

    .booking-list-table tr {
        margin: 12px 0;
    }

    .booking-list-table td {
        display: block;
        padding: 10px 12px;
        text-align: left;
    }

    .booking-list-table td::before {
        display: block;
        margin-bottom: 5px;
    }

    .booking-list-table td[data-label="S.No"] {
        align-items: center;
        background: #f8fafc;
        display: flex;
        justify-content: space-between;
    }

    .booking-list-table td[data-label="S.No"]::before {
        margin-bottom: 0;
    }

    .booking-list-table .actions-cell::before {
        content: "Actions";
    }

    .booking-list-table td[colspan]::before {
        display: none;
    }

    .booking-list-table tbody td,
    .booking-list-table tbody td strong,
    .booking-list-table tbody td span,
    .booking-list-table .booking-id-link,
    .booking-list-table .muted {
        font-size: 13px;
    }

    .booking-list-actions {
        gap: 8px;
        justify-items: stretch;
    }

    .booking-list-actions .action-btn {
        width: 100%;
    }

    .booking-action-note {
        background: #fef2f2;
        border-radius: 8px;
        padding: 7px 8px;
        text-align: center;
    }

    .booking-pagination {
        padding: 10px 12px;
    }

    .booking-pagination div {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-pagination a {
        text-align: center;
    }

    .booking-category-slots {
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .booking-mode-switch,
    .per-head-booking-grid,
    .per-head-day-row {
        grid-template-columns: 1fr;
    }

    .booking-category-slot-card {
        border-radius: 10px;
        gap: 8px;
        padding: 10px;
    }

    .booking-slot-head {
        align-items: center;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .booking-slot-title h2 {
        font-size: 13px;
        line-height: 1.15;
    }

    .booking-slot-badge {
        font-size: 9px;
        padding: 4px 7px;
    }

    .booking-slot-stats {
        gap: 5px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-slot-stats div {
        min-height: 34px;
        padding: 5px 6px;
    }

    .booking-slot-stats span {
        font-size: 8px;
        letter-spacing: 0;
    }

    .booking-slot-stats strong {
        font-size: 11px;
    }

    .booking-day-availability {
        gap: 3px;
    }

    .booking-day-status {
        font-size: 8px;
        padding: 4px 5px;
    }

    .booking-room-slots {
        gap: 5px;
        grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
    }

    .booking-room-slot {
        font-size: 10px;
        min-height: 28px;
        padding: 5px;
    }

    .booking-selected-card {
        align-items: stretch;
        display: grid;
    }

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

    .room-type-view,
    .room-type-edit {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

    .room-type-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* Public template switcher and Elevation public template */
.public-template-switch {
    align-items: center;
    background: rgba(9, 67, 160, 0.08);
    border: 1px solid rgba(9, 67, 160, 0.12);
    border-radius: 999px;
    display: inline-flex;
    gap: 2px;
    padding: 3px;
}

.public-template-switch a {
    border-radius: 999px;
    color: #4b5563;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    min-height: 30px;
    align-items: center;
    padding: 6px 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.public-template-switch a.active {
    background: #0943A0;
    color: #ffffff;
}

.public-template-classic .vilena-hero-gallery span:nth-child(n+4) {
    display: none;
}

.public-template-elevation {
    --elevation-ink: #17130f;
    --elevation-muted: #756b60;
    --elevation-stone: #3b4148;
    --elevation-roof: #751f25;
    --elevation-gold: #c99a3d;
    --elevation-gold-soft: #f3ddb1;
    --elevation-cream: #fff8ec;
    --elevation-ivory: #f7efe2;
    --elevation-night: #11161d;
    background:
        radial-gradient(circle at 88% 8%, rgba(201, 154, 61, 0.18), transparent 28rem),
        linear-gradient(180deg, #14191f 0, #f7efe2 680px, #fff8ec 100%);
    color: var(--elevation-ink);
    font-family: "Manrope", "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

.public-template-elevation .public-contact-strip {
    background: #11161d;
    border-bottom: 1px solid rgba(201, 154, 61, 0.28);
    color: #f3ddb1;
    min-height: 36px;
}

.public-template-elevation .app-navbar {
    background: rgba(17, 22, 29, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 154, 61, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    min-height: 78px;
}

.public-template-elevation .brand-mark {
    background: linear-gradient(135deg, #f5d99c, #b67a22);
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 10px 24px rgba(0, 0, 0, 0.24);
    color: #24140b;
}

.public-template-elevation .app-navbar .navbar-brand,
.public-template-elevation .app-navbar .nav-link,
.public-template-elevation .app-navbar .navbar-text {
    color: rgba(255, 248, 236, 0.9);
    font-family: "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.01em;
}

.public-template-elevation h3,
.public-template-elevation .button,
.public-template-elevation input,
.public-template-elevation label,
.public-template-elevation p,
.public-template-elevation span,
.public-template-elevation strong,
.public-template-elevation a {
    font-family: "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
}

.public-template-elevation .vilena-kicker,
.public-template-elevation .vilena-room-card span,
.public-template-elevation .vilena-testimonial-card span,
.public-template-elevation .vilena-place-card strong,
.public-template-elevation .vilena-why span {
    letter-spacing: 0.11em;
}

.public-template-elevation .app-navbar .nav-link:hover,
.public-template-elevation .app-navbar .nav-link:focus {
    background: rgba(201, 154, 61, 0.12);
    color: #f3ddb1;
}

.public-template-elevation .public-template-switch {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 154, 61, 0.26);
}

.public-template-elevation .public-template-switch a.active {
    background: linear-gradient(135deg, #f3ddb1, #c99a3d);
    color: #24140b;
}

.public-template-elevation .vilena-hero,
.public-template-elevation .vilena-page-hero {
    background: transparent;
    min-height: 760px;
    overflow: hidden;
    padding: 132px clamp(20px, 5vw, 84px) 120px;
}

.public-template-elevation .vilena-page-hero {
    min-height: 470px;
}

.public-template-elevation .vilena-hero::before,
.public-template-elevation .vilena-page-hero::before {
    animation: none;
    background: var(--hero-image) center / cover no-repeat;
    filter: saturate(1.08) contrast(1.08);
    transform: none;
}

.public-template-elevation .vilena-hero::after,
.public-template-elevation .vilena-page-hero::after {
    background:
        radial-gradient(circle at 72% 32%, rgba(201, 154, 61, 0.22), transparent 18rem),
        linear-gradient(90deg, rgba(17, 22, 29, 0.92), rgba(17, 22, 29, 0.58) 46%, rgba(17, 22, 29, 0.24)),
        linear-gradient(180deg, rgba(17, 22, 29, 0.08), rgba(17, 22, 29, 0.1) 60%, rgba(247, 239, 226, 0.96));
}

.public-template-elevation .vilena-hero-copy {
    max-width: 650px;
    position: relative;
}

.public-template-elevation .vilena-hero-copy::before {
    background: linear-gradient(180deg, #f3ddb1, rgba(243, 221, 177, 0));
    content: "";
    height: 140px;
    left: -28px;
    position: absolute;
    top: 4px;
    width: 3px;
}

.public-template-elevation .vilena-kicker {
    background: rgba(255, 248, 236, 0.1);
    border: 1px solid rgba(243, 221, 177, 0.34);
    color: #f3ddb1;
    padding: 8px 13px;
}

.public-template-elevation .vilena-kicker.dark {
    background: rgba(117, 31, 37, 0.08);
    border-color: rgba(117, 31, 37, 0.18);
    color: var(--elevation-roof);
}

.public-template-elevation .vilena-hero h1,
.public-template-elevation .vilena-page-hero h1 {
    color: #fff8ec;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: clamp(48px, 6.6vw, 92px);
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 760px;
    text-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.public-template-elevation .vilena-hero p,
.public-template-elevation .vilena-page-hero p {
    color: rgba(255, 248, 236, 0.88);
    font-size: 20px;
    max-width: 620px;
}

.public-template-elevation .vilena-actions .button,
.public-template-elevation .button {
    background: linear-gradient(135deg, #8d2630, #5f171c);
    border-color: #8d2630;
    border-radius: 4px;
    box-shadow: 0 16px 34px rgba(117, 31, 37, 0.28);
    color: #ffffff;
}

.public-template-elevation .button.ghost {
    background: rgba(17, 22, 29, 0.24);
    border-color: #f3ddb1;
    color: #f3ddb1;
}

.public-template-elevation .vilena-hero-gallery {
    align-items: stretch;
    bottom: 96px;
    display: grid;
    gap: 12px;
    grid-template-columns: 190px 150px 118px;
    grid-template-rows: 132px 126px 104px;
    right: clamp(22px, 4.4vw, 74px);
    width: 492px;
}

.public-template-elevation .vilena-hero-gallery span {
    animation: none;
    aspect-ratio: auto;
    border: 1px solid rgba(243, 221, 177, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    min-height: 0;
    position: relative;
}

.public-template-elevation .vilena-hero-gallery span::after {
    background: linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.74));
    bottom: 0;
    color: #fff8ec;
    content: "";
    font-size: 10px;
    font-weight: 900;
    left: 0;
    letter-spacing: 0;
    padding: 28px 10px 8px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

.public-template-elevation .vilena-hero-gallery span:nth-child(1)::after {
    content: "Day View";
}

.public-template-elevation .vilena-hero-gallery span:nth-child(2)::after {
    content: "Room";
}

.public-template-elevation .vilena-hero-gallery span:nth-child(3)::after {
    content: "Night Lights";
}

.public-template-elevation .vilena-hero-gallery span:nth-child(4)::after {
    content: "Elevation";
}

.public-template-elevation .vilena-hero-gallery span:nth-child(5)::after {
    content: "Suite";
}

.public-template-elevation .vilena-hero-gallery::before {
    background: rgba(17, 22, 29, 0.56);
    border: 1px solid rgba(243, 221, 177, 0.2);
    content: "";
    inset: -18px;
    position: absolute;
    z-index: -1;
}

.public-template-elevation .vilena-hero-gallery span:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.public-template-elevation .vilena-hero-gallery span:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    margin: 0;
}

.public-template-elevation .vilena-hero-gallery span:nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 3;
    margin: 0;
}

.public-template-elevation .vilena-hero-gallery span:nth-child(4) {
    display: block;
    grid-column: 1;
    grid-row: 3;
}

.public-template-elevation .vilena-hero-gallery span:nth-child(5) {
    display: block;
    grid-column: 3;
    grid-row: 2;
}

.public-template-elevation .vilena-booking-panel {
    background: rgba(255, 248, 236, 0.96);
    border: 1px solid rgba(201, 154, 61, 0.34);
    box-shadow: 0 30px 90px rgba(17, 22, 29, 0.18);
    margin-top: -92px;
    position: relative;
}

.public-template-elevation .vilena-booking-panel::before {
    background: linear-gradient(90deg, transparent, #c99a3d, transparent);
    content: "";
    height: 1px;
    left: 28px;
    position: absolute;
    right: 28px;
    top: 0;
}

.public-template-elevation .vilena-booking-panel label {
    color: var(--elevation-stone);
}

.public-template-elevation .vilena-booking-panel input,
.public-template-elevation .vilena-booking-room-card .booking-form input {
    background: #fffdf8;
    border-color: rgba(117, 31, 37, 0.22);
    border-radius: 4px;
}

.public-template-elevation .vilena-booking-panel input:focus,
.public-template-elevation .vilena-booking-room-card .booking-form input:focus {
    border-color: #c99a3d;
    box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.16);
    outline: 0;
}

.public-template-elevation .vilena-about {
    background: #fff8ec;
    border: 1px solid rgba(201, 154, 61, 0.24);
    box-sizing: border-box;
    box-shadow: 0 26px 80px rgba(42, 31, 19, 0.12);
    gap: 0;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    overflow: hidden;
    padding: 0;
    position: relative;
}

.public-template-elevation .vilena-about::after {
    border: 1px solid rgba(201, 154, 61, 0.3);
    content: "";
    inset: 16px;
    pointer-events: none;
    position: absolute;
}

.public-template-elevation .vilena-about-copy {
    align-content: start;
    background:
        radial-gradient(circle at top left, rgba(201, 154, 61, 0.15), transparent 18rem),
        linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(247, 239, 226, 0.98));
    display: grid;
    min-height: 520px;
    padding: clamp(22px, 2.6vw, 34px) clamp(28px, 5vw, 62px) clamp(28px, 5vw, 62px);
}

.public-template-elevation .vilena-about-image {
    margin: 20px 20px 20px 0;
    min-height: 480px;
}

.public-template-elevation .vilena-about h2,
.public-template-elevation .vilena-section-head h2,
.public-template-elevation .vilena-packages h2,
.public-template-elevation .vilena-pattern-head h2 {
    color: var(--elevation-ink);
    font-family: "Pleasant Lobster", cursive !important;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.05;
}

.public-template-elevation .vilena-about p,
.public-template-elevation .vilena-room-card p,
.public-template-elevation .vilena-package-grid p {
    color: var(--elevation-muted);
}

.public-template-elevation .vilena-amenities span {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.24);
    border-left: 5px solid var(--elevation-gold);
    color: var(--elevation-ink);
}

.public-template-elevation .vilena-gallery-showcase,
.public-template-elevation .vilena-rooms-showcase,
.public-template-elevation .vilena-packages {
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.7), rgba(255, 253, 248, 0.94));
    padding-bottom: 34px;
}

.public-template-elevation .vilena-pattern-head {
    padding-top: 18px;
}

.public-template-elevation .vilena-pattern-head h2 {
    display: inline-block;
    position: relative;
}

.public-template-elevation .vilena-pattern-head h2::before,
.public-template-elevation .vilena-pattern-head h2::after {
    background: #c99a3d;
}

.public-template-elevation .vilena-pattern-head p {
    color: var(--elevation-muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.public-template-elevation .vilena-photo-grid {
    background:
        linear-gradient(135deg, rgba(17, 22, 29, 0.96), rgba(42, 31, 19, 0.92)),
        url('/assets/img/resort/front-night-wide.jpeg') center / cover no-repeat;
    border: 1px solid rgba(201, 154, 61, 0.26);
    box-shadow: 0 26px 80px rgba(42, 31, 19, 0.18);
    gap: 10px;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.72fr) minmax(0, 0.72fr);
    grid-template-rows: repeat(2, minmax(130px, 210px));
    margin: 0 40px;
    padding: 14px;
    position: relative;
}

.public-template-elevation .vilena-photo-grid::before {
    border: 1px solid rgba(243, 221, 177, 0.18);
    content: "";
    inset: 8px;
    pointer-events: none;
    position: absolute;
}

.public-template-elevation .vilena-photo-grid figure {
    border: 1px solid rgba(243, 221, 177, 0.18);
    position: relative;
}

.public-template-elevation .vilena-photo-grid figure:first-child::after {
    background: linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.76));
    bottom: 0;
    color: #fff8ec;
    content: "Pleasant Holiday Resort";
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    left: 0;
    padding: 70px 24px 22px;
    position: absolute;
    right: 0;
}

.public-template-elevation .vilena-photo-grid img {
    border: 8px solid #fffdf8;
    box-shadow: 0 24px 70px rgba(42, 31, 19, 0.18);
}

.public-template-elevation .vilena-photo-grid figure:nth-child(n+6) {
    display: none;
}

.public-template-elevation .vilena-room-card {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.2);
    box-shadow: 0 24px 70px rgba(42, 31, 19, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.public-template-elevation .vilena-room-card:hover {
    box-shadow: 0 30px 88px rgba(42, 31, 19, 0.18);
    transform: translateY(-4px);
}

.public-template-elevation .vilena-room-card > img {
    aspect-ratio: 16 / 11;
}

.public-template-elevation .vilena-room-card > div {
    border-top: 4px solid var(--elevation-gold);
    position: relative;
}

.public-template-elevation .vilena-room-card > div::before {
    background: rgba(201, 154, 61, 0.12);
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 74px;
    z-index: 0;
}

.public-template-elevation .vilena-room-card > div > * {
    position: relative;
    z-index: 1;
}

.public-template-elevation .vilena-room-card span {
    color: var(--elevation-roof);
}

.public-template-elevation .vilena-room-card strong,
.public-template-elevation .vilena-room-card footer a {
    color: var(--elevation-roof);
}

.public-template-elevation .vilena-why {
    background:
        linear-gradient(90deg, rgba(17, 22, 29, 0.94), rgba(42, 31, 19, 0.82)),
        url('/assets/img/resort/front-night-stairs.jpeg') center / cover no-repeat;
    color: #ffffff;
    gap: 28px;
    margin: 28px 0 48px;
    padding: 42px 40px;
}

.public-template-elevation .vilena-why .vilena-pattern-head {
    color: #fff8ec;
    padding: 0;
}

.public-template-elevation .vilena-why .vilena-pattern-head h2 {
    color: #fff8ec;
    font-family: "Pleasant Lobster", cursive !important;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.public-template-elevation .vilena-why .vilena-pattern-head p {
    color: rgba(243, 221, 177, 0.84);
}

.public-template-elevation .vilena-why-grid {
    gap: 18px 22px;
}

.public-template-elevation .vilena-why-grid article {
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(243, 221, 177, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.12);
    min-height: 190px;
    padding: 28px;
    position: relative;
}

.public-template-elevation .vilena-why-grid article::after {
    background: linear-gradient(180deg, #c99a3d, rgba(201, 154, 61, 0));
    content: "";
    height: 72px;
    position: absolute;
    right: 22px;
    top: 24px;
    width: 1px;
}

.public-template-elevation .vilena-why h3,
.public-template-elevation .vilena-why p {
    color: #ffffff;
}

.public-template-elevation .vilena-why span {
    background: rgba(243, 221, 177, 0.1);
    border: 1px solid rgba(243, 221, 177, 0.36);
    color: #f3ddb1;
    font-size: 11px;
    height: auto;
    letter-spacing: 0.08em;
    min-width: 0;
    margin-bottom: 18px;
    padding: 7px 12px;
    text-transform: uppercase;
    width: max-content;
}

.public-template-elevation .vilena-package-grid article {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.2);
    border-top: 5px solid var(--elevation-gold);
    box-shadow: 0 24px 70px rgba(42, 31, 19, 0.12);
    position: relative;
}

.public-template-elevation .vilena-package-grid article::after {
    border: 1px solid rgba(201, 154, 61, 0.2);
    content: "";
    inset: 10px;
    pointer-events: none;
    position: absolute;
}

.public-template-elevation .vilena-package-grid strong {
    color: var(--elevation-roof);
}

.public-template-elevation .vilena-testimonials {
    background:
        linear-gradient(135deg, rgba(17, 22, 29, 0.96), rgba(42, 31, 19, 0.9)),
        url('/assets/img/resort/front-side.jpeg') center / cover no-repeat;
    border-top: 1px solid rgba(243, 221, 177, 0.22);
    border-bottom: 1px solid rgba(243, 221, 177, 0.22);
    box-shadow: 0 26px 80px rgba(42, 31, 19, 0.16);
    margin: 38px 0 54px;
    padding-bottom: 42px;
    padding-top: 42px;
}

.public-template-elevation .vilena-testimonial-intro {
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(243, 221, 177, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.12);
}

.public-template-elevation .vilena-testimonial-intro h2 {
    color: #fff8ec;
    font-family: "Pleasant Lobster", cursive !important;
    font-weight: 400;
}

.public-template-elevation .vilena-testimonial-intro p {
    color: rgba(255, 248, 236, 0.78);
}

.public-template-elevation .vilena-testimonial-card {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    position: relative;
}

.public-template-elevation .vilena-testimonial-card::before {
    color: rgba(201, 154, 61, 0.18);
    content: "“";
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 82px;
    left: 18px;
    line-height: 1;
    position: absolute;
    top: 6px;
}

.public-template-elevation .vilena-testimonial-card > * {
    position: relative;
    z-index: 1;
}

.public-template-elevation .vilena-testimonial-card p {
    color: #4c3f34;
}

.public-template-elevation .vilena-places {
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.82), rgba(247, 239, 226, 0.96));
    margin-bottom: 58px;
    padding-bottom: 36px;
}

.public-template-elevation .vilena-place-grid {
    gap: 26px;
}

.public-template-elevation .vilena-place-card {
    background:
        linear-gradient(180deg, rgba(17, 22, 29, 0.16), rgba(17, 22, 29, 0.82)),
        radial-gradient(circle at 76% 24%, rgba(201, 154, 61, 0.24), transparent 14rem),
        var(--place-image) center / cover no-repeat;
    border: 1px solid rgba(201, 154, 61, 0.3);
    box-shadow: 0 26px 80px rgba(42, 31, 19, 0.16);
    min-height: 430px;
    padding: 34px;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.public-template-elevation .vilena-place-card::before {
    border: 1px solid rgba(243, 221, 177, 0.18);
    content: "";
    inset: 12px;
    pointer-events: none;
    position: absolute;
}

.public-template-elevation .vilena-place-card:hover {
    box-shadow: 0 34px 96px rgba(42, 31, 19, 0.24);
    transform: translateY(-5px);
}

.public-template-elevation .vilena-place-card > div {
    position: relative;
    z-index: 1;
}

.public-template-elevation .vilena-place-card h3 {
    color: #fff8ec;
    font-family: "Pleasant Lobster", cursive !important;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
}

.public-template-elevation .vilena-place-card p {
    color: rgba(255, 248, 236, 0.86);
}

.public-template-elevation .vilena-place-card strong {
    background: rgba(243, 221, 177, 0.14);
    border: 1px solid rgba(243, 221, 177, 0.34);
    color: #f3ddb1;
    display: inline-flex;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.public-template-elevation .vilena-hot-offer {
    align-items: center;
    background:
        radial-gradient(circle at 76% 30%, rgba(201, 154, 61, 0.28), transparent 16rem),
        linear-gradient(90deg, rgba(17, 22, 29, 0.96), rgba(44, 18, 21, 0.9) 56%, rgba(117, 31, 37, 0.82)),
        var(--offer-image, url('/assets/img/resort/front-night-entry.jpeg')) center / cover no-repeat;
    border-top: 1px solid rgba(243, 221, 177, 0.24);
    border-bottom: 1px solid rgba(243, 221, 177, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.14), 0 30px 90px rgba(17, 22, 29, 0.2);
    gap: 28px;
    min-height: 360px;
    padding: clamp(30px, 5vw, 60px);
}

.public-template-elevation .vilena-hot-offer > div {
    max-width: 860px;
}

.public-template-elevation .vilena-hot-offer .vilena-kicker {
    background: rgba(243, 221, 177, 0.12);
    border-color: rgba(243, 221, 177, 0.38);
    color: #f8dfaa;
}

.public-template-elevation .vilena-hot-offer h2 {
    color: #fff8ec;
    font-family: "Pleasant Lobster", cursive !important;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
    line-height: 0.98;
    margin-bottom: 20px;
    max-width: 980px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.public-template-elevation .vilena-hot-offer p {
    color: rgba(255, 248, 236, 0.86);
    font-size: 18px;
    font-weight: 700;
    max-width: 620px;
}

.public-template-elevation .vilena-hot-offer .button {
    background: linear-gradient(135deg, #f3ddb1, #c99a3d);
    border-color: rgba(255, 248, 236, 0.3);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    color: #24140b;
    min-width: 150px;
}

.public-template-elevation .public-footer {
    background: #11161d;
}

.public-template-elevation .public-offer-strip {
    background: #fff8dc;
    border-color: rgba(244, 192, 36, 0.42);
    color: #6f4d00;
}

@media (max-width: 1024px) {
    .public-template-elevation .vilena-about,
    .public-template-elevation .vilena-photo-grid {
        grid-template-columns: 1fr;
    }

    .public-template-elevation .vilena-photo-grid {
        grid-template-rows: none;
    }

    .public-template-elevation .vilena-hero {
        min-height: 700px;
        padding-bottom: 220px;
    }

    .public-template-elevation .vilena-hero-gallery {
        bottom: 46px;
        grid-template-columns: 180px 140px 110px;
        grid-template-rows: 118px 112px 92px;
        left: 24px;
        right: auto;
        width: 454px;
    }

    .public-template-elevation .vilena-photo-grid figure,
    .public-template-elevation .vilena-photo-grid figure:first-child {
        grid-row: auto;
    }

    .public-template-elevation .vilena-photo-grid figure {
        min-height: 220px;
    }

    .public-template-elevation .vilena-about-image {
        margin: 0 20px 20px;
    }
}

@media (max-width: 820px) {
    .public-template-switch {
        margin: 8px 0;
        width: max-content;
    }

    .public-template-elevation .vilena-hero,
    .public-template-elevation .vilena-page-hero {
        min-height: 500px;
        padding: 70px 22px;
    }

    .public-template-elevation .vilena-hero-gallery {
        display: none;
    }

    .public-template-elevation .app-navbar {
        background: rgba(17, 22, 29, 0.96);
    }
}

@media (max-width: 560px) {
    .public-template-elevation .vilena-booking-panel {
        margin-top: -52px;
    }

    .public-template-elevation .vilena-about-copy,
    .public-template-elevation .vilena-about-image {
        min-height: 0;
    }
}

/* Final public heading typography lock: keep both public themes on the same local heading font. */
.public-body h1,
.public-body h2,
.public-body h3,
.public-template-classic h1,
.public-template-classic h2,
.public-template-classic h3,
.public-template-elevation h1,
.public-template-elevation h2,
.public-template-elevation h3,
.public-body .vilena-hero h1,
.public-body .vilena-page-hero h1,
.public-body .vilena-pattern-head h2,
.public-body .vilena-section-head h2,
.public-body .vilena-about h2,
.public-body .vilena-room-card h3,
.public-body .vilena-package-grid h3,
.public-body .vilena-place-card h3,
.public-body .vilena-testimonial-intro h2,
.public-body .vilena-hot-offer h2,
.public-template-elevation .vilena-hero h1,
.public-template-elevation .vilena-pattern-head h2,
.public-template-elevation .vilena-testimonial-intro h2,
.public-template-elevation .vilena-place-card h3,
.public-template-elevation .vilena-hot-offer h2 {
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif !important;
    font-synthesis: none;
    font-weight: 900;
    letter-spacing: 0;
}

.public-template-elevation .vilena-pattern-head p,
.public-template-elevation .vilena-testimonial-intro p {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

/* Hero background slider */
.vilena-hero.has-hero-slider::before {
    animation: none;
    background: transparent;
}

.vilena-hero.has-hero-slider {
    overflow: hidden;
}

.vilena-hero-slider {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute !important;
    z-index: -2 !important;
}

.vilena-hero-slider span {
    animation: heroSlideFade 24s ease-in-out infinite;
    background: var(--slide-image) center / cover no-repeat;
    filter: saturate(1.08) contrast(1.04);
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: scale(1.04);
}

.vilena-hero-slider span:nth-child(2) {
    animation-delay: 6s;
}

.vilena-hero-slider span:nth-child(3) {
    animation-delay: 12s;
}

.vilena-hero-slider span:nth-child(4) {
    animation-delay: 18s;
}

@keyframes heroSlideFade {
    0%,
    100% {
        opacity: 0;
        transform: scale(1.04);
    }

    8%,
    25% {
        opacity: 1;
    }

    33% {
        opacity: 0;
        transform: scale(1.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vilena-hero-slider span {
        animation: none;
    }

    .vilena-hero-slider span:first-child {
        opacity: 1;
    }
}

/* Refined packages section */
.public-body .vilena-packages {
    background:
        radial-gradient(circle at 8% 18%, rgba(201, 154, 61, 0.18), transparent 30%),
        linear-gradient(180deg, #f8ecd8 0%, #f3e4cb 58%, #ead7b8 100%);
    margin-bottom: 0;
    overflow: hidden;
    padding: clamp(38px, 5vw, 64px) 40px clamp(44px, 5vw, 62px);
    position: relative;
}

.public-body .vilena-packages::before {
    background: linear-gradient(90deg, transparent, rgba(201, 154, 61, 0.38), transparent);
    content: "";
    height: 1px;
    left: 40px;
    position: absolute;
    right: 40px;
    top: 0;
}

.public-body .vilena-packages .vilena-pattern-head {
    margin-bottom: 34px;
    padding-top: 0;
}

.public-body .vilena-package-grid {
    gap: 26px;
    margin: 0 auto;
    max-width: 1180px;
}

.public-body .vilena-package-grid article {
    background:
        linear-gradient(180deg, rgba(17, 22, 29, 0.08), rgba(17, 22, 29, 0.88)),
        radial-gradient(circle at 75% 20%, rgba(201, 154, 61, 0.22), transparent 13rem),
        var(--package-image) center / cover no-repeat;
    border: 1px solid rgba(201, 154, 61, 0.3);
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(42, 31, 19, 0.16);
    color: #fff8ec;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 430px;
    overflow: hidden;
    padding: 34px;
    position: relative;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.public-body .vilena-package-grid article::before {
    border: 1px solid rgba(243, 221, 177, 0.18);
    content: "";
    inset: 12px;
    pointer-events: none;
    position: absolute;
}

.public-body .vilena-package-grid article::after {
    display: none;
}

.public-body .vilena-package-grid article:hover {
    box-shadow: 0 34px 96px rgba(42, 31, 19, 0.24);
    transform: translateY(-5px);
}

.public-body .vilena-package-grid .package-tag {
    align-self: flex-start;
    background: rgba(243, 221, 177, 0.14);
    border: 1px solid rgba(243, 221, 177, 0.34);
    border-radius: 999px;
    color: #f3ddb1;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    padding: 7px 11px;
    text-transform: uppercase;
}

.public-body .vilena-package-grid h3 {
    color: #fff8ec;
    font-family: "Pleasant Lobster", cursive !important;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.12;
    margin: 0 0 8px;
}

.public-body .vilena-package-grid strong {
    color: #f3ddb1;
    display: block;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.public-body .vilena-package-grid p {
    color: rgba(255, 248, 236, 0.86);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.public-body .vilena-package-grid .button {
    align-self: flex-start;
    background: rgba(243, 221, 177, 0.14);
    border: 1px solid rgba(243, 221, 177, 0.42);
    border-radius: 4px;
    box-shadow: none;
    color: #fff8ec;
    margin-top: auto;
    min-height: 44px;
    padding: 11px 20px;
}

.public-body .vilena-package-grid .button:hover,
.public-body .vilena-package-grid .button:focus {
    background: linear-gradient(135deg, #f3ddb1, #c99a3d);
    color: #24140b;
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 820px) {
    .public-body .vilena-packages {
        padding-left: 18px;
        padding-right: 18px;
    }

    .public-body .vilena-packages::before {
        left: 18px;
        right: 18px;
    }

    .public-body .vilena-package-grid article {
        min-height: 0;
        padding: 30px;
    }
}

@media (max-width: 560px) {
    .public-body .vilena-packages {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 30px;
    }

    .public-body .vilena-packages::before {
        left: 10px;
        right: 10px;
    }

    .public-body .vilena-package-grid article {
        min-height: 340px;
        padding: 26px;
    }

    .public-body .vilena-package-grid article::before {
        inset: 10px;
    }

    .public-body .vilena-package-grid .button {
        justify-content: center;
        width: 100%;
    }
}

/* Mobile room cards */
@media (max-width: 700px) {
    .public-body .vilena-rooms-showcase {
        padding: 44px 12px 54px;
    }

    .public-body .vilena-rooms-showcase .vilena-room-grid {
        gap: 26px;
        margin-left: auto;
        margin-right: auto;
        max-width: 390px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card {
        border: 1px solid rgba(201, 154, 61, 0.18);
        border-radius: 8px;
        box-shadow: 0 18px 46px rgba(42, 31, 19, 0.12);
        box-sizing: border-box;
        width: 100%;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card > img,
    .public-body .vilena-rooms-showcase .vilena-room-card > div {
        box-sizing: border-box;
        width: 100%;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card > img {
        aspect-ratio: 16 / 11;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card > div {
        gap: 12px;
        padding: 22px;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card h3 {
        font-size: 23px;
        line-height: 1.15;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card p {
        font-size: 15px;
        line-height: 1.5;
    }

    .public-body .vilena-room-card footer,
    .public-body .vilena-room-card .room-footer {
        align-items: flex-start;
        display: grid;
        gap: 14px;
        justify-content: stretch;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card strong {
        font-size: 23px;
        line-height: 1.2;
    }

    .public-body .vilena-rooms-showcase .vilena-room-card footer a {
        background: linear-gradient(135deg, #8d2630, #5f171c);
        border: 0;
        border-radius: 4px;
        box-shadow: 0 14px 28px rgba(123, 35, 40, 0.22);
        color: #ffffff;
        min-height: 46px;
        width: 100%;
    }
}

/* Clean room-card content fill */
.public-body .vilena-rooms-showcase .vilena-room-card > div,
.public-body .vilena-booking-room-card > div {
    background: #fffdf8;
}

.public-body .vilena-rooms-showcase .vilena-room-card > div::before,
.public-body .vilena-booking-room-card > div::before {
    display: none;
}

/* Professional gallery refresh */
.public-body .vilena-gallery-showcase {
    background:
        radial-gradient(circle at 14% 12%, rgba(201, 154, 61, 0.14), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #f7efe1 100%);
    margin-bottom: 0;
    overflow: hidden;
    padding: clamp(24px, 3vw, 40px) clamp(14px, 3vw, 42px) clamp(42px, 5vw, 70px);
}

.public-body .vilena-gallery-showcase .vilena-pattern-head {
    margin-bottom: clamp(28px, 4vw, 42px);
}

.public-body .vilena-gallery-showcase .vilena-pattern-head h2 {
    color: #000000;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.08;
    text-shadow: 0 16px 38px rgba(42, 31, 19, 0.12);
}

.public-body .vilena-gallery-showcase .vilena-pattern-head h2::before,
.public-body .vilena-gallery-showcase .vilena-pattern-head h2::after {
    background: linear-gradient(90deg, transparent, #c99a3d, transparent);
}

.public-body .vilena-gallery-showcase .vilena-pattern-head p {
    color: #7a6a59;
    letter-spacing: 0.28em;
}

.public-body .vilena-photo-grid {
    background:
        linear-gradient(135deg, rgba(23, 19, 15, 0.94), rgba(55, 43, 31, 0.9)),
        url('/assets/img/resort/front-night-wide.jpeg') center / cover no-repeat;
    border: 1px solid rgba(201, 154, 61, 0.32);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(42, 31, 19, 0.18);
    gap: 14px;
    grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(0, 0.78fr));
    grid-template-rows: repeat(2, minmax(170px, 235px));
    margin: 0 auto;
    max-width: 1280px;
    padding: 18px;
    position: relative;
}

.public-body .vilena-photo-grid::before {
    border: 1px solid rgba(243, 221, 177, 0.18);
    border-radius: 6px;
    content: "";
    inset: 8px;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.public-body .vilena-photo-grid figure {
    background: #fff8ec;
    border: 1px solid rgba(243, 221, 177, 0.24);
    border-radius: 4px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
    isolation: isolate;
    position: relative;
}

.public-body .vilena-photo-grid figure:nth-child(n+6) {
    display: none;
}

.public-body .vilena-photo-grid img {
    border: 8px solid #fffaf0;
    box-shadow: none;
    filter: saturate(1.03) contrast(1.02);
    transition: filter 180ms ease, transform 220ms ease;
}

.public-body .vilena-photo-grid figure:hover img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.035);
}

.public-body .vilena-photo-grid figcaption {
    background: linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.86));
    bottom: 0;
    color: #fff8ec;
    font-size: 11px;
    font-weight: 900;
    left: 0;
    letter-spacing: 0.12em;
    line-height: 1.3;
    padding: 54px 18px 16px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    z-index: 1;
}

.public-body .vilena-photo-grid figure:first-child figcaption {
    font-family: "Pleasant Lobster", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 1024px) {
    .public-body .vilena-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .public-body .vilena-photo-grid figure:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 320px;
    }

    .public-body .vilena-photo-grid figure {
        min-height: 210px;
    }
}

@media (max-width: 640px) {
    .public-body .vilena-gallery-showcase {
        padding-left: 10px;
        padding-right: 10px;
    }

    .public-body .vilena-gallery-showcase .vilena-pattern-head p {
        letter-spacing: 0.16em;
    }

    .public-body .vilena-photo-grid {
        gap: 12px;
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .public-body .vilena-photo-grid figure,
    .public-body .vilena-photo-grid figure:first-child {
        grid-column: auto;
        min-height: 230px;
    }

.public-body .vilena-photo-grid img {
    border-width: 6px;
    }
}

/* About page */
.about-hero {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(17, 22, 29, 0.9), rgba(17, 22, 29, 0.48) 54%, rgba(17, 22, 29, 0.16)),
        var(--about-hero-image) center / cover no-repeat;
    color: #fff8ec;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    padding: clamp(64px, 8vw, 118px) clamp(22px, 5vw, 82px);
    position: relative;
}

.about-hero::after {
    background: linear-gradient(180deg, transparent, rgba(247, 239, 226, 0.96));
    bottom: 0;
    content: "";
    height: 110px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.about-hero > div {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.about-hero h1,
.about-story h2,
.about-experience h2 {
    color: inherit;
    font-family: "Pleasant Lobster", Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.02;
    margin: 0 0 18px;
}

.about-hero p,
.about-experience p {
    color: rgba(255, 248, 236, 0.88);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 700;
    line-height: 1.65;
    max-width: 620px;
}

.about-story {
    background: linear-gradient(180deg, #fff8ec, #f7efe2);
    display: grid;
    gap: clamp(28px, 4vw, 54px);
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    padding: clamp(48px, 6vw, 86px) clamp(20px, 5vw, 74px);
}

.about-story-image {
    background:
        linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.24)),
        var(--story-image) center / cover no-repeat;
    border: 1px solid rgba(201, 154, 61, 0.28);
    box-shadow: 0 28px 80px rgba(42, 31, 19, 0.16);
    min-height: 470px;
}

.about-story-copy {
    align-content: center;
    display: grid;
}

.about-story-copy h2 {
    color: #20150f;
    font-size: clamp(38px, 4vw, 58px);
}

.about-story-copy p {
    color: #6f6258;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.72;
}

.about-contact-card {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.24);
    box-shadow: 0 18px 52px rgba(42, 31, 19, 0.1);
    display: grid;
    gap: 4px;
    margin-top: 20px;
    max-width: 420px;
    padding: 22px;
}

.about-contact-card strong {
    color: #8d2630;
    font-size: 18px;
}

.about-contact-card span {
    color: #4c3f34;
    font-weight: 800;
}

.about-stats {
    background: #17130f;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-stats article {
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03));
    color: #fff8ec;
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 34px 18px;
    text-align: center;
}

.about-stats strong {
    color: #f3ddb1;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.about-stats span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-values {
    background: linear-gradient(180deg, #f7efe2, #fffaf0);
    padding: clamp(42px, 5vw, 72px) clamp(18px, 5vw, 70px);
}

.about-value-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.about-value-grid article {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.22);
    box-shadow: 0 20px 58px rgba(42, 31, 19, 0.1);
    padding: 28px;
}

.about-value-grid h3 {
    color: #20150f;
    font-size: 24px;
    font-weight: 900;
}

.about-value-grid p {
    color: #6f6258;
    font-weight: 700;
    line-height: 1.62;
}

.about-experience {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(17, 22, 29, 0.88), rgba(17, 22, 29, 0.36)),
        var(--experience-image) center / cover no-repeat;
    color: #fff8ec;
    display: flex;
    min-height: 420px;
    padding: clamp(50px, 6vw, 84px) clamp(22px, 5vw, 78px);
}

.about-experience > div {
    max-width: 760px;
}

@media (max-width: 900px) {
    .about-story,
    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .about-hero,
    .about-experience {
        min-height: 420px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-story,
    .about-values {
        grid-template-columns: minmax(0, 1fr);
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-story > *,
    .about-contact-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Public information pages */
.info-hero {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(17, 22, 29, 0.9), rgba(17, 22, 29, 0.52) 56%, rgba(17, 22, 29, 0.22)),
        var(--info-hero-image) center / cover no-repeat;
    color: #fff8ec;
    display: flex;
    min-height: 500px;
    padding: clamp(62px, 7vw, 108px) clamp(22px, 5vw, 82px);
    position: relative;
}

.info-hero.compact {
    min-height: 440px;
}

.info-hero::after {
    background: linear-gradient(180deg, transparent, rgba(247, 239, 226, 0.96));
    bottom: 0;
    content: "";
    height: 96px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.info-hero > div {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.info-hero h1,
.info-split h2,
.info-cta h2,
.contact-panel h2 {
    color: inherit;
    font-family: "Pleasant Lobster", Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.4vw, 78px);
    font-weight: 400;
    line-height: 1.04;
    margin: 0 0 18px;
}

.info-hero p,
.info-cta p {
    color: rgba(255, 248, 236, 0.88);
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.65;
    max-width: 680px;
}

.info-split {
    background: linear-gradient(180deg, #fff8ec, #f7efe2);
    display: grid;
    gap: clamp(28px, 4vw, 56px);
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    padding: clamp(48px, 6vw, 86px) clamp(20px, 5vw, 74px);
}

.info-split-copy {
    align-content: center;
    display: grid;
}

.info-split h2,
.contact-panel h2 {
    color: #20150f;
    font-size: clamp(38px, 4vw, 58px);
}

.info-split p,
.contact-panel p,
.places-grid p,
.info-card-grid p {
    color: #6f6258;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
}

.info-split-image {
    background:
        linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.22)),
        var(--split-image) center / cover no-repeat;
    border: 1px solid rgba(201, 154, 61, 0.28);
    box-shadow: 0 28px 80px rgba(42, 31, 19, 0.16);
    min-height: 460px;
}

.info-card-section,
.places-section {
    background: linear-gradient(180deg, #f7efe2, #fffaf0);
    padding: clamp(42px, 5vw, 72px) clamp(18px, 5vw, 70px);
}

.info-card-grid,
.places-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.info-card-grid article,
.places-grid article,
.contact-panel,
.contact-card {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.22);
    box-shadow: 0 20px 58px rgba(42, 31, 19, 0.1);
}

.info-card-grid article,
.places-grid article {
    padding: 28px;
}

.info-card-grid h3,
.places-grid h3,
.contact-card h3 {
    color: #20150f;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.22;
}

.places-grid span {
    color: #c99a3d;
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    margin-bottom: 22px;
}

.info-gallery-band {
    background: #17130f;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1px;
}

.info-gallery-band figure {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
}

.info-gallery-band img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.info-cta {
    align-items: center;
    background: #17130f;
    color: #fff8ec;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding: clamp(38px, 5vw, 68px) clamp(20px, 5vw, 74px);
}

.info-cta > div {
    max-width: 780px;
}

.info-cta h2 {
    font-size: clamp(36px, 4vw, 58px);
}

.contact-section {
    background: linear-gradient(180deg, #fff8ec, #f7efe2);
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    padding: clamp(48px, 6vw, 86px) clamp(20px, 5vw, 74px);
}

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

.terms-full-panel {
    width: 100%;
}

.contact-panel,
.contact-card {
    padding: clamp(26px, 4vw, 44px);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-list a,
.contact-list div {
    background: #fff8ec;
    border: 1px solid rgba(201, 154, 61, 0.22);
    color: #3a2723;
    display: grid;
    gap: 4px;
    padding: 18px;
    text-decoration: none;
}

.contact-list strong {
    color: #8d2630;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-list span,
.contact-card p {
    color: #5f5147;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .info-card-grid,
    .places-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .info-split,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .info-split-image {
        min-height: 300px;
    }

    .info-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .info-hero,
    .info-hero.compact {
        min-height: 420px;
    }

    .info-card-grid,
    .places-grid,
    .info-gallery-band {
        grid-template-columns: 1fr;
    }

    .info-split,
    .info-card-section,
    .places-section,
    .contact-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .contact-panel,
    .contact-card {
        min-width: 0;
        padding: 22px;
        width: 100%;
    }

    .contact-list a,
    .contact-list div,
    .contact-list span,
    .contact-card p {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* Why Marayoor feature page */
.marayoor-hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(15, 18, 15, 0.94), rgba(15, 18, 15, 0.56) 52%, rgba(15, 18, 15, 0.2)),
        var(--marayoor-hero-image) center / cover no-repeat;
    color: #fff8ec;
    display: grid;
    gap: clamp(26px, 4vw, 48px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    min-height: 620px;
    overflow: hidden;
    padding: clamp(70px, 8vw, 118px) clamp(22px, 5vw, 82px);
    position: relative;
}

.marayoor-hero::after {
    background:
        linear-gradient(180deg, transparent, rgba(247, 239, 226, 0.98)),
        radial-gradient(circle at 24% 100%, rgba(201, 154, 61, 0.22), transparent 34%);
    bottom: 0;
    content: "";
    height: 120px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.marayoor-hero-copy,
.marayoor-hero-card {
    position: relative;
    z-index: 1;
}

.marayoor-hero-copy {
    max-width: 820px;
}

.marayoor-hero h1 {
    color: inherit;
    font-family: "Pleasant Lobster", Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6.5vw, 94px);
    font-weight: 400;
    line-height: 0.98;
    margin: 0 0 22px;
    max-width: 900px;
}

.marayoor-hero p {
    color: rgba(255, 248, 236, 0.9);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 800;
    line-height: 1.7;
    max-width: 650px;
}

.marayoor-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.marayoor-hero-card {
    align-self: end;
    backdrop-filter: blur(18px);
    background: rgba(255, 248, 236, 0.12);
    border: 1px solid rgba(255, 248, 236, 0.24);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    padding: 28px;
}

.marayoor-hero-card span,
.marayoor-card-grid span {
    color: #f3ddb1;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.marayoor-hero-card strong {
    color: #ffffff;
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.12;
    margin: 12px 0;
}

.marayoor-hero-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.marayoor-facts {
    background: #17130f;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 1px;
}

.marayoor-facts article {
    background:
        linear-gradient(135deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.025)),
        radial-gradient(circle at top left, rgba(201, 154, 61, 0.18), transparent 34%);
    color: #fff8ec;
    display: grid;
    gap: 8px;
    padding: 34px 22px;
    text-align: center;
}

.marayoor-facts strong {
    color: #f3ddb1;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.marayoor-facts span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.marayoor-intro {
    background:
        radial-gradient(circle at 10% 16%, rgba(201, 154, 61, 0.16), transparent 28rem),
        linear-gradient(180deg, #fff8ec, #f7efe2);
    display: grid;
    gap: clamp(30px, 5vw, 70px);
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    padding: clamp(52px, 6vw, 92px) clamp(18px, 5vw, 78px);
}

.marayoor-intro-copy {
    align-content: center;
    display: grid;
}

.marayoor-intro h2,
.marayoor-cta h2 {
    color: #20150f;
    font-family: "Pleasant Lobster", Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.8vw, 70px);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 22px;
}

.marayoor-intro p,
.marayoor-card-grid p,
.marayoor-cta p {
    color: #6f6258;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.72;
}

.marayoor-collage {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, minmax(170px, 1fr));
    min-height: 520px;
}

.marayoor-collage figure {
    background:
        linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.26)),
        var(--collage-image) center / cover no-repeat;
    border: 8px solid #fffdf8;
    box-shadow: 0 24px 70px rgba(42, 31, 19, 0.14);
    margin: 0;
    min-height: 0;
}

.marayoor-collage figure.large {
    grid-row: 1 / 3;
}

.marayoor-special {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 154, 61, 0.16), transparent 34rem),
        linear-gradient(180deg, #f7efe2, #fffaf0 62%, #f7efe2);
    padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.marayoor-special .vilena-pattern-head {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.marayoor-special .vilena-pattern-head h2 {
    color: #18110d;
    font-size: clamp(40px, 4.8vw, 68px);
}

.marayoor-special .vilena-pattern-head h2::after {
    background: linear-gradient(90deg, transparent, #c99a3d, transparent);
    content: "";
    display: block;
    height: 1px;
    margin: 14px auto 0;
    width: min(220px, 42vw);
}

.marayoor-special .vilena-pattern-head p {
    color: #7a6654;
    letter-spacing: 0.28em;
}

.marayoor-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1220px;
}

.marayoor-card-grid article {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 236, 0.96)),
        radial-gradient(circle at 18% 8%, rgba(201, 154, 61, 0.2), transparent 36%);
    border: 1px solid rgba(201, 154, 61, 0.24);
    box-shadow: 0 24px 70px rgba(42, 31, 19, 0.1);
    min-height: 330px;
    overflow: hidden;
    padding: 34px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.marayoor-card-grid article::before {
    background: linear-gradient(180deg, #8d2630, #c99a3d);
    content: "";
    height: 74px;
    left: 0;
    position: absolute;
    top: 34px;
    width: 3px;
}

.marayoor-card-grid article::after {
    border: 1px solid rgba(201, 154, 61, 0.18);
    content: "";
    inset: 12px;
    pointer-events: none;
    position: absolute;
}

.marayoor-card-grid article:hover {
    border-color: rgba(201, 154, 61, 0.42);
    box-shadow: 0 32px 88px rgba(42, 31, 19, 0.16);
    transform: translateY(-6px);
}

.marayoor-card-grid span {
    color: #a76b2b;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.marayoor-card-grid h3 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.marayoor-card-grid p {
    position: relative;
    z-index: 1;
}

.marayoor-cta {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(23, 19, 15, 0.96), rgba(23, 19, 15, 0.86)),
        url('/uploads/gallery/2026/06/resort-front-main.jpeg') center / cover no-repeat;
    color: #fff8ec;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding: clamp(42px, 5vw, 72px) clamp(20px, 5vw, 78px);
}

.marayoor-cta h2 {
    color: #fff8ec;
    font-size: clamp(38px, 4.4vw, 64px);
}

.marayoor-cta p {
    color: rgba(255, 248, 236, 0.82);
    max-width: 690px;
}

@media (max-width: 1100px) {
    .marayoor-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marayoor-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .marayoor-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .marayoor-hero-card {
        max-width: 460px;
    }

    .marayoor-facts,
    .marayoor-card-grid {
        grid-template-columns: 1fr;
    }

    .marayoor-collage {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    .marayoor-collage figure,
    .marayoor-collage figure.large {
        grid-row: auto;
        min-height: 240px;
    }

    .marayoor-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .marayoor-hero {
        gap: 22px;
        padding: 42px 18px 62px;
    }

    .marayoor-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        margin-bottom: 16px;
    }

    .marayoor-hero p {
        font-size: 16px;
        line-height: 1.58;
    }

    .marayoor-hero-actions {
        margin-top: 20px;
    }

    .marayoor-hero-card {
        padding: 22px;
    }

    .marayoor-hero-actions .button {
        justify-content: center;
        width: 100%;
    }

    .marayoor-intro,
    .marayoor-special {
        padding-left: 14px;
        padding-right: 14px;
    }

    .marayoor-card-grid article {
        min-height: 0;
    }
}

/* Visiting Places feature page */
.places-hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(18, 16, 13, 0.94), rgba(18, 16, 13, 0.58) 54%, rgba(18, 16, 13, 0.24)),
        var(--places-hero-image) center / cover no-repeat;
    color: #fff8ec;
    display: grid;
    gap: clamp(26px, 4vw, 52px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    min-height: 580px;
    overflow: hidden;
    padding: clamp(64px, 8vw, 112px) clamp(22px, 5vw, 82px);
    position: relative;
}

.places-hero::after {
    background: linear-gradient(180deg, transparent, rgba(247, 239, 226, 0.98));
    bottom: 0;
    content: "";
    height: 112px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.places-hero-copy,
.places-hero-note {
    position: relative;
    z-index: 1;
}

.places-hero-copy {
    max-width: 820px;
}

.places-hero h1,
.places-feature h2,
.places-cta h2 {
    color: inherit;
    font-family: "Pleasant Lobster", Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6.2vw, 90px);
    font-weight: 400;
    line-height: 0.98;
    margin: 0 0 22px;
}

.places-hero p {
    color: rgba(255, 248, 236, 0.9);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 800;
    line-height: 1.68;
    max-width: 660px;
}

.places-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.places-hero-note {
    backdrop-filter: blur(18px);
    background: rgba(255, 248, 236, 0.12);
    border: 1px solid rgba(255, 248, 236, 0.24);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    padding: 28px;
}

.places-hero-note span,
.places-luxe-grid small {
    color: #f3ddb1;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.places-hero-note strong {
    color: #fff;
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.12;
    margin: 12px 0;
}

.places-hero-note p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.places-feature {
    background:
        radial-gradient(circle at 88% 0%, rgba(201, 154, 61, 0.16), transparent 30rem),
        linear-gradient(180deg, #fff8ec, #f7efe2);
    display: grid;
    gap: clamp(30px, 5vw, 68px);
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    padding: clamp(52px, 6vw, 92px) clamp(18px, 5vw, 78px);
}

.places-feature-image {
    background:
        linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.22)),
        var(--feature-image) center / cover no-repeat;
    border: 10px solid #fffdf8;
    box-shadow: 0 30px 82px rgba(42, 31, 19, 0.16);
    min-height: 500px;
}

.places-feature-copy {
    align-content: center;
    display: grid;
}

.places-feature h2 {
    color: #20150f;
    font-size: clamp(42px, 4.7vw, 70px);
}

.places-feature p,
.places-luxe-grid p,
.places-cta p {
    color: #6f6258;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.72;
}

.places-luxe-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 154, 61, 0.14), transparent 34rem),
        linear-gradient(180deg, #f7efe2, #fffaf0 62%, #f7efe2);
    padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.places-luxe-section .vilena-pattern-head {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.places-luxe-section .vilena-pattern-head h2 {
    color: #18110d;
    font-size: clamp(40px, 4.8vw, 68px);
}

.places-luxe-section .vilena-pattern-head h2::after {
    background: linear-gradient(90deg, transparent, #c99a3d, transparent);
    content: "";
    display: block;
    height: 1px;
    margin: 14px auto 0;
    width: min(220px, 42vw);
}

.places-luxe-section .vilena-pattern-head p {
    color: #7a6654;
    letter-spacing: 0.28em;
}

.places-luxe-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.places-luxe-grid article {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 236, 0.96)),
        radial-gradient(circle at 16% 10%, rgba(201, 154, 61, 0.18), transparent 36%);
    border: 1px solid rgba(201, 154, 61, 0.24);
    box-shadow: 0 24px 70px rgba(42, 31, 19, 0.1);
    min-height: 310px;
    overflow: hidden;
    padding: 32px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.places-luxe-grid article::before {
    background: linear-gradient(180deg, #8d2630, #c99a3d);
    content: "";
    height: 70px;
    left: 0;
    position: absolute;
    top: 34px;
    width: 3px;
}

.places-luxe-grid article::after {
    border: 1px solid rgba(201, 154, 61, 0.18);
    content: "";
    inset: 12px;
    pointer-events: none;
    position: absolute;
}

.places-luxe-grid article:hover {
    border-color: rgba(201, 154, 61, 0.42);
    box-shadow: 0 32px 88px rgba(42, 31, 19, 0.16);
    transform: translateY(-6px);
}

.places-luxe-grid .place-number {
    color: #a76b2b;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.places-luxe-grid small {
    color: #8d2630;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.places-luxe-grid h3 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.places-luxe-grid p {
    position: relative;
    z-index: 1;
}

.places-image-band {
    background: #17130f;
    display: grid;
    gap: 1px;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    padding: 1px;
}

.places-image-band figure {
    background:
        linear-gradient(180deg, transparent, rgba(17, 22, 29, 0.24)),
        var(--band-image) center / cover no-repeat;
    aspect-ratio: 4 / 3;
    margin: 0;
    min-height: 280px;
}

.places-image-band .wide {
    aspect-ratio: auto;
}

.places-cta {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(23, 19, 15, 0.96), rgba(23, 19, 15, 0.86)),
        url('/uploads/gallery/2026/06/pleasant-holiday-resort-road.jpeg') center / cover no-repeat;
    color: #fff8ec;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding: clamp(42px, 5vw, 72px) clamp(20px, 5vw, 78px);
}

.places-cta h2 {
    color: #fff8ec;
    font-size: clamp(38px, 4.4vw, 64px);
}

.places-cta p {
    color: rgba(255, 248, 236, 0.82);
    max-width: 690px;
}

@media (max-width: 1100px) {
    .places-feature {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 780px) {
    .places-hero,
    .places-luxe-grid,
    .places-image-band {
        grid-template-columns: 1fr;
    }

    .places-feature-image,
    .places-image-band figure {
        min-height: 250px;
    }

    .places-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .places-hero {
        gap: 22px;
        min-height: 0;
        padding: 42px 18px 62px;
    }

    .places-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        margin-bottom: 16px;
    }

    .places-hero p {
        font-size: 16px;
        line-height: 1.58;
    }

    .places-hero-actions {
        margin-top: 20px;
    }

    .places-hero-actions .button {
        justify-content: center;
        width: 100%;
    }

    .places-hero-note {
        padding: 22px;
    }

    .places-feature,
    .places-luxe-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .places-luxe-grid article {
        min-height: 0;
    }

    .places-image-band {
        padding-left: 0;
        padding-right: 0;
    }

    .places-image-band figure,
    .places-image-band .wide {
        aspect-ratio: 4 / 3;
        min-height: 220px;
        width: 100%;
    }
}

/* Premium booking strip */
.public-body .vilena-booking-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #0943A0;
    border: 1px solid rgba(255, 248, 236, 0.08);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(19, 14, 10, 0.28);
    margin: -58px clamp(14px, 2vw, 28px) 62px;
    max-width: none;
    padding: clamp(20px, 2vw, 30px);
    position: relative;
    width: auto;
    z-index: 4;
}

.public-body .vilena-hero,
.public-body .vilena-hero-slider {
    overflow: hidden;
}

.public-body .vilena-booking-panel form {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(170px, 1.4fr) minmax(170px, 1.4fr) minmax(100px, 0.75fr) minmax(100px, 0.75fr) minmax(150px, 1fr) minmax(110px, 0.75fr);
    position: relative;
}

.public-body .vilena-booking-panel label,
.public-body .luxury-date-field {
    color: #d9a441;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 10px;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.public-body .vilena-booking-panel input {
    background: #07377f;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    min-height: 54px;
    padding: 12px 18px;
    width: 100%;
}

.public-body .luxury-date-field > span {
    color: #d9a441;
}

.public-body .luxury-date-field button {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        #07377f;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #ffffff;
    display: grid;
    gap: 4px;
    min-height: 54px;
    padding: 10px 18px;
    text-align: left;
    width: 100%;
}

.public-body .luxury-date-field button:hover,
.public-body .luxury-date-field button:focus {
    border-color: rgba(217, 164, 65, 0.72);
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.16);
    outline: 0;
}

.public-body .luxury-date-field strong {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.1;
}

.public-body .luxury-date-field small {
    color: rgba(255, 248, 236, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.public-body .luxury-calendar-popover {
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 236, 0.98)),
        #fffdf8;
    border: 1px solid rgba(217, 164, 65, 0.36);
    box-shadow: 0 34px 110px rgba(19, 14, 10, 0.38);
    color: #20150f;
    left: var(--calendar-left, 12px);
    max-width: 340px;
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 10px;
    position: fixed;
    right: auto;
    top: var(--calendar-top, 96px);
    width: min(340px, calc(100vw - 24px));
    z-index: 1000;
}

.public-body .luxury-calendar-popover::before {
    background: linear-gradient(90deg, #8d2630, #d9a441);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.public-body .luxury-calendar-head,
.public-body .luxury-calendar-foot {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.public-body .luxury-calendar-head {
    padding: 2px 2px 8px;
}

.public-body .luxury-calendar-head > div {
    text-align: center;
}

.public-body .luxury-calendar-head span {
    color: #8d2630;
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.public-body .luxury-calendar-head strong {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.public-body .luxury-calendar-head button,
.public-body .luxury-calendar-foot button {
    align-items: center;
    background: #17130f;
    border: 1px solid rgba(217, 164, 65, 0.22);
    color: #fff8ec;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
}

.public-body .luxury-calendar-head button {
    border-radius: 999px;
    font-size: 16px;
    height: 28px;
    width: 28px;
}

.public-body .luxury-calendar-weekdays {
    color: #9a7d5b;
    display: grid;
    font-size: 10px;
    font-weight: 900;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    text-align: center;
    text-transform: uppercase;
}

.public-body .luxury-calendar-months {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}

.public-body .luxury-calendar-month {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(201, 154, 61, 0.2);
    padding: 8px;
}

.public-body .luxury-calendar-month h3 {
    color: #20150f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin: 0 0 8px;
    text-align: center;
    text-transform: uppercase;
}

.public-body .luxury-calendar-grid {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.public-body .luxury-calendar-day {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.18);
    color: #2b1d17;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    height: 30px;
    min-height: 30px;
    place-items: center;
}

.public-body .luxury-calendar-day:not(:disabled):hover,
.public-body .luxury-calendar-day:not(:disabled):focus {
    background: #fff8ec;
    border-color: #d9a441;
    outline: 0;
}

.public-body .luxury-calendar-day.is-muted {
    opacity: 0;
    pointer-events: none;
}

.public-body .luxury-calendar-day:disabled {
    background: #f3eee5;
    color: #b8aa9b;
    cursor: not-allowed;
    opacity: 0.55;
}

.public-body .luxury-calendar-day.is-start,
.public-body .luxury-calendar-day.is-end {
    background: #8d2630;
    border-color: #8d2630;
    color: #fff8ec;
}

.public-body .luxury-calendar-day.is-in-range {
    background: #f3ddb1;
    border-color: rgba(217, 164, 65, 0.45);
    color: #20150f;
}

.public-body .luxury-calendar-day.is-today {
    box-shadow: inset 0 0 0 2px #d9a441;
}

.public-body .luxury-calendar-foot {
    border-top: 1px solid rgba(201, 154, 61, 0.22);
    color: #76675f;
    font-size: 11px;
    font-weight: 800;
    margin-top: 8px;
    padding-top: 8px;
}

.public-body .luxury-calendar-foot button {
    background: linear-gradient(135deg, #e1b452, #d5a33f);
    border-color: #d5a33f;
    color: #0f0f0f;
    min-height: 30px;
    padding: 6px 14px;
}

.public-body .vilena-booking-panel input:focus {
    border-color: rgba(217, 164, 65, 0.72);
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.16);
    outline: 0;
}

.public-body .vilena-booking-panel input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.4);
    opacity: 0.86;
}

.public-body .vilena-booking-panel .button,
.public-body .vilena-booking-panel .booking-reset {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 18px;
    font-weight: 900;
    justify-content: center;
    min-height: 54px;
    padding: 12px 20px;
    text-decoration: none;
    white-space: nowrap;
}

.public-body .vilena-booking-panel .button {
    background: linear-gradient(135deg, #e1b452, #d5a33f);
    border: 1px solid #d5a33f;
    box-shadow: none;
    color: #0f0f0f;
}

.public-body .vilena-booking-panel .button:hover,
.public-body .vilena-booking-panel .button:focus {
    background: linear-gradient(135deg, #edc369, #d9a441);
    color: #0f0f0f;
    transform: none;
}

.public-body .vilena-booking-panel .booking-reset {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.public-body .vilena-booking-panel .booking-reset:hover,
.public-body .vilena-booking-panel .booking-reset:focus {
    border-color: rgba(217, 164, 65, 0.66);
    color: #f3ddb1;
}

.public-body.public-template-elevation .vilena-booking-panel {
    background: #121212;
    border-color: rgba(255, 248, 236, 0.08);
}

.public-body.public-template-elevation .vilena-booking-panel input {
    background: #1a1a1a;
}

.public-body.public-template-elevation .luxury-date-field button {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        #1a1a1a;
}

/* Home page button treatment */
.public-body .vilena-hero .button,
.public-body .vilena-booking-panel .button,
.public-body .vilena-rooms-showcase .button,
.public-body .vilena-testimonials .button,
.public-body .vilena-package-grid .button,
.public-body .vilena-hot-offer .button {
    align-items: center;
    background: linear-gradient(135deg, #e1b452, #d5a33f);
    border: 1px solid #d5a33f;
    border-radius: 8px;
    box-shadow: none;
    color: #0f0f0f;
    display: inline-flex;
    font-size: 18px;
    font-weight: 900;
    justify-content: center;
    min-height: 54px;
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.public-body .vilena-hero .button:hover,
.public-body .vilena-hero .button:focus,
.public-body .vilena-booking-panel .button:hover,
.public-body .vilena-booking-panel .button:focus,
.public-body .vilena-rooms-showcase .button:hover,
.public-body .vilena-rooms-showcase .button:focus,
.public-body .vilena-testimonials .button:hover,
.public-body .vilena-testimonials .button:focus,
.public-body .vilena-package-grid .button:hover,
.public-body .vilena-package-grid .button:focus,
.public-body .vilena-hot-offer .button:hover,
.public-body .vilena-hot-offer .button:focus {
    background: linear-gradient(135deg, #edc369, #d9a441);
    color: #0f0f0f;
    outline: none;
    transform: none;
}

.public-body .vilena-rooms-showcase .vilena-view-all {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.public-body .vilena-room-card footer strong,
.public-body .vilena-room-card .room-footer strong,
.public-body .public-category-footer > strong,
.public-body .public-room-combination-card strong,
.public-body .public-price-preview strong {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
}

.public-body .public-category-footer small,
.public-body .public-room-combination-card small,
.public-body .public-price-preview span,
.public-body .public-price-preview small {
    font-weight: 500;
}

@media (max-width: 1120px) {
    .public-body .vilena-booking-panel form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .public-body .vilena-booking-panel .button,
    .public-body .vilena-booking-panel .booking-reset {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .public-body .vilena-booking-panel {
        border-radius: 0;
        margin: -34px 12px 44px;
        padding: 18px;
    }

    .public-body .vilena-booking-panel form {
        grid-template-columns: 1fr;
    }

    .public-body .vilena-booking-panel input,
    .public-body .luxury-date-field button,
    .public-body .vilena-booking-panel .button,
    .public-body .vilena-booking-panel .booking-reset {
        font-size: 16px;
        min-height: 50px;
    }

    .public-body .luxury-calendar-popover {
        left: 0;
        max-width: none;
        padding: 12px;
        right: auto;
        width: min(340px, calc(100vw - 36px));
    }

    .public-body .luxury-calendar-months {
        grid-template-columns: 1fr;
    }

    .public-body .luxury-calendar-weekdays {
        display: none;
    }

    .public-body .luxury-calendar-head strong {
        font-size: 21px;
    }

    .public-body .luxury-calendar-foot {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Admin website CMS */
.website-page-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.website-page-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 22px;
    padding: 24px;
}

.website-page-card span {
    color: #047857;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.website-page-card h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    margin: 6px 0;
}

.website-page-card p {
    color: #64748b;
    font-weight: 800;
    margin: 0;
}

.website-page-actions,
.website-page-top-actions,
.website-editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.website-editor-layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 340px;
}

.website-editor-form,
.website-media-helper {
    border-radius: 20px;
}

.website-editor-meta,
.website-editor-fields {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-editor-section {
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    margin-top: 26px;
    padding-top: 24px;
}

.website-editor-section h2,
.website-media-helper h2 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 18px;
}

.website-editor-wide {
    grid-column: 1 / -1;
}

.website-editor-form label {
    color: #334155;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
}

.website-editor-form input,
.website-editor-form select,
.website-editor-form textarea {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: #0f172a;
    font: inherit;
    min-height: 44px;
    padding: 10px 12px;
}

.website-editor-form textarea {
    line-height: 1.55;
    resize: vertical;
}

.website-media-list {
    display: grid;
    gap: 14px;
    max-height: 760px;
    overflow: auto;
    padding-right: 4px;
}

.website-media-list article {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: grid;
    gap: 8px;
    padding: 10px;
}

.website-media-list img {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

.website-media-list button {
    background: #0f172a;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 900;
    min-height: 36px;
}

.website-media-list input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    color: #475569;
    font-size: 12px;
    padding: 7px 8px;
}

@media (max-width: 1100px) {
    .website-page-grid,
    .website-editor-layout {
        grid-template-columns: 1fr;
    }

    .website-media-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: none;
    }
}

@media (max-width: 640px) {
    .website-editor-meta,
    .website-editor-fields,
    .website-media-list {
        grid-template-columns: 1fr;
    }
}

/* Consistent inner-page title scale */
.public-body .about-story h2,
.public-body .about-experience h2,
.public-body .info-split h2,
.public-body .info-cta h2,
.public-body .contact-panel h2,
.public-body .marayoor-intro h2,
.public-body .marayoor-cta h2,
.public-body .places-feature h2,
.public-body .places-cta h2 {
    font-size: 60px;
    line-height: 1.05;
}

@media (max-width: 560px) {
    .public-body .about-story h2,
    .public-body .about-experience h2,
    .public-body .info-split h2,
    .public-body .info-cta h2,
    .public-body .contact-panel h2,
    .public-body .marayoor-intro h2,
    .public-body .marayoor-cta h2,
    .public-body .places-feature h2,
    .public-body .places-cta h2 {
        font-size: 38px;
        line-height: 1.08;
    }
}

/* Inner pages without header imagery */
.public-body .vilena-page-hero,
.public-body .about-hero,
.public-body .info-hero,
.public-body .marayoor-hero,
.public-body .places-hero {
    background:
        radial-gradient(circle at 12% 12%, rgba(201, 154, 61, 0.18), transparent 28rem),
        radial-gradient(circle at 88% 0%, rgba(141, 38, 48, 0.08), transparent 24rem),
        linear-gradient(180deg, #fff8ec 0%, #f7efe2 100%) !important;
    color: #20150f;
    min-height: 0;
}

.public-body .vilena-page-hero {
    padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 82px);
}

.public-body .about-hero,
.public-body .info-hero,
.public-body .marayoor-hero,
.public-body .places-hero {
    padding: clamp(58px, 7vw, 96px) clamp(22px, 5vw, 82px);
}

.public-body .about-hero::after,
.public-body .info-hero::after,
.public-body .marayoor-hero::after,
.public-body .places-hero::after {
    display: none;
}

.public-body .vilena-page-hero p,
.public-body .about-hero p,
.public-body .info-hero p,
.public-body .marayoor-hero p,
.public-body .places-hero p {
    color: #6f6258;
    text-shadow: none;
}

.public-body .vilena-page-hero h1,
.public-body .about-hero h1,
.public-body .info-hero h1,
.public-body .marayoor-hero h1,
.public-body .places-hero h1 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 35px);
    font-weight: 900;
    line-height: 1.05;
    max-width: 920px;
    text-shadow: none;
}

.public-body .marayoor-hero-card,
.public-body .places-hero-note {
    background: #fffdf8;
    border-color: rgba(201, 154, 61, 0.28);
    box-shadow: 0 22px 64px rgba(42, 31, 19, 0.12);
}

.public-body .marayoor-hero-card strong,
.public-body .places-hero-note strong {
    color: #20150f;
}

.public-body .marayoor-hero-card p,
.public-body .places-hero-note p {
    color: #6f6258;
}

@media (max-width: 560px) {
    .public-body .about-hero,
    .public-body .info-hero,
    .public-body .marayoor-hero,
    .public-body .places-hero {
        padding: 42px 18px 48px;
    }

    .public-body .vilena-page-hero h1,
    .public-body .about-hero h1,
    .public-body .info-hero h1,
    .public-body .marayoor-hero h1,
    .public-body .places-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }
}

/* Visiting Places requested title size */
.public-body .places-hero h1,
.public-body .places-feature h2,
.public-body .places-luxe-section .vilena-pattern-head h2,
.public-body .places-cta h2 {
    font-size: 40px;
    line-height: 1.14;
}

@media (max-width: 560px) {
    .public-body .places-hero h1,
    .public-body .places-feature h2,
    .public-body .places-luxe-section .vilena-pattern-head h2,
    .public-body .places-cta h2 {
        font-size: 34px;
        line-height: 1.16;
    }
}

/* Why Marayoor requested section heading size */
.public-body .marayoor-special .vilena-pattern-head h2 {
    font-size: 40px;
    line-height: 1.14;
}

.public-body .marayoor-special .vilena-pattern-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.public-body .marayoor-special .vilena-pattern-head h2 {
    justify-content: center;
    text-align: center;
}

.public-body .marayoor-special .vilena-pattern-head h2::after {
    flex: 0 0 68px;
    margin: 0;
    max-width: 260px;
}

.public-body .marayoor-special .vilena-pattern-head p {
    text-align: center;
}

@media (max-width: 560px) {
    .public-body .marayoor-special .vilena-pattern-head h2 {
        font-size: 34px;
        line-height: 1.16;
    }
}

/* Public room category booking page */
.public-room-search-summary {
    background: #17130f;
    border: 1px solid rgba(217, 164, 65, 0.18);
    color: #fff8ec;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    margin: 0 clamp(18px, 4vw, 72px) clamp(28px, 4vw, 44px);
    overflow: hidden;
    box-shadow: 0 18px 52px rgba(23, 19, 15, 0.1);
}

.public-room-search-summary div,
.public-room-search-summary a {
    align-content: center;
    background: rgba(255, 248, 236, 0.055);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 82px;
    padding: 16px 28px;
}

.public-room-search-summary span {
    color: #d9a441;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.public-room-search-summary strong {
    color: #fff8ec;
    font-size: 22px;
    line-height: 1.05;
}

.public-room-search-summary small {
    color: rgba(255, 248, 236, 0.72);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
}

.public-room-search-summary a {
    align-items: center;
    background: rgba(255, 248, 236, 0.075);
    color: #f3ddb1;
    font-weight: 900;
    justify-content: center;
    min-width: 188px;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease;
}

.public-room-search-summary a:hover {
    background: rgba(217, 164, 65, 0.18);
    color: #fff8ec;
}

.public-category-showcase {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 clamp(18px, 4vw, 72px) clamp(44px, 6vw, 82px);
}

.public-category-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.92)),
        #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.28);
    box-shadow: 0 28px 80px rgba(42, 31, 19, 0.12);
    display: grid;
    overflow: hidden;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.public-category-card::before {
    background: linear-gradient(90deg, #8d2630, #d9a441);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.public-category-card:hover {
    border-color: rgba(201, 154, 61, 0.46);
    box-shadow: 0 34px 92px rgba(42, 31, 19, 0.16);
    transform: translateY(-3px);
}

.public-category-card.is-sold-out {
    opacity: 0.78;
}

.public-category-card.needs-addon {
    border-color: rgba(217, 164, 65, 0.5);
}

.public-category-card figure {
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.public-category-card img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 220ms ease;
    width: 100%;
}

.public-category-card:hover img {
    transform: scale(1.045);
}

.public-category-card figure span {
    background: rgba(141, 38, 48, 0.94);
    border: 1px solid rgba(255, 248, 236, 0.22);
    color: #fff8ec;
    font-size: 12px;
    font-weight: 900;
    left: 16px;
    letter-spacing: 0.08em;
    padding: 8px 11px;
    position: absolute;
    text-transform: uppercase;
    top: 16px;
}

.public-category-card-body {
    display: grid;
    gap: 5px;
    padding: 26px;
}

.public-category-title-row {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.public-category-eyebrow {
    color: #a76b2b;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.public-category-status {
    background: #fff8ec;
    border: 1px solid rgba(201, 154, 61, 0.28);
    color: #8d2630;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 8px 11px;
    text-transform: uppercase;
}

.public-category-status.is-best {
    background: #17130f;
    border-color: #17130f;
    color: #f3ddb1;
}

.public-category-status.is-addon {
    background: #fff3d4;
    border-color: rgba(217, 164, 65, 0.5);
    color: #7b4a13;
}

.public-category-card h2 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    margin: -2px 0 1px;
}

.public-category-card p {
    color: #6f6258;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

.public-category-capacity-note {
    align-items: center;
    background: #17130f;
    color: #fff8ec;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 10px 12px;
}

.public-category-capacity-note span {
    color: #d9a441;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-category-capacity-note strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

.public-category-stats {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-category-stats div {
    background: rgba(255, 248, 236, 0.78);
    border: 1px solid rgba(201, 154, 61, 0.2);
    display: grid;
    gap: 2px;
    padding: 14px 10px;
    text-align: center;
}

.public-category-stats span,
.public-category-stats small {
    color: #7a6654;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.public-category-stats strong {
    color: #8d2630;
    font-size: 24px;
    line-height: 1;
}

.public-category-stats strong,
.public-category-stats small {
    font-size: 11px;
    line-height: 1.2;
}

.public-category-stats span,
.public-category-stats small {
    font-weight: 500;
}

.public-category-stats strong {
    font-weight: 900;
}

.public-category-footer {
    align-items: center;
    border-top: 1px solid rgba(201, 154, 61, 0.22);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding-top: 4px;
}

.public-category-footer > strong {
    color: #8d2630;
    display: grid;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
}

.public-category-footer small {
    color: #7a6654;
    font-size: 10px;
    font-weight: 800;
}

.public-category-booking-form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: 92px auto;
}

.public-category-booking-form label {
    display: grid;
    gap: 6px;
}

.public-category-booking-form label span {
    color: #8d2630;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-category-booking-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #8d2630 50%) calc(100% - 15px) 52% / 6px 6px no-repeat,
        linear-gradient(135deg, #8d2630 50%, transparent 50%) calc(100% - 10px) 52% / 6px 6px no-repeat,
        #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.45);
    color: #20150f;
    font: inherit;
    font-weight: 900;
    min-height: 47px;
    padding: 0 32px 0 14px;
}

.public-category-booking-form .button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.public-room-empty {
    background: #fffdf8;
    margin: 0 clamp(18px, 4vw, 72px) 60px;
    padding: 34px;
    text-align: center;
}

.public-room-recommendation {
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 236, 0.88)),
        #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.26);
    box-shadow: 0 20px 64px rgba(42, 31, 19, 0.08);
    margin: 0 clamp(18px, 4vw, 72px) 28px;
    padding: 24px 28px;
    position: relative;
}

.public-room-recommendation::before {
    background: linear-gradient(180deg, #8d2630, #d9a441);
    bottom: 24px;
    content: "";
    left: 0;
    position: absolute;
    top: 24px;
    width: 4px;
}

.public-room-recommendation span {
    color: #8d2630;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.public-room-recommendation h2 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 10px;
}

.public-room-recommendation p {
    color: #6f6258;
    font-weight: 800;
    line-height: 1.65;
    margin: 0;
    max-width: 980px;
}

.public-room-combinations {
    margin: 0 clamp(18px, 4vw, 72px) 34px;
}

.public-room-combinations-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.public-room-combinations-head span {
    color: #8d2630;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.public-room-combinations-head h2 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
}

.public-room-combinations-head p {
    color: #6f6258;
    font-weight: 800;
    line-height: 1.55;
    margin: 0;
}

.public-room-combination-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-room-combination-card {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.28);
    box-shadow: 0 18px 54px rgba(42, 31, 19, 0.1);
    display: grid;
    grid-template-columns: minmax(160px, 34%) minmax(0, 1fr);
    overflow: hidden;
}

.public-room-combination-card figure {
    margin: 0;
    min-height: 230px;
    position: relative;
}

.public-room-combination-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.public-room-combination-card figure span {
    background: rgba(23, 19, 15, 0.88);
    color: #f3ddb1;
    font-size: 11px;
    font-weight: 900;
    left: 14px;
    letter-spacing: 0.12em;
    padding: 8px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 14px;
}

.public-room-combination-card > div {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.public-room-combination-card h3 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
}

.public-room-combination-card p {
    color: #6f6258;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

.public-room-combination-card strong {
    color: #8d2630;
    display: grid;
    font-size: 22px;
    line-height: 1.1;
}

.public-room-combination-card small {
    color: #7a6654;
    font-size: 12px;
    font-weight: 800;
}

.public-room-combination-card .public-category-booking-form {
    grid-template-columns: 1fr;
}

/* Public booking detail page */
.public-booking-page {
    padding: clamp(28px, 5vw, 72px) clamp(16px, 4vw, 72px) clamp(48px, 6vw, 86px);
}

.public-booking-hero {
    margin: 0 auto clamp(26px, 4vw, 44px);
    max-width: 860px;
    text-align: center;
}

.public-booking-hero span,
.public-booking-card-head span,
.public-booking-summary > div > span {
    color: #8d2630;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.public-booking-hero h1 {
    color: #20150f;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    line-height: 0.98;
    margin: 10px 0 14px;
}

.public-booking-hero p,
.public-booking-note {
    color: #6f6258;
    font-weight: 800;
    line-height: 1.65;
    margin: 0;
}

.public-booking-layout {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.public-booking-summary,
.public-booking-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.92)),
        #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.28);
    box-shadow: 0 28px 80px rgba(42, 31, 19, 0.1);
}

.public-booking-summary {
    display: grid;
    overflow: hidden;
    position: sticky;
    top: 98px;
}

.public-booking-summary figure {
    aspect-ratio: 16 / 11;
    margin: 0;
    overflow: hidden;
}

.public-booking-summary img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.public-booking-summary > div {
    display: grid;
    gap: 18px;
    padding: 26px;
}

.public-booking-summary h2,
.public-booking-card-head h2 {
    color: #20150f;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
}

.public-booking-summary dl {
    display: grid;
    gap: 1px;
    margin: 0;
}

.public-booking-summary dl div,
.public-price-breakdown div {
    align-items: center;
    background: rgba(255, 248, 236, 0.8);
    border: 1px solid rgba(201, 154, 61, 0.18);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 13px 14px;
}

.public-booking-summary dt,
.public-price-breakdown span {
    color: #7a6654;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-booking-summary dd,
.public-price-breakdown strong {
    color: #20150f;
    font-weight: 900;
    margin: 0;
    text-align: right;
}

.public-booking-form {
    display: grid;
    gap: 22px;
}

.public-booking-card {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
    position: relative;
}

.public-booking-card::before {
    background: linear-gradient(90deg, #8d2630, #d9a441);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.public-booking-card-head {
    align-items: start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.public-booking-card-head strong {
    background: #17130f;
    color: #fff8ec;
    font-size: 16px;
    font-weight: 900;
    padding: 10px 14px;
    white-space: nowrap;
}

.public-booking-fields,
.public-kid-age-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-booking-fields label,
.public-kid-age-grid label {
    color: #8d2630;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.public-booking-fields label:last-child {
    grid-column: 1 / -1;
}

.public-booking-fields input,
.public-booking-fields textarea,
.public-kid-age-grid input {
    background: #fffdf8;
    border: 1px solid rgba(201, 154, 61, 0.36);
    color: #20150f;
    font: inherit;
    font-weight: 800;
    min-height: 50px;
    padding: 12px 14px;
}

.public-booking-fields textarea {
    min-height: 96px;
    resize: vertical;
}

.public-price-breakdown {
    display: grid;
    gap: 8px;
}

.public-price-breakdown .is-total {
    background: #17130f;
    border-color: #17130f;
}

.public-price-breakdown .is-total span,
.public-price-breakdown .is-total strong {
    color: #fff8ec;
    font-size: 18px;
}

.public-booking-actions {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.public-booking-actions a {
    color: #8d2630;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 980px) {
    .public-booking-layout {
        grid-template-columns: 1fr;
    }

    .public-booking-summary {
        position: static;
    }
}

@media (max-width: 1180px) {
    .public-category-showcase,
    .public-room-combination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .public-room-search-summary,
    .public-category-showcase,
    .public-room-combinations {
        grid-template-columns: 1fr;
        margin-left: 14px;
        margin-right: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .public-room-combination-grid,
    .public-room-combination-card {
        grid-template-columns: 1fr;
    }

    .public-room-combination-card figure {
        min-height: 210px;
    }

    .public-category-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .public-category-card-body {
        padding: 22px;
    }

    .public-category-title-row,
    .public-category-capacity-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-category-capacity-note strong {
        text-align: left;
    }

    .public-category-booking-form {
        grid-template-columns: 1fr;
    }

    .public-category-booking-form select,
    .public-category-booking-form .button {
        width: 100%;
    }

    .public-booking-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .public-booking-fields,
    .public-kid-age-grid {
        grid-template-columns: 1fr;
    }

    .public-booking-card-head,
    .public-booking-actions,
    .public-booking-summary dl div,
    .public-price-breakdown div {
        align-items: stretch;
        flex-direction: column;
    }

    .public-booking-summary dd,
    .public-price-breakdown strong {
        text-align: left;
    }
}

/* Shared public pattern heading */
.public-body .vilena-pattern-head {
    margin: 0 auto clamp(28px, 4vw, 42px);
    text-align: center;
}

.public-body .vilena-pattern-head h2 {
    align-items: center;
    color: #000000;
    display: flex;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif !important;
    font-size: clamp(30px, 3vw, 38px);
    font-style: normal;
    font-weight: 900;
    gap: 18px;
    justify-content: center;
    line-height: 1.08;
    margin: 0 0 28px;
    text-shadow: 0 16px 38px rgba(42, 31, 19, 0.12);
}

.public-body .vilena-pattern-head h2::before,
.public-body .vilena-pattern-head h2::after {
    background: linear-gradient(90deg, transparent, #c99a3d, transparent);
    content: "";
    display: block;
    flex: 0 0 68px;
    height: 2px;
    width: 68px;
}

.public-body .vilena-rooms-showcase .rooms-showcase-head {
    max-width: 760px;
}

.public-body .vilena-places .places-section-head {
    max-width: 820px;
}

.public-body .vilena-rooms-showcase .rooms-showcase-subtitle {
    color: #7a6a59;
    font-family: "Manrope", "Aptos", "Segoe UI", Arial, sans-serif !important;
    font-size: var(--type-small);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
    white-space: nowrap;
}

.public-body .vilena-rooms-showcase .rooms-showcase-subtitle,
.public-body .vilena-why .why-section-subtitle,
.public-body .vilena-places .places-section-subtitle {
    color: #7a6a59;
    font-size: var(--type-small);
    font-weight: 400;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .public-body .vilena-rooms-showcase .rooms-showcase-subtitle,
    .public-body .vilena-places .places-section-subtitle {
        white-space: normal;
    }
}

.public-body .vilena-hero.has-hero-slider h1 {
    font-size: 40px;
    line-height: 1.12;
}

.public-body .vilena-about h2 {
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.08;
}

/* Organized mobile navigation */
@media (max-width: 991.98px) {
    .app-navbar .container-fluid {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        min-height: 0;
        padding-bottom: 14px;
        padding-top: 14px;
    }

    .app-navbar .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .app-navbar .brand-logo {
        flex-basis: 224px;
        height: 52px;
        max-width: calc(100vw - 92px);
        padding: 3px 5px;
        width: 224px;
    }

    .app-navbar .navbar-toggler {
        align-items: center;
        border-radius: 14px;
        display: inline-flex;
        height: 44px;
        justify-content: center;
        margin-left: auto;
        width: 48px;
    }

    .app-navbar .navbar-collapse {
        background: #fffaf3;
        border: 1px solid rgba(167, 107, 43, 0.16);
        border-radius: 18px;
        box-shadow: 0 18px 44px rgba(52, 38, 28, 0.12);
        flex: 0 0 100%;
        margin-top: 8px;
        padding: 12px;
        width: 100%;
    }

    .app-navbar .navbar-collapse.collapse:not(.show) {
        display: none;
    }

    .app-navbar .navbar-collapse.collapse.show,
    .app-navbar .navbar-collapse.collapsing {
        display: block;
    }

    .app-navbar .navbar-nav {
        align-items: stretch;
        display: grid;
        gap: 8px;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .app-navbar .nav-item {
        width: 100%;
    }

    .app-navbar .nav-link,
    .public-body .btn-light {
        border-radius: 12px;
        min-height: 44px;
        padding: 11px 14px;
        width: 100%;
    }

    .public-body .app-navbar .nav-link {
        background: #ffffff;
        border: 1px solid rgba(123, 35, 40, 0.08);
        color: #2f211c;
        font-weight: 900;
        justify-content: flex-start;
    }

    .public-body .app-navbar .nav-link.active,
    .public-body .app-navbar .nav-link:hover,
    .public-body .app-navbar .nav-link:focus {
        background: #f8efe2;
        color: #8d2630;
    }

    .public-template-switch {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .public-template-switch a {
        justify-content: center;
        min-height: 44px;
    }

    .public-body .btn-light {
        align-items: center;
        justify-content: center;
    }
}

/* Premium public typography scale */
.public-body {
    --type-display: clamp(42px, 5vw, 64px);
    --type-page-title: clamp(36px, 4.2vw, 54px);
    --type-section-title: clamp(30px, 3vw, 42px);
    --type-card-title: clamp(20px, 1.8vw, 25px);
    --type-body: clamp(15px, 1.05vw, 17px);
    --type-small: 14px;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
}

.public-body .app-navbar .nav-link,
.public-body .btn-light,
.public-body .button,
.public-template-switch a {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.public-body .vilena-kicker,
.public-body .public-kicker,
.public-body .places-grid span,
.public-body .contact-list strong,
.public-body .public-category-eyebrow,
.public-body .package-tag {
    font-size: 12px;
    letter-spacing: 0.1em;
}

.public-body .vilena-hero h1,
.public-body .vilena-page-hero h1,
.public-body .public-hero h1,
.public-body .public-page-hero h1 {
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: var(--type-display) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
    max-width: 820px;
}

.public-body .about-hero h1,
.public-body .info-hero h1,
.public-body .marayoor-hero h1,
.public-body .places-hero h1 {
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: var(--type-page-title) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.06;
}

.public-body .vilena-pattern-head h2,
.public-body .vilena-about h2,
.public-body .about-story h2,
.public-body .about-experience h2,
.public-body .info-split h2,
.public-body .info-cta h2,
.public-body .contact-panel h2,
.public-body .marayoor-section h2,
.public-body .places-feature h2,
.public-body .places-cta h2,
.public-body .public-room-recommendation h2,
.public-body .public-room-combinations-head h2,
.public-body .public-booking-card h1 {
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif !important;
    font-size: var(--type-section-title) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
}

.public-body .vilena-about-copy {
    padding-top: clamp(24px, 3vw, 32px);
}

.public-body .vilena-about .vilena-kicker {
    margin-bottom: 8px;
}

.public-body .vilena-about h2 {
    font-size: 20px !important;
    margin-bottom: 14px;
}

.public-body.public-template-elevation .vilena-about-copy {
    align-content: start !important;
    min-height: 0;
    padding-top: 18px !important;
}

.public-body .vilena-room-card h3,
.public-body .vilena-place-card h3,
.public-body .vilena-why h3,
.public-body .vilena-package-grid h3,
.public-body .vilena-testimonial-card h3,
.public-body .about-value-grid h3,
.public-body .info-card-grid h3,
.public-body .places-grid h3,
.public-body .contact-card h3,
.public-body .places-luxe-grid h3,
.public-body .public-category-card h2,
.public-body .public-room-combination-card h3 {
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: var(--type-card-title) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.22;
}

.public-body .vilena-why span {
    color: #b88434;
    font-family: "Lato", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 15px !important;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.public-body .vilena-why h3 {
    font-size: 22px !important;
    line-height: 1.18;
    margin-bottom: 12px;
}

.public-body .vilena-why-grid article {
    padding: 30px 32px;
}

.public-body p,
.public-body .vilena-about p,
.public-body .vilena-why p,
.public-body .vilena-place-card p,
.public-body .vilena-package-grid p,
.public-body .about-story-copy p,
.public-body .about-value-grid p,
.public-body .info-split p,
.public-body .contact-panel p,
.public-body .contact-card p,
.public-body .places-grid p,
.public-body .places-luxe-grid p,
.public-body .public-category-card p,
.public-body .public-room-recommendation p {
    font-size: var(--type-body);
    font-weight: 600;
    line-height: 1.68;
}

.public-body .vilena-pattern-head p,
.public-body .public-category-card small,
.public-body .public-room-search-summary span,
.public-body .public-room-search-summary small,
.public-body .public-category-status,
.public-body .contact-list span,
.public-footer p,
.public-footer a {
    font-size: var(--type-small);
    line-height: 1.55;
}

@media (max-width: 640px) {
    .public-body {
        --type-display: clamp(34px, 10vw, 42px);
        --type-page-title: clamp(32px, 9vw, 40px);
        --type-section-title: clamp(26px, 7vw, 32px);
        --type-card-title: clamp(19px, 5.6vw, 22px);
        --type-body: 15px;
    }

    .public-body .vilena-hero h1,
    .public-body .vilena-page-hero h1,
    .public-body .public-hero h1,
    .public-body .public-page-hero h1,
    .public-body .about-hero h1,
    .public-body .info-hero h1,
    .public-body .marayoor-hero h1,
    .public-body .places-hero h1 {
        line-height: 1.1;
    }

    .public-body .vilena-pattern-head h2::before,
    .public-body .vilena-pattern-head h2::after {
        flex-basis: 36px;
        width: 36px;
    }

    .public-body .vilena-why span {
        font-size: 16px !important;
    }

    .public-body .vilena-why h3 {
        font-size: 20px !important;
    }

    .public-body .vilena-why-grid article {
        padding: 24px;
    }
}

/* Elite hero slider typography */
.public-body .vilena-hero.has-hero-slider {
    min-height: 560px;
    padding: clamp(70px, 8vw, 102px) clamp(26px, 6vw, 74px);
}

.public-body .vilena-hero.has-hero-slider .vilena-hero-copy {
    max-width: 680px;
}

.public-body .vilena-hero.has-hero-slider .vilena-kicker {
    color: #f0c75c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.public-body .vilena-hero.has-hero-slider h1 {
    font-size: clamp(38px, 4.2vw, 54px) !important;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    max-width: 760px;
}

.public-body .vilena-hero.has-hero-slider p {
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 500;
    line-height: 1.72;
    max-width: 620px;
}

.public-body .vilena-hero.has-hero-slider .vilena-actions {
    gap: 12px;
    margin-top: 30px;
}

.public-body .vilena-hero.has-hero-slider .button {
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    min-height: 48px;
    padding: 13px 24px;
    text-transform: none;
}

@media (max-width: 640px) {
    .public-body .vilena-hero.has-hero-slider {
        min-height: 520px;
        padding: 58px 22px 72px;
    }

    .public-body .vilena-hero.has-hero-slider h1 {
        font-size: clamp(32px, 9vw, 40px) !important;
        line-height: 1.16;
    }

    .public-body .vilena-hero.has-hero-slider p {
        font-size: 15px;
        line-height: 1.66;
    }

    .public-body .vilena-hero.has-hero-slider .vilena-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .public-body .vilena-hero.has-hero-slider .button {
        justify-content: center;
        width: 100%;
    }
}

/* Admin typography rule */
.admin-body,
.admin-login-body {
    --admin-heading-size: 18px;
    --admin-text-size: 12px;
    font-size: var(--admin-text-size);
    font-weight: 400;
}

.admin-body :where(p, span, a, label, input, select, textarea, button, table, th, td, small, li, dt, dd, div, strong, b, legend, option),
.admin-login-body :where(p, span, a, label, input, select, textarea, button, table, th, td, small, li, dt, dd, div, strong, b, legend, option) {
    font-size: var(--admin-text-size) !important;
    font-weight: 400 !important;
}

.admin-body :where(h1, h2, h3, h4, h5, h6),
.admin-login-body :where(h1, h2, h3, h4, h5, h6),
.admin-body :where(.booking-list-title, .settings-page-head, .section-head, .floor-group-head, .admin-page-title) :where(h1, h2, h3, h4, h5, h6),
.admin-body :where(.booking-detail-banner, .revenue-summary-card, .metric-card, .stat-card) :where(h1, h2, h3, h4, h5, h6),
.admin-body :where(.form-section-title, .card-title, .panel-title, .modal-title, .page-title, .admin-title) {
    font-size: var(--admin-heading-size) !important;
    font-weight: 700 !important;
    line-height: 1.25;
}

.admin-body .admin-menu-card-head h2 {
    color: #8b0000 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2;
}

.admin-body .admin-menu-item-copy strong,
.admin-body .admin-menu-item-copy small {
    font-size: 13px !important;
}

.admin-body .sidebar-menu-head,
.admin-body .sidebar-submenu-link {
    font-size: 13px !important;
}

.admin-body .sidebar-menu-head {
    border: 0;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.admin-body .sidebar-menu-head:focus-visible {
    outline: 2px solid rgba(245, 212, 138, 0.72);
    outline-offset: 2px;
}

.admin-body .sidebar-menu-head {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.admin-body .sidebar-menu-caret {
    color: rgba(255, 255, 255, 0.74);
    display: inline-flex;
    font-size: 11px !important;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 160ms ease;
}

.admin-body .sidebar-menu-group.is-open .sidebar-menu-caret {
    transform: rotate(180deg);
}

.admin-body .sidebar-submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
    transition: max-height 180ms ease, opacity 160ms ease, padding 160ms ease;
}

.admin-body .sidebar-menu-group.is-open .sidebar-submenu {
    max-height: 280px;
    opacity: 1;
    padding-bottom: 2px;
    padding-top: 10px;
}

.admin-sidebar-mobile-account {
    display: none;
}

/* Keep the mobile admin drawer independently scrollable on touch devices. */
@media (max-width: 820px) {
    .admin-body .admin-sidebar {
        bottom: auto;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .admin-body .admin-sidebar-mobile-head {
        background: #0d1b2a;
        position: sticky;
        top: -10px;
        z-index: 2;
    }
}

@media (max-width: 991.98px) {
    .admin-body .app-navbar .navbar-toggler,
    .admin-body .app-navbar .navbar-collapse {
        display: none !important;
    }

    .admin-body .admin-sidebar-mobile-account {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.82);
        display: grid;
        gap: 10px;
        margin-top: 14px;
        padding: 16px 6px 4px;
    }

    .admin-body .admin-sidebar-mobile-account span {
        font-size: 12px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .admin-body .admin-sidebar-mobile-account form {
        margin: 0;
    }

    .admin-body .admin-sidebar-mobile-account button {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 10px;
        color: #fff;
        font-weight: 800;
        min-height: 44px;
        width: 100%;
    }
}
