/* =========================================================
   Radisson Hotel Group — Welcome Page
   ========================================================= */

:root {
    --navy: #0b2545;
    --navy-deep: #0a2040;
    --gold: #c9a14a;
    --gold-soft: #d6b367;
    --amber: #d99826;
    --green: #2f6b3a;
    --blue: #1c3a73;
    --purple: #6b4a8a;
    --brown: #6b4a35;
    --bg: #f3eee6;
    --bg-soft: #efe8dc;
    --card-bg: #ffffff;
    --ink: #1d2a3a;
    --ink-soft: #4a5566;
    --line: #e6dfd1;
    --shadow-card: 0 18px 36px -22px rgba(11, 37, 69, 0.35),
        0 6px 14px -10px rgba(11, 37, 69, 0.18);
    --radius-card: 22px;
    --radius-bar: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

button {
    font-family: inherit;
}

/* ---------- View routing ---------- */
.view[hidden] {
    display: none !important;
}

.view {
    animation: fade 0.25s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px 36px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 22px 0 18px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        var(--hero-bg, url("assets/bg_image.jpg")) center/cover no-repeat;
    z-index: -2;
    opacity: 0.85;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(243, 238, 230, 0.55) 0%,
            rgba(243, 238, 230, 0.65) 55%,
            rgba(243, 238, 230, 0.95) 100%);
    z-index: -1;
}

/* ---------- TOP BAR ---------- */
.topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 6px 4px 0;
}

.topbar__spacer {
    width: 1px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    line-height: 1;
}

.brand__logo {
    display: block;
    width: clamp(150px, 22vw, 200px);
    height: auto;
    mix-blend-mode: multiply;
    /* Hidden until boot.js swaps in this hotel's real logo, so the bundled
       placeholder image never flashes on screen first. */
    visibility: hidden;
}

/* ---------- LANGUAGE PILL ---------- */
.lang {
    justify-self: end;
}

.lang__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid rgba(11, 37, 69, 0.12);
    border-radius: 999px;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px -6px rgba(11, 37, 69, 0.18);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.lang__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px -10px rgba(11, 37, 69, 0.25);
}

.lang__globe {
    width: 18px;
    height: 18px;
    color: var(--navy);
}

.lang__chev {
    width: 14px;
    height: 14px;
    color: var(--navy);
}

.lang__label {
    line-height: 1;
}

/* ---------- WELCOME ---------- */
.welcome {
    text-align: center;
    padding: 22px 12px 38px;
}

.welcome__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: clamp(40px, 8vw, 64px);
    color: var(--navy);
    margin: 6px 0 10px;
    letter-spacing: -0.5px;
}

.welcome__rule {
    display: inline-block;
    width: 64px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    margin-bottom: 18px;
}

.welcome__text {
    margin: 0 auto;
    color: var(--navy);
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 1.55;
    font-weight: 400;
    max-width: 520px;
}

/* ---------- CARDS GRID — 3 on top row, 2 on bottom row ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    padding: 8px 0 24px;
}

/* All cards span 2 of 6 columns → a clean 3-per-row grid (6 cards = 3×2). */
.cards .card {
    grid-column: span 2;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 24px;
    background: var(--card-bg);
    border: none;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    color: var(--ink);
    font: inherit;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 26px 44px -22px rgba(11, 37, 69, 0.4),
        0 10px 18px -12px rgba(11, 37, 69, 0.22);
}

.card--green {
    --accent: var(--green);
}

.card--navy {
    --accent: var(--blue);
}

.card--amber {
    --accent: var(--amber);
}

.card--purple {
    --accent: var(--purple);
}

.card--brown {
    --accent: var(--brown);
}

.card--rose {
    --accent: #c75b86;
}

.card__icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.35);
}

.card__icon svg {
    width: 40px;
    height: 40px;
}

.card__title {
    margin: 4px 0 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.9vw, 17px);
    letter-spacing: 0.06em;
    color: var(--accent);
    line-height: 1.25;
}

.card__rule {
    display: inline-block;
    width: 34px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    margin: 2px 0 12px;
}

.card__text {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: clamp(13px, 1.7vw, 14.5px);
    line-height: 1.5;
    font-weight: 400;
    flex: 1;
}

.card__btn {
    margin-top: auto;
    width: 100%;
    max-width: 220px;
    padding: 10px 16px 10px 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 20px -12px color-mix(in srgb, var(--accent) 60%, transparent);
    transition: filter 0.18s ease, transform 0.18s ease;
}

.card:hover .card__btn {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.card__btn-label {
    white-space: nowrap;
}

.card__btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.card:hover .card__btn-icon {
    transform: translateX(2px);
}

.card__btn-icon svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

/* ---------- ASSIST BAR ---------- */
.assist {
    margin: 18px 0 26px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-bar);
    padding: 18px 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    box-shadow: 0 14px 30px -18px rgba(11, 37, 69, 0.55);
}

.assist__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.assist__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.assist__icon svg {
    width: 26px;
    height: 26px;
}

.assist__text {
    min-width: 0;
}

.assist__title {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: clamp(14px, 1.9vw, 16px);
    color: #fff;
    line-height: 1.25;
}

.assist__sub {
    margin: 0;
    font-weight: 300;
    font-size: clamp(12px, 1.6vw, 13.5px);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

.assist__divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.18);
}

.assist__right {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    justify-self: start;
}

.assist__phone {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2f9a55;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px -8px rgba(47, 154, 85, 0.65);
}

.assist__phone svg {
    width: 22px;
    height: 22px;
}

