@charset "UTF-8";

:root {
    --navy: #092f3b;
    --navy-deep: #061f29;
    --gold: #caa66a;
    --ivory: #f7f3eb;
    --paper: #fffdf9;
    --ink: #102c35;
    --muted: #6f7d80;
    --line: rgba(11, 55, 68, .13);
    --shadow: 0 24px 70px rgba(7, 31, 41, .14);
    --radius-lg: 30px;
    --radius-md: 20px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: Inter, Aptos, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.toast {
    position: fixed;
    z-index: 200;
    right: 18px;
    bottom: calc(96px + var(--safe-bottom));
    left: 18px;
    max-width: 460px;
    margin: auto;
    padding: 15px 18px;
    border-radius: 16px;
    color: #fff;
    background: var(--navy-deep);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .25s ease, transform .25s ease;
}

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

.toast.is-error {
    background: #8e342f;
}

.primary-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border: 0;
    border-radius: 100px;
    color: white;
    background: var(--navy);
    box-shadow: 0 14px 34px rgba(5, 34, 44, .2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
}

.primary-button:disabled {
    opacity: .55;
    cursor: wait;
}

.primary-button span:last-child {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold);
    font-size: 17px;
}

/* Login */

.guest-login {
    min-height: 100vh;
    background: var(--paper);
}

.login-shell {
    min-height: 100vh;
}

.login-image {
    position: relative;
    min-height: 48vh;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(5, 24, 32, .08), rgba(5, 24, 32, .7)),
        var(--hero);
    background-position: center;
    background-size: cover;
}

.login-image::after {
    position: absolute;
    right: -10%;
    bottom: -56px;
    left: -10%;
    height: 100px;
    border-radius: 50% 50% 0 0;
    background: var(--paper);
    content: "";
}

.top-actions {
    position: absolute;
    z-index: 2;
    top: max(18px, env(safe-area-inset-top));
    right: 18px;
}

.language-switch {
    display: flex;
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100px;
    background: rgba(6, 31, 41, .35);
    backdrop-filter: blur(18px);
}

.language-switch a {
    padding: 7px 9px;
    border-radius: 100px;
    color: rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
}

.language-switch a.is-active {
    color: var(--navy-deep);
    background: #fff;
}

.login-brand {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 54px;
    left: 30px;
    color: white;
}

.brand-mark,
.mini-brand span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(5, 28, 37, .72);
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: .05em;
    backdrop-filter: blur(10px);
}

.login-brand img {
    width: 110px;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
}

.login-brand p {
    margin: 12px 0 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.login-card {
    position: relative;
    z-index: 4;
    width: min(100%, 470px);
    margin: -10px auto 0;
    padding: 8px 28px 44px;
}

.login-card h1 {
    margin: 0;
    color: var(--navy-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 10vw, 48px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.login-copy {
    max-width: 390px;
    margin: 20px 0 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

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

.stack-form label,
.request-form label {
    display: grid;
    gap: 8px;
}

.stack-form label span,
.request-form label span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.stack-form input,
.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 15px;
    outline: 0;
    color: var(--ink);
    background: #fff;
}

.stack-form input {
    height: 56px;
    padding: 0 17px;
}

.stack-form input:focus,
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(202, 166, 106, .12);
}

.demo-hint {
    margin: -4px 0 0;
    color: #9a9184;
    font-size: 11px;
    text-align: center;
}

/* Guest app */

.guest-app {
    min-height: 100vh;
    padding-bottom: calc(92px + var(--safe-bottom));
    background: var(--ivory);
}

.app-frame {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.app-header {
    position: sticky;
    z-index: 60;
    top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    height: calc(70px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 18px 0;
    border-bottom: 1px solid rgba(10, 55, 68, .08);
    background: rgba(247, 243, 235, .88);
    backdrop-filter: blur(22px);
}

.mini-brand {
    text-decoration: none;
}

.mini-brand span {
    width: 40px;
    height: 40px;
    border-color: var(--navy);
    background: var(--navy);
    font-size: 13px;
}

.mini-brand img {
    width: 72px;
    height: 40px;
    object-fit: contain;
}

.header-spacer {
    flex: 1;
}

.app-header select,
.icon-button {
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--ink);
    background: rgba(255, 255, 255, .6);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.app-header select {
    padding: 0 9px;
}

.icon-button {
    width: 36px;
}

.welcome-section {
    padding: 34px 20px 22px;
}

.welcome-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.welcome-row h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 9.5vw, 52px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.welcome-row p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.room-pill {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid rgba(202, 166, 106, .55);
    border-radius: 100px;
    color: var(--navy);
    background: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 800;
}

.hero-card {
    position: relative;
    min-height: 360px;
    margin: 0 14px;
    padding: 32px 28px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: white;
    background-image:
        linear-gradient(90deg, rgba(4, 27, 36, .84), rgba(4, 27, 36, .08) 78%),
        var(--hero);
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.hero-card::after {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    pointer-events: none;
    content: "";
}

.hero-card > div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-height: 296px;
}

.hero-kicker {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 13vw, 68px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.055em;
}

.ghost-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 210px;
    height: 48px;
    margin-top: auto;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 100px;
    color: white;
    background: rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.ghost-button span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-deep);
    background: var(--gold);
}

.content-section {
    padding: 42px 20px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-heading.compact {
    margin-bottom: 14px;
}

.section-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 7vw, 42px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

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

.category-tile {
    display: grid;
    min-height: 145px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink);
    background: rgba(255, 255, 255, .68);
    text-align: left;
    cursor: pointer;
}

.category-tile:first-child {
    color: white;
    background: var(--navy);
}

.category-icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(202, 166, 106, .4);
    border-radius: 50%;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 18px;
}

.category-tile strong {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
}

.category-tile small {
    margin-top: 5px;
    color: currentColor;
    font-size: 9px;
    opacity: .62;
    text-transform: uppercase;
}

.service-group.is-collapsed {
    display: none;
}

.service-rail {
    display: grid;
    grid-auto-columns: min(80%, 330px);
    grid-auto-flow: column;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.service-rail::-webkit-scrollbar {
    display: none;
}

.service-card {
    scroll-snap-align: start;
}

.service-card-button {
    position: relative;
    width: 100%;
    height: 320px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    color: white;
    background: var(--navy);
    cursor: pointer;
    text-align: left;
}

.service-card-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-card-button:hover img {
    transform: scale(1.04);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(3, 24, 31, .88));
}

.service-copy {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
}

.service-copy small {
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-copy strong {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.service-copy > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    font-size: 11px;
}

.service-copy b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold);
}