.assist__call {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.assist__call-label {
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.assist__call-number {
    font-weight: 700;
    font-size: clamp(15px, 2vw, 18px);
    color: #fff;
    letter-spacing: 0.01em;
}

/* ---------- FOOTER ---------- */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 6px;
    color: var(--navy);
}

.footer__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer__tag {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: clamp(16px, 2.4vw, 20px);
    color: var(--gold);
    line-height: 1;
}

.footer__sep {
    width: 1px;
    height: 18px;
    background: var(--navy);
    opacity: 0.5;
}

.footer__brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: clamp(11px, 1.6vw, 13px);
    color: var(--navy);
    text-align: center;
}

.footer__credit {
    font-size: 11.5px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
}

.footer__credit-name {
    font-weight: 700;
    color: var(--navy);
}

/* =========================================================
   FLOW VIEWS — shared (Restaurant / Dining / Directory / Feedback)
   ========================================================= */
.flow {
    --accent: var(--navy);
    padding-top: 18px;
}

.flow--green {
    --accent: var(--green);
}

.flow--navy {
    --accent: var(--blue);
}

.flow--purple {
    --accent: var(--purple);
}

.flow--gold {
    --accent: var(--gold);
}

.flow--amber {
    --accent: var(--amber);
}

.flow__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 6px 0 4px;
}

.flow__back {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(11, 37, 69, 0.14);
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px -6px rgba(11, 37, 69, 0.2);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.flow__back:hover {
    transform: translateX(-2px);
}

.flow__back svg {
    width: 20px;
    height: 20px;
}

.flow__brand {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.flow__brand-logo {
    display: block;
    width: clamp(110px, 18vw, 150px);
    height: auto;
    mix-blend-mode: multiply;
    /* See .brand__logo — hidden until boot.js sets the real logo. */
    visibility: hidden;
}

.flow__top-spacer {
    width: 44px;
}

.flow__title {
    text-align: center;
    padding: 18px 8px 6px;
}

.flow__title h1 {
    margin: 0 0 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(26px, 5vw, 38px);
    color: var(--navy);
}

.flow__title-rule {
    display: inline-block;
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.flow__steps {
    margin: 14px 0 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.flow__steps .dot {
    width: 26px;
    height: 4px;
    border-radius: 4px;
    background: rgba(11, 37, 69, 0.18);
    transition: background 0.2s ease, width 0.2s ease;
}

.flow__steps .dot.is-active {
    background: var(--accent);
    width: 36px;
}

.flow__steps .dot.is-done {
    background: var(--accent);
    opacity: 0.6;
}

.offer-banner {
    display: block;
    margin: 16px auto 4px;
    max-width: 720px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(11, 37, 69, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 37, 69, 0.18);
}

.offer-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* Offer-banner image slider */
.offer-banner--slider {
    position: relative;
}

.offer-banner__track {
    display: flex;
    transition: transform 0.4s ease;
}

.offer-banner__slide {
    flex: 0 0 100%;
}

.offer-banner__slide img {
    display: block;
    width: 100%;
    height: auto;
}

.offer-banner__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.offer-banner__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
}

.offer-banner__dot.is-active {
    background: #fff;
}

/* ---------- CHEF'S SPECIAL ---------- */
.chef-special {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px auto 4px;
    max-width: 720px;
    padding: 14px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 8%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent) 18%, #fff);
    box-shadow: 0 6px 18px rgba(11, 37, 69, 0.08);
}

.chef-special__row {
    display: flex;
    gap: 14px;
    align-items: center;
}

.chef-special__img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
    flex: none;
}

.chef-special__body {
    min-width: 0;
    flex: 1;
}

.chef-special__action {
    flex: none;
}

.chef-special__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
}

.chef-special__name {
    margin: 2px 0 4px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--ink);
}

.chef-special__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ink-soft);
}

.chef-special__price {
    display: inline-block;
    margin-top: 6px;
    font-weight: 700;
    color: var(--accent);
}

.chef-special__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.chef-special__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: color-mix(in srgb, var(--accent) 25%, transparent);
}

.chef-special__dot.is-active {
    background: var(--accent);
}

.flow__subtitle {
    margin: 14px auto 0;
    max-width: 560px;
    color: var(--ink-soft);
    font-size: clamp(13px, 1.9vw, 15px);
    line-height: 1.5;
}

/* ---------- card panel ---------- */
.card-panel {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 26px 26px 28px;
    margin: 22px 0 18px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.card-panel::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: var(--accent);
}

.panel__title {
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 2.2vw, 18px);
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel__title--mt {
    margin-top: 22px;
}

.panel__sub {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
}

/* ---------- form ---------- */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field--mt {
    margin-top: 18px;
}

.field--inline {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.field--inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    border: 1px solid var(--line);
    accent-color: var(--accent);
    flex: 0 0 auto;
    cursor: pointer;
}

.field--inline span {
    flex: 1 1 auto;
}

.field__label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.field.is-invalid input,
.field.is-invalid textarea {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.spa-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.spa-slots__empty,
.spa-slots__none {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin: 0;
}

.spa-slot {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.spa-slot:hover {
    border-color: var(--accent);
}

.spa-slot.is-selected {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.form__actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px -10px color-mix(in srgb, var(--accent) 60%, transparent);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--accent);
}

.btn--ghost {
    background: #fff;
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 30%, transparent);
    box-shadow: none;
}

.btn--ghost:hover {
    background: color-mix(in srgb, var(--accent) 8%, #fff);
}

/* ---------- chips ---------- */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.chip {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 500;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.chip:hover {
    border-color: var(--chip-color, var(--accent));
    color: var(--chip-color, var(--accent));
}

.chip.is-active {
    background: var(--chip-color, var(--accent));
    color: #fff;
    border-color: var(--chip-color, var(--accent));
    box-shadow: 0 6px 14px -8px color-mix(in srgb, var(--chip-color, var(--accent)) 60%, transparent);
}

.chip--urgent {
    border-color: rgba(192, 57, 43, 0.4);
    color: #c0392b;
}

.chip--urgent.is-active {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

.chip__prio {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    background: var(--chip-color, var(--accent));
    color: #fff;
}

.chip__prio--high {
    background: #F97316;
}

.chip__prio--urgent {
    background: #EF4444;
}

.chip__prio--low {
    background: #10B981;
}

.chip__prio--medium {
    background: #64748B;
}

/* =========================================================
   RESTAURANT SELECTION GRID
   ========================================================= */
.resto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.resto-card {
    --resto-accent: var(--accent);
    position: relative;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 18px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.18s ease;
    font: inherit;
    color: var(--ink);
}

/* When a photo is present, drop the outer padding so the image
   can sit edge-to-edge at the top, and re-introduce the padding
   on the text body below it. */
.resto-card--has-media {
    padding: 0 0 16px;
}

.resto-card--has-media .resto-card__body {
    padding: 14px 18px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.resto-card::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--resto-accent);
}

.resto-card:hover {
    transform: translateY(-3px);
    border-color: var(--resto-accent);
    box-shadow:
        0 22px 36px -20px rgba(11, 37, 69, 0.4),
        0 8px 16px -12px rgba(11, 37, 69, 0.22);
}

.resto-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--resto-accent) 12%, #fff);
    color: var(--resto-accent);
    display: grid;
    place-items: center;
    margin-bottom: 6px;
}

.resto-card__icon svg {
    width: 28px;
    height: 28px;
}

/* ---- Restaurant photo (top of card) ---- */
.resto-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: color-mix(in srgb, var(--resto-accent) 14%, #f7f3eb);
}

.resto-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.resto-card:hover .resto-card__media img {
    transform: scale(1.04);
}

.resto-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
}

.resto-card__badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--resto-accent);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.resto-card__badge svg {
    width: 22px;
    height: 22px;
}

.resto-card__name {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    line-height: 1.2;
}

.resto-card__cuisine {
    margin: 2px 0 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--resto-accent);
    letter-spacing: 0.02em;
}

.resto-card__tagline {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ink-soft);
    flex: 1;
}

.resto-card__hours {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resto-card__hours svg {
    width: 14px;
    height: 14px;
}

.resto-card__phone {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resto-card__phone svg {
    width: 14px;
    height: 14px;
}

.resto-card__cta {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--resto-accent);
    letter-spacing: 0.02em;
}

/* =========================================================
   MENU (Restaurant / Dining)
   ========================================================= */
.menu {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin: 22px 0 96px;
    position: relative;
}

.menu::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: var(--accent);
}

/* promotion banner (top of the menu list) */
.menu__promo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 14px 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(120deg,
            color-mix(in srgb, var(--accent) 14%, #fff),
            color-mix(in srgb, var(--gold) 18%, #fff));
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.menu__promo[hidden] {
    display: none;
}

/* Slider variant: container clips a horizontal track of full-width slides. */
.menu__promo--slider {
    display: block;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.menu__promo--slider .menu__promo-track {
    display: flex;
    transition: transform 0.4s ease;
}

.menu__promo-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    box-sizing: border-box;
}

.menu__promo-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0 0 10px;
}

.menu__promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: color-mix(in srgb, var(--accent) 30%, #fff);
}

.menu__promo-dot.is-active {
    background: var(--accent);
}

.menu__promo-media {
    flex: 0 0 auto;
}

.menu__promo-media img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.menu__promo-text {
    min-width: 0;
}

.menu__promo-label {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.menu__promo-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.25;
}

.menu__promo-sub {
    margin: 3px 0 0;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
}

.menu__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 10px;
    border-bottom: 1px solid var(--line);
}

.menu__switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    font-size: 12.5px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
    flex: 0 0 auto;
}

.menu__switch svg {
    width: 14px;
    height: 14px;
}

.menu__switch:hover {
    background: color-mix(in srgb, var(--accent) 8%, #fff);
    transform: translateX(-2px);
}

.menu__header-text {
    min-width: 0;
    flex: 1 1 auto;
}

.menu__header-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    line-height: 1.2;
}

.menu__header-sub {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.menu__cat-tagline {
    margin: 4px 0 10px;
    padding: 0 4px;
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
}

.menu__tabs {
    display: flex;
    gap: 6px;
    padding: 14px 14px 6px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--line);
}

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