.requests-section {
    padding-bottom: 10px;
}

.text-button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.orders-list {
    display: grid;
    gap: 10px;
}

.order-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
}

.order-card strong {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
}

.order-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.order-status {
    align-self: start;
    padding: 7px 10px;
    border-radius: 100px;
    color: #8f641c;
    background: #f3e7d0;
    font-size: 9px;
    font-weight: 800;
}

.order-status.confirmed {
    color: #136449;
    background: #dff3e9;
}

.order-status.rejected {
    color: #843b38;
    background: #f7e2df;
}

.order-card .payment-options {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.payment-options button {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--navy);
    background: white;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.skeleton-line {
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(90deg, #e9e4da, #f7f4ed, #e9e4da);
    background-size: 220% 100%;
    animation: shimmer 1.4s linear infinite;
}

.skeleton-line.short {
    width: 78%;
}

@keyframes shimmer {
    to { background-position: -220% 0; }
}

.stay-card {
    margin: 44px 14px 28px;
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    color: white;
    background: var(--navy-deep);
}

.stay-card h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
}

.stay-card p:not(.eyebrow) {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

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

.stay-actions a,
.stay-actions button {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    color: white;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.bottom-nav {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: calc(10px + var(--safe-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 520px;
    height: 70px;
    margin: auto;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: rgba(6, 31, 41, .94);
    box-shadow: 0 20px 48px rgba(4, 26, 35, .25);
    backdrop-filter: blur(22px);
}

.bottom-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    border-radius: 18px;
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.bottom-nav a span {
    font-size: 19px;
    font-weight: 400;
}

.bottom-nav a.is-active {
    color: var(--navy-deep);
    background: var(--gold);
}

/* Dialog */

.service-dialog {
    width: min(100% - 18px, 560px);
    max-height: calc(100dvh - 18px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 30px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 30px 100px rgba(4, 26, 35, .38);
}

.service-dialog::backdrop {
    background: rgba(4, 26, 35, .68);
    backdrop-filter: blur(8px);
}

.dialog-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: white;
    background: rgba(5, 30, 39, .55);
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.dialog-image {
    height: 240px;
}

.dialog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.request-form {
    padding: 28px 24px 30px;
}

.request-form h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.request-form > p:not(.eyebrow) {
    margin: 12px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.dialog-price {
    display: inline-flex;
    margin: 5px 0 22px;
    padding: 8px 11px;
    border-radius: 100px;
    color: var(--navy);
    background: #eee5d6;
    font-size: 11px;
    font-weight: 800;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.request-form input,
.request-form select {
    height: 50px;
    padding: 0 13px;
}

.request-form textarea {
    min-height: 82px;
    padding: 13px;
    resize: vertical;
}

/* Setup */

.setup-required {
    display: grid;
    min-height: 100vh;
    padding: 30px;
    place-items: center;
    color: white;
    background: var(--navy-deep);
}

.setup-required main {
    max-width: 620px;
}

.setup-required h1 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 8vw, 62px);
    font-weight: 400;
}

.setup-required code,
.setup-error {
    color: var(--gold);
}

@media (min-width: 740px) {
    .login-shell {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        background: var(--paper);
    }

    .login-image {
        min-height: 100vh;
        border-radius: 0 0 80px 0;
    }

    .login-image::after {
        display: none;
    }

    .login-brand {
        bottom: 50px;
        left: 50px;
    }

    .login-card {
        align-self: center;
        margin: 0 auto;
        padding: 54px;
    }

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

    .service-rail {
        grid-auto-columns: min(42%, 360px);
    }

    .hero-card {
        min-height: 470px;
    }

    .hero-card > div {
        min-height: 406px;
    }

    .content-section,
    .welcome-section {
        padding-right: 34px;
        padding-left: 34px;
    }

    .hero-card {
        margin-right: 28px;
        margin-left: 28px;
    }

    .stay-card {
        margin-right: 28px;
        margin-left: 28px;
    }
}