.menu__tab {
    flex: 0 0 auto;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.menu__tab:hover {
    color: var(--accent);
}

.menu__tab.is-active {
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    color: var(--accent);
}

.menu__items {
    display: flex;
    flex-direction: column;
    padding: 6px 18px 18px;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item__body {
    min-width: 0;
}

.menu-item__name {
    margin: 0 0 4px;
    font-weight: 600;
    color: var(--ink);
    font-size: 15.5px;
}

.menu-item__desc {
    margin: 0 0 6px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.4;
}

.menu-item__price {
    font-weight: 700;
    color: var(--accent);
    font-size: 14.5px;
}

/* ---------- Food-type tag badges ---------- */
.menu-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 8px;
}

.food-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px 3px 4px;
    border-radius: 999px;
    background: color-mix(in srgb, currentColor 10%, #fff);
    border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
}

.food-tag__icon {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.food-tag__icon svg {
    width: 14px;
    height: 14px;
}

.food-tag__label {
    color: color-mix(in srgb, currentColor 88%, #000);
}

.menu-item__qty {
    align-self: center;
}

.qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    color: var(--accent);
    height: 38px;
    min-width: 110px;
    justify-content: space-between;
}

.qty__btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.qty__btn:hover {
    background: color-mix(in srgb, var(--accent) 10%, #fff);
}

.qty__val {
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
    min-width: 28px;
    text-align: center;
}

.qty--add {
    width: auto;
    min-width: 0;
}

.qty--add .qty__add-btn {
    border: none;
    padding: 0 18px;
    height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qty--add .qty__add-btn:hover {
    filter: brightness(1.05);
}

.qty--selected {
    width: auto;
    min-width: 0;
}

.qty--selected .qty__selected-btn {
    border: none;
    padding: 0 16px;
    height: 38px;
    background: #2f9a55;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qty--selected .qty__selected-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.qty--selected .qty__selected-btn:hover {
    filter: brightness(1.05);
}

/* sticky cart bar */
.menu__bar {
    position: sticky;
    bottom: 12px;
    margin: 0 auto;
    max-width: 1080px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 18px 36px -16px rgba(11, 37, 69, 0.55);
    z-index: 10;
}

.menu__bar-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.menu__bar-count {
    font-size: 12.5px;
    font-weight: 500;
    opacity: 0.8;
}

.menu__bar-total {
    font-weight: 700;
    font-size: 17px;
    color: var(--gold);
}

/* =========================================================
   ORDER SUMMARY
   ========================================================= */
.summary__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    border-top: 1px solid var(--line);
}

.summary__item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.summary__item-name {
    font-weight: 600;
    color: var(--ink);
}

.summary__item-meta {
    color: var(--ink-soft);
    font-size: 13px;
}

.summary__item-price {
    font-weight: 700;
    color: var(--accent);
    text-align: right;
    min-width: 80px;
}

.summary__totals {
    padding-top: 8px;
}

.summary__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.summary__row--grand {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    font-size: 17px;
}

.summary__row--grand span:last-child {
    color: var(--accent);
}

/* guest details shown in the review section, before the order button */
.review-guest {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 4%, #fff);
}

.review-guest:empty {
    display: none;
}

.review-guest__title {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
}

.review-guest__list {
    margin: 0;
    display: grid;
    gap: 10px;
}

.review-guest__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.review-guest__row dt {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
}

.review-guest__row dd {
    margin: 0;
    font-size: 14.5px;
    color: var(--ink);
    text-align: right;
    word-break: break-word;
}

/* terms & conditions note, before the order button */
.review-terms {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 7%, #fff);
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

.review-viewonly {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    border: 1px dashed color-mix(in srgb, var(--accent) 35%, #fff);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.summary__taxnote {
    margin: 8px 2px 0;
    font-size: 12px;
    color: var(--ink-soft);
}

.review-terms__title {
    margin: 0 0 6px;
    font-weight: 700;
    color: var(--ink);
}

.review-terms ul {
    margin: 0;
    padding-left: 18px;
}

.review-terms li {
    margin: 2px 0;
}

/* =========================================================
   DIRECTORY
   ========================================================= */
.directory__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.directory__btn {
    /* Bigger hit target + stronger shadow than the default .btn */
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 14px;
    flex: 1 1 220px;
    max-width: 320px;
    min-height: 52px;
    text-transform: uppercase;
}

.directory__btn svg {
    width: 20px;
    height: 20px;
}

.directory__btn--download {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow:
        0 12px 24px -12px color-mix(in srgb, var(--accent) 70%, transparent),
        0 4px 10px -6px rgba(11, 37, 69, 0.25);
}

.directory__btn--download:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
}

/* Upgrade Your Stay — amber, matching the Upgrade section's theme. */
.directory__btn--upgrade {
    background: var(--amber);
    color: #ffffff;
    border-color: var(--amber);
    box-shadow:
        0 12px 24px -12px color-mix(in srgb, var(--amber) 70%, transparent),
        0 4px 10px -6px rgba(11, 37, 69, 0.25);
}

.directory__btn--upgrade:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
}

/* Secondary action in gold so the two buttons are clearly distinguishable. */
.directory__btn--external {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow:
        0 12px 24px -12px color-mix(in srgb, var(--gold) 70%, transparent),
        0 4px 10px -6px rgba(11, 37, 69, 0.25);
}

.directory__btn--external:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .directory__btn {
        flex: 1 1 100%;
        max-width: none;
    }
}

.directory__intro {
    margin: 0 0 22px;
    padding: 14px 18px;
    background: color-mix(in srgb, var(--accent) 7%, #fff);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.55;
}

.directory-section {
    margin: 0 0 28px;
}

.directory-section:last-of-type {
    margin-bottom: 0;
}

.directory-section__head {
    margin: 0 0 14px;
}

.directory-section__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 22px);
    color: var(--accent);
    letter-spacing: 0.02em;
}

.directory-section__tagline {
    margin: 4px 0 0;
    font-size: 13.5px;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.45;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.directory-card {
    display: flex;
    gap: 12px;
    padding: 14px 14px 14px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.directory-card:hover {
    border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
    box-shadow: 0 10px 20px -16px rgba(11, 37, 69, 0.3);
    transform: translateY(-1px);
}

.directory-card__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.directory-card__icon svg {
    width: 20px;
    height: 20px;
}

.directory-card__body {
    min-width: 0;
}

.directory-card__title {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.25;
}

.directory-card__text {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

.directory-longform {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.directory-block {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.directory-block__title {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--accent);
    letter-spacing: 0.01em;
}

.directory-block__text {
    margin: 0;
    color: var(--ink);
    font-size: 13.5px;
    line-height: 1.55;
}

.directory-contact {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    text-align: center;
}

.directory-contact__name {
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
}

.directory-contact__line {
    margin: 4px 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.directory-contact__line a {
    color: var(--gold);
    text-decoration: none;
}

.directory-contact__line a:hover {
    text-decoration: underline;
}

.directory__pdf {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.directory__pdf>summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--accent);
    font-size: 13.5px;
    letter-spacing: 0.02em;
    padding: 6px 0;
    list-style: none;
}

.directory__pdf>summary::-webkit-details-marker {
    display: none;
}

.directory__pdf>summary::before {
    content: "▸ ";
    display: inline-block;
    margin-right: 6px;
    transition: transform 0.18s ease;
}

.directory__pdf[open]>summary::before {
    transform: rotate(90deg);
}

.directory__viewer {
    width: 100%;
    height: 70vh;
    min-height: 480px;
    margin-top: 14px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f7f3eb;
}

.directory__viewer iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================================================
   SUCCESS
   ========================================================= */
.success {
    text-align: center;
    padding: 40px 26px 32px;
}

.success__icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 14px;
    color: var(--accent);
}

.success__icon svg {
    width: 100%;
    height: 100%;
}

.success__notify {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 18px 0 22px;
}

.success__note {
    margin: 6px auto 22px;
    max-width: 380px;
    padding: 10px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 8%, #fff);
    color: var(--accent);
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    line-height: 1.45;
}

.success__prep {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: -8px auto 24px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--gold, #c8a45a);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
}

.success__prep strong {
    font-weight: 800;
}

.success__prep-icon {
    font-size: 16px;
    line-height: 1;
}

.success .btn--primary {
    margin: 0 auto;
}

/* =========================================================
   UPGRADE YOUR STAY — multi-step flow (guest → pick → summary)
   ========================================================= */

/* ---------- Step 2: two-pane service picker ---------- */
.upgrade-pick {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    margin: 22px 0 96px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}

.upgrade-pick::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: var(--accent);
    pointer-events: none;
}

/* ----- Sidebar ----- */
.upgrade-pick__side {
    border-right: 1px solid var(--line);
    padding: 22px 16px 24px;
    background: color-mix(in srgb, var(--accent) 5%, #fff);
}

.upgrade-pick__side-title {
    margin: 0 0 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
}

.upgrade-pick__side-sub {
    margin: 0 0 16px;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.45;
}

.upgrade-pick__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upgrade-pick__nav-item {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--ink);
    font: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.upgrade-pick__nav-item:hover {
    background: #fff;
    border-color: color-mix(in srgb, var(--accent) 28%, transparent);
    color: var(--navy);
}

.upgrade-pick__nav-item.is-active {
    background: #fff;
    border-color: var(--accent);
    color: var(--navy);
    box-shadow: 0 6px 14px -10px color-mix(in srgb, var(--accent) 60%, transparent);
}

.upgrade-pick__nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent) 14%, #fff);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.upgrade-pick__nav-icon svg {
    width: 18px;
    height: 18px;
}

.upgrade-pick__nav-label {
    min-width: 0;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.upgrade-pick__nav-name {
    min-width: 0;
}

/* Free / payable pill */
.upgrade-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}

.upgrade-badge__sym {
    font-weight: 800;
}

.upgrade-badge--free {
    background: color-mix(in srgb, #2f9a55 14%, #fff);
    color: #1e7d42;
}

.upgrade-badge--paid {
    background: color-mix(in srgb, var(--gold) 26%, #fff);
    color: #8a6a1f;
}

/* Check + chev share the same grid slot — only one shows at a time, based
   on whether the service is in the cart. Both being in the layout at the
   same time would push the chev onto a second row. */
.upgrade-pick__nav-check,
.upgrade-pick__nav-chev {
    grid-column: 3;
    grid-row: 1;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
}

.upgrade-pick__nav-check {
    border-radius: 50%;
    background: #2f9a55;
    color: #fff;
    display: none;
}

.upgrade-pick__nav-check svg {
    width: 12px;
    height: 12px;
}

.upgrade-pick__nav-chev {
    color: var(--ink-soft);
    transition: color 0.15s ease;
}

.upgrade-pick__nav-chev svg {
    width: 14px;
    height: 14px;
}

.upgrade-pick__nav-item:hover .upgrade-pick__nav-chev,
.upgrade-pick__nav-item.is-active .upgrade-pick__nav-chev {
    color: var(--accent);
}

/* Swap: show check, hide chev when added. */
.upgrade-pick__nav-item.is-added .upgrade-pick__nav-check {
    display: grid;
}

.upgrade-pick__nav-item.is-added .upgrade-pick__nav-chev {
    display: none;
}

/* ----- Right pane ----- */
.upgrade-pick__main {
    padding: 26px 26px 28px;
    min-width: 0;
    min-height: 340px;
}

.upgrade-pick__back {
    display: none;
    /* shown only on mobile */
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px 7px 10px;
    color: var(--accent);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 14px;
}

.upgrade-pick__back svg {
    width: 16px;
    height: 16px;
}

/* ----- "Add More Service" CTA (bottom of right pane) ----- */
.upgrade-form__more {
    display: none;
    /* shown only on mobile */
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 10px;
    padding: 14px 16px;
    background: var(--accent);
    background-image: linear-gradient(135deg,
            color-mix(in srgb, var(--accent) 90%, #000),
            var(--accent));
    border: none;
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 12px 22px -14px color-mix(in srgb, var(--accent) 80%, transparent);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.upgrade-form__more:hover,
.upgrade-form__more:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px -14px color-mix(in srgb, var(--accent) 90%, transparent);
    outline: none;
}

.upgrade-form__more:active {
    transform: translateY(0);
}

.upgrade-form__more-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.upgrade-form__more-icon svg {
    width: 18px;
    height: 18px;
}

.upgrade-form__more-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.upgrade-form__more-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.upgrade-form__more-sub {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
}

.upgrade-form__more-chev {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    opacity: 0.9;
    flex-shrink: 0;
}

.upgrade-form__more-chev svg {
    width: 16px;
    height: 16px;
}

.upgrade-pick__body {
    min-height: 200px;
}

/* Empty-state copy */
.upgrade-pick__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--ink-soft);
}

.upgrade-pick__empty-icon {
    width: 72px;
    height: 72px;
    color: color-mix(in srgb, var(--accent) 50%, var(--line));
    margin-bottom: 14px;
}

.upgrade-pick__empty-icon svg {
    width: 100%;
    height: 100%;
}

.upgrade-pick__empty h3 {
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--navy);
}

.upgrade-pick__empty p {
    margin: 0;
    max-width: 340px;
    line-height: 1.5;
    font-size: 14px;
}

.upgrade-pick__empty-icon {
    color: color-mix(in srgb, var(--accent) 55%, var(--gold));
}

.upgrade-pick__empty-hints {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    text-align: left;
    width: 100%;
    max-width: 340px;
}

.upgrade-pick__empty-hints li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--navy);
    font-weight: 500;
}

.upgrade-pick__empty-hint-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    color: var(--accent);
}

.upgrade-pick__empty-hint-icon svg {
    width: 15px;
    height: 15px;
}

/* ----- Per-service form (right pane) ----- */
.upgrade-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.upgrade-form__banner {
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--cream, #f2ece1);
}

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

.upgrade-form__head {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 14px;
    align-items: center;
}

.upgrade-form__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px -8px color-mix(in srgb, var(--accent) 70%, transparent);
}

.upgrade-form__icon svg {
    width: 26px;
    height: 26px;
}

.upgrade-form__head-text {
    min-width: 0;
}

.upgrade-form__title {
    margin: 0 0 2px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.2;
}

.upgrade-form__sub {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.45;
}

.upgrade-form__added-pill {
    align-self: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: #2f9a55;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.upgrade-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.upgrade-form__fields .field--full {
    grid-column: 1 / -1;
}

.upgrade-form__fields textarea {
    min-height: 80px;
}

/* Make textarea & "Special Preferences" span the full row */
.upgrade-form__fields .field:has(textarea) {
    grid-column: 1 / -1;
}

.upgrade-form__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.upgrade-form__actions .btn {
    flex: 1 1 180px;
    max-width: 260px;
}

.upgrade-form__remove {
    background: #fff;
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.35);
    box-shadow: none;
}

.upgrade-form__remove:hover {
    background: rgba(192, 57, 43, 0.08);
    border-color: rgba(192, 57, 43, 0.6);
}

/* ---------- Per-service: priced menu (Spa, Laundry, Recreation, Minibar) ---------- */
.upgrade-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.upgrade-menu__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
}

.upgrade-menu__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 6px;
}

.upgrade-menu__tab {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.upgrade-menu__tab:hover {
    color: var(--navy);
    border-color: var(--navy);
}

.upgrade-menu__tab.is-active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.upgrade-menu__cat-tagline {
    margin: 0 0 6px;
    color: var(--ink-soft);
    font-size: 12.5px;
    font-style: italic;
}

.upgrade-menu__items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.upgrade-menu__item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1ece2;
}

.upgrade-menu__item:last-child {
    border-bottom: 0;
}

.upgrade-menu__item-body {
    min-width: 0;
}

.upgrade-menu__item-name {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.upgrade-menu__item-desc {
    margin: 0 0 4px;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.45;
}

.upgrade-menu__item-meta {
    margin: 0;
    font-size: 12.5px;
    color: var(--ink-soft);
}

.upgrade-menu__item-price {
    color: var(--navy);
    font-weight: 700;
    margin-right: 4px;
}

.upgrade-menu__item-meta-sep {
    display: inline-block;
    margin: 0 2px;
    color: var(--line);
}

.upgrade-menu__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--gold) 14%, #fff);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
}

/* ---------- Per-service: multi-select chips (Pillow, Toiletries) ---------- */
.upgrade-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.upgrade-checks__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
}

.upgrade-checks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.upgrade-check {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.upgrade-check:hover {
    border-color: var(--navy);
}

.upgrade-check.is-on {
    border-color: var(--navy);
    background: color-mix(in srgb, var(--navy) 6%, #fff);
    box-shadow: 0 4px 12px -8px rgba(11, 37, 69, 0.45);
}

.upgrade-check__tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    color: transparent;
    background: #fff;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.upgrade-check__tick svg {
    width: 12px;
    height: 12px;
}

.upgrade-check.is-on .upgrade-check__tick {
    background: #2f9a55;
    border-color: #2f9a55;
    color: #fff;
}

.upgrade-check__label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
}

.upgrade-check__desc {
    display: block;
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.4;
    margin-top: 2px;
}

/* ---------- Per-service: footnotes ---------- */
.upgrade-notes {
    background: #f7f3eb;
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--ink-soft);
    font-size: 12.5px;
    line-height: 1.5;
}

.upgrade-notes__title {
    margin: 0 0 4px;
    color: var(--navy);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.upgrade-notes ul {
    margin: 0;
    padding-left: 18px;
}

.upgrade-notes li+li {
    margin-top: 3px;
}

/* Form-header free/payable pill */
.upgrade-form__badge {
    display: inline-flex;
    margin-top: 8px;
}

/* Terms & Conditions (shown before "Add to Request") */
.upgrade-terms {
    background: color-mix(in srgb, var(--gold) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--ink-soft);
    font-size: 12.5px;
    line-height: 1.5;
}

.upgrade-terms__title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px;
    color: var(--navy);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.upgrade-terms__icon {
    width: 16px;
    height: 16px;
    color: #8a6a1f;
    flex: 0 0 auto;
}

.upgrade-terms__icon svg {
    width: 100%;
    height: 100%;
}

.upgrade-terms ul {
    margin: 0;
    padding-left: 18px;
}

.upgrade-terms li+li {
    margin-top: 3px;
}

/* ---------- Sticky cart bar (step 2) ---------- */
.upgrade-pick__bar {
    position: sticky;
    bottom: 12px;
    margin: 0 auto;
    max-width: 1080px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 18px 36px -16px rgba(11, 37, 69, 0.55);
    z-index: 10;
}

.upgrade-pick__bar-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.upgrade-pick__bar-count {
    font-weight: 700;
    font-size: 17px;
    color: var(--gold);
}

.upgrade-pick__bar-sub {
    font-size: 12.5px;
    font-weight: 500;
    opacity: 0.8;
}

/* ---------- Step 3: summary list ---------- */
.summary__list--upgrade {
    padding-top: 4px;
}

.summary__item--upgrade {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
}

.summary__item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 14%, #fff);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.summary__item-icon svg {
    width: 22px;
    height: 22px;
}

.summary__item-body {
    min-width: 0;
}

.summary__item-body .summary__item-name {
    margin-bottom: 6px;
}

.summary__svc-fields {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.summary__svc-fields li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-soft);
}

.summary__svc-fields li span:last-child {
    color: var(--ink);
    font-weight: 600;
    text-align: right;
}

.summary__no-detail {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12.5px;
    font-style: italic;
}

.summary__svc-items {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.summary__svc-items li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--ink);
}

.summary__svc-items li span:last-child {
    color: var(--navy);
    font-weight: 600;
    text-align: right;
}

.summary__svc-qty {
    color: var(--ink-soft);
    font-weight: 500;
}

.summary__svc-subtotal {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--ink-soft);
}

.summary__svc-subtotal strong {
    color: var(--navy);
}

.summary__svc-checks {
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.summary__svc-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--navy) 8%, #fff);
    border: 1px solid color-mix(in srgb, var(--navy) 20%, #fff);
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
}

.summary__remove {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.summary__remove:hover {
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.5);
    background: rgba(192, 57, 43, 0.06);
}

.summary__remove svg {
    width: 14px;
    height: 14px;
}

/* =========================================================
   UPGRADE — Responsive
   ========================================================= */

/* Tablet — keep two panes but narrower */
@media (max-width: 900px) {
    .upgrade-pick {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .upgrade-pick__main {
        padding: 22px 20px 24px;
    }

    .upgrade-form__fields {
        grid-template-columns: 1fr;
    }
}

/* Mobile — single-pane navigation */
@media (max-width: 700px) {
    .upgrade-pick {
        grid-template-columns: 1fr;
        margin-bottom: 110px;
    }

    .upgrade-pick__side {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 18px 14px 20px;
    }

    .upgrade-pick__main {
        padding: 20px 16px 24px;
    }

    .upgrade-pick__back {
        display: inline-flex;
        background: color-mix(in srgb, var(--accent) 10%, #fff);
        border: 1.5px solid var(--accent);
        color: var(--accent);
        padding: 9px 18px 9px 12px;
        font-size: 14px;
        box-shadow: 0 4px 10px -6px color-mix(in srgb, var(--accent) 70%, transparent);
    }

    .upgrade-form__more {
        display: flex;
    }

    /* While the sidebar is in focus, hide the right pane below it.
       When a service is open, hide the sidebar and show only the form. */
    .upgrade-pick:not(.is-form-open) .upgrade-pick__main {
        display: none;
    }

    .upgrade-pick.is-form-open .upgrade-pick__side {
        display: none;
    }

    .upgrade-pick__bar {
        bottom: 8px;
        padding: 10px 12px 10px 16px;
    }

    .upgrade-form__head {
        grid-template-columns: 44px 1fr;
    }

    .upgrade-form__icon {
        width: 44px;
        height: 44px;
    }

    .upgrade-form__icon svg {
        width: 22px;
        height: 22px;
    }

    .upgrade-form__added-pill {
        grid-column: 1 / -1;
        justify-self: flex-start;
    }

    .upgrade-form__actions .btn {
        flex: 1 1 100%;
        max-width: none;
    }

    .summary__item--upgrade {
        grid-template-columns: 36px 1fr auto;
        gap: 10px;
    }

    .summary__item-icon {
        width: 36px;
        height: 36px;
    }

    .summary__item-icon svg {
        width: 18px;
        height: 18px;
    }

    .summary__svc-fields li {
        flex-direction: column;
        gap: 2px;
    }

    .summary__svc-fields li span:last-child {
        text-align: left;
    }
}
}

/* =========================================================
   TOAST
   ========================================================= */
.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 14px 30px -12px rgba(11, 37, 69, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 100;
    max-width: 90vw;
}

.toast.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Success / error tints (set by toast(msg, "success" | "error")). */
.toast--success {
    background: #1d7a4d;
}

.toast--error {
    background: #b3261e;
}

/* When hidden, the toast must be fully removed from the layout so it never
   renders inline in the page body. The fixed-position overlay only shows
   while the `is-show` class is applied (see toast() in script.js). */
.toast[hidden] {
    display: none !important;
}

/* =========================================================
   MODAL — confirm dialog
   ========================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal[hidden] {
    display: none !important;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 37, 69, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.22s ease;
    cursor: pointer;
}

.modal__panel {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 30px 28px 24px;
    max-width: 440px;
    width: 100%;
    box-shadow:
        0 28px 64px -22px rgba(11, 37, 69, 0.5),
        0 10px 24px -16px rgba(11, 37, 69, 0.3);
    transform: scale(0.94) translateY(10px);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.2s ease;
    text-align: center;
    overflow: hidden;
}

.modal__panel::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: var(--gold);
}

.modal.is-open .modal__backdrop {
    opacity: 1;
}

.modal.is-open .modal__panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--gold) 18%, #fff);
    color: var(--gold);
    display: grid;
    place-items: center;
}

.modal__icon svg {
    width: 30px;
    height: 30px;
}

.modal--danger .modal__icon {
    background: rgba(192, 57, 43, 0.12);
    color: #c0392b;
}

.modal--danger .modal__panel::after {
    background: #c0392b;
}

.modal--info .modal__icon {
    background: color-mix(in srgb, var(--blue) 14%, #fff);
    color: var(--blue);
}

.modal__title {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    line-height: 1.25;
}

.modal__body {
    margin: 0 0 22px;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
    white-space: pre-line;
}

.modal__body--rich {
    white-space: normal;
    text-align: left;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 4px;
}

/* Wider variant for summary-style modals */
.modal--wide .modal__panel {
    max-width: 580px;
}

/* ---------- Upgrade summary inside the modal ---------- */
.upgrade-summary {
    color: var(--ink);
}

.upgrade-summary__lead {
    margin: 0 0 16px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
}

.upgrade-summary__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 18px 0 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.upgrade-summary__count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--amber);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.upgrade-summary__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.upgrade-summary__table th,
.upgrade-summary__table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    line-height: 1.4;
    word-break: break-word;
}

.upgrade-summary__table tr:last-child th,
.upgrade-summary__table tr:last-child td {
    border-bottom: none;
}

.upgrade-summary__table th {
    width: 38%;
    font-weight: 600;
    color: var(--ink-soft);
    background: color-mix(in srgb, var(--accent) 5%, #fff);
}

.upgrade-summary__table td {
    color: var(--ink);
    font-weight: 500;
}

.upgrade-summary__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upgrade-summary__svc {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
    border-radius: 10px;
}

.upgrade-summary__svc h4 {
    margin: 0 0 6px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
}

.upgrade-summary__fields {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.upgrade-summary__fields li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-soft);
}

.upgrade-summary__fields li span:last-child {
    color: var(--ink);
    font-weight: 600;
    text-align: right;
}

.upgrade-summary__nofields {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12.5px;
    font-style: italic;
}

.modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal__actions .btn {
    flex: 1 1 140px;
    max-width: 200px;
}

.modal--danger .btn--primary {
    background: #c0392b;
    box-shadow: 0 8px 18px -10px rgba(192, 57, 43, 0.6);
}

@media (max-width: 480px) {
    .modal__panel {
        padding: 24px 20px 20px;
        border-radius: 18px;
    }

    .modal__title {
        font-size: 19px;
    }

    .modal__body {
        font-size: 13.5px;
    }

    .modal__actions .btn {
        flex: 1 1 100%;
        max-width: none;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 820px) {
    .page {
        padding: 0 20px 28px;
    }

    .cards {
        gap: 16px;
    }

    .card {
        padding: 24px 16px 22px;
    }

    .card__icon {
        width: 64px;
        height: 64px;
    }

    .card__icon svg {
        width: 34px;
        height: 34px;
    }

    .card__btn {
        padding: 9px 14px 9px 18px;
        font-size: 13.5px;
    }

    .card-panel {
        padding: 22px 20px 24px;
    }
}

/* Phone */
@media (max-width: 600px) {
    .page {
        padding: 0 16px 24px;
    }

    .topbar {
        /* Language pill is currently disabled, so center the logo on mobile. */
        grid-template-columns: 1fr;
        align-items: center;
    }

    .topbar__spacer {
        display: none;
    }

    .brand {
        grid-column: 1;
        justify-content: center;
    }

    .brand__logo {
        width: clamp(120px, 38vw, 160px);
    }

    .lang {
        grid-column: 1;
        justify-self: center;
    }

    .lang__btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .welcome {
        padding: 18px 6px 28px;
    }

    .welcome__text br {
        display: none;
    }

    /* Stack cards into a 2-column grid; each card spans equally */
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cards .card {
        grid-column: span 1;
    }

    .card {
        padding: 20px 14px 18px;
        border-radius: 18px;
    }

    .card__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 12px;
    }

    .card__icon svg {
        width: 30px;
        height: 30px;
    }

    .card__title {
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .card__text {
        font-size: 12.5px;
        margin-bottom: 14px;
    }

    .card__text br {
        display: none;
    }

    .card__btn {
        padding: 8px 12px 8px 16px;
        font-size: 13px;
        max-width: none;
    }

    .card__btn-icon {
        width: 20px;
        height: 20px;
    }

    .assist {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 14px;
    }

    .assist__divider {
        display: none;
    }

    .assist__right {
        justify-self: start;
    }

    .footer {
        gap: 6px;
        padding: 6px 8px 6px;
    }

    .footer__main {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer__sep {
        display: none;
    }

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

    .form__actions .btn {
        flex: 1 1 auto;
    }

    .menu__bar {
        bottom: 8px;
        padding: 10px 12px 10px 16px;
    }

    .menu-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .menu-item .qty,
    .menu-item .qty--add {
        justify-self: flex-start;
    }

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

    .menu__header {
        padding: 14px 14px 8px;
        flex-wrap: wrap;
    }

    .food-tag__label {
        display: none;
    }

    .food-tag {
        padding: 3px;
    }

    .directory__viewer {
        height: 60vh;
        min-height: 380px;
    }

    .directory__actions .btn {
        flex: 1 1 calc(50% - 6px);
    }
}

/* Very small */
@media (max-width: 380px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .cards .card:nth-child(n) {
        grid-column: 1 / -1;
    }

    .card {
        padding: 22px 18px;
    }

    .card-panel {
        padding: 20px 16px 22px;
    }
}