:root {
    --bg: #f6ede4;
    --bg-soft: #ebdac7;
    --surface: #fff9f2;
    --surface-strong: #fffdf9;
    --ink: #1a2933;
    --muted: #58666f;
    --line: rgba(26, 41, 51, 0.12);
    --accent: #b76745;
    --accent-dark: #8d4c34;
    --accent-soft: #f3d8c8;
    --navy: #13293d;
    --sage: #d7e4d6;
    --success: #2d6a4f;
    --error: #a33c3c;
    --shadow: 0 24px 60px rgba(19, 41, 61, 0.1);
    --shadow-strong: 0 34px 80px rgba(19, 41, 61, 0.18);
    --radius: 24px;
    --radius-sm: 14px;
    --max: 1180px;
    --font-display: "Constantia", "Palatino Linotype", "Book Antiqua", serif;
    --font-body: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
}

@media print {
    body.report-body {
        background: #ffffff;
    }

    .no-print {
        display: none !important;
    }

    .report-shell {
        width: 100%;
        margin: 0;
    }

    .report-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #ffffff;
    }

    .admin-table {
        overflow: visible;
    }

    .report-table,
    .report-table-bookings,
    .report-table-payments {
        min-width: 0;
        width: 100%;
        table-layout: fixed;
    }

    .report-table th,
    .report-table td {
        padding: 0.45rem 0.35rem;
        font-size: 0.74rem;
        line-height: 1.25;
    }

    .report-table th {
        font-size: 0.66rem;
        letter-spacing: 0.05em;
    }

    .report-col-stay,
    .report-col-status,
    .report-col-amount,
    .report-paid-at {
        min-width: 0;
        white-space: normal;
    }

    .report-section,
    .report-stat-grid {
        break-inside: avoid;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    isolation: isolate;
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.2), transparent 28%),
        radial-gradient(circle at left center, rgba(19, 41, 61, 0.08), transparent 26%),
        linear-gradient(180deg, #fbf5ef 0%, #f5ece1 46%, #f0e2d0 100%);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 42%),
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 20%);
    opacity: 0.9;
}

body.has-nav-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.narrow {
    width: min(calc(100% - 2rem), 820px);
}

.booking-page-shell {
    width: min(calc(100% - 2.5rem), 1420px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(251, 245, 239, 0.82);
    border-bottom: 1px solid rgba(19, 41, 61, 0.08);
    box-shadow: 0 10px 30px rgba(19, 41, 61, 0.06);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: min(214px, 38vw);
    height: 94px;
    padding: 0;
    overflow: hidden;
}

.brand img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(19, 41, 61, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.88);
    color: var(--navy);
    font-weight: 700;
}

.nav-toggle-box {
    display: grid;
    gap: 0.24rem;
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.site-nav a {
    color: var(--muted);
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--ink);
    background: rgba(19, 41, 61, 0.06);
}

.site-nav .button {
    margin-left: 0.35rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.95rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff8f2;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(181, 92, 67, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(181, 92, 67, 0.28);
}

.button:focus-visible,
.button-outline:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.calendar-day:focus-visible,
.gallery-nav:focus-visible,
.gallery-thumb:focus-visible,
.calendar-nav-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(78, 129, 213, 0.28);
    outline-offset: 2px;
}

.button:disabled,
.button[aria-disabled="true"] {
    opacity: 0.58;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button:disabled:hover,
.button[aria-disabled="true"]:hover {
    transform: none;
    box-shadow: none;
}

.button-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(16, 36, 61, 0.16);
    box-shadow: none;
}

.button-outline:hover {
    background: rgba(19, 41, 61, 0.06);
}

.button-light {
    background: #fff7ee;
    color: var(--navy);
}

.button-sm {
    padding: 0.62rem 1rem;
    font-size: 0.92rem;
}

.text-link {
    color: var(--accent-dark);
    font-weight: 700;
}

.section {
    padding: 4.5rem 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.82), rgba(255, 248, 241, 0.72)),
        radial-gradient(circle at top left, rgba(183, 103, 69, 0.08), transparent 28%);
}

.section-accent {
    background: linear-gradient(135deg, #10243d, #2f5268);
    color: #f7f1e8;
}

.page-intro {
    padding-top: 1.35rem;
    padding-bottom: 1.5rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent-dark);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.hero {
    position: relative;
    padding: 5.2rem 0 4.4rem;
    overflow: clip;
}

.hero::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: max(1rem, calc((100vw - var(--max)) / 2));
    width: min(32vw, 360px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 103, 69, 0.24), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.6rem;
    align-items: center;
}

.hero-copy,
.hero-art {
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: grid;
    align-content: start;
    gap: 0.4rem;
}

.hero-copy h1 {
    max-width: 11ch;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 58ch;
    font-size: 1.03rem;
}

.hero-actions,
.button-row,
.room-card-meta,
.detail-metadata,
.detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button-row form {
    margin: 0;
}

.hero-art img {
    border-radius: 32px;
    border: 1px solid rgba(19, 41, 61, 0.08);
    box-shadow: var(--shadow-strong);
}

.hero-showcase {
    padding: 2.2rem 0 6rem;
}

.hero-showcase::before {
    display: none;
}

.hero-showcase-shell {
    position: relative;
}

.hero-showcase-surface {
    position: relative;
    min-height: clamp(34rem, 72vw, 52rem);
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(13, 41, 63, 0.12), rgba(13, 41, 63, 0.34)),
        url("../images/hero-aj-background.png") center center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 34px 70px rgba(13, 41, 63, 0.22);
}

.hero-showcase-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 244, 201, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 180, 120, 0.06), rgba(8, 39, 68, 0.14));
    pointer-events: none;
}

.hero-showcase-content {
    position: relative;
    z-index: 1;
    width: min(100%, 52rem);
    display: grid;
    justify-items: center;
    align-content: end;
    gap: 0.85rem;
    color: #fff7ec;
    min-height: inherit;
    padding: clamp(12rem, 32vw, 22rem) 0 clamp(2.8rem, 7vw, 5rem);
}

.hero-showcase-logo {
    width: clamp(5.2rem, 10vw, 7.5rem);
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.18));
}

.hero-showcase-brand {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #3f2419;
    text-shadow: 0 2px 12px rgba(255, 247, 236, 0.3);
}

.hero-showcase-script,
.hero-showcase-tagline {
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-weight: 600;
    line-height: 1;
    color: #fff8f1;
    text-shadow: 0 10px 24px rgba(15, 23, 42, 0.32);
}

.hero-showcase-script {
    margin-top: 0.3rem;
    font-size: clamp(2.6rem, 5vw, 4.35rem);
}

.hero-showcase h1 {
    margin: 0;
    max-width: none;
    font-size: clamp(3.2rem, 8vw, 6.1rem);
    line-height: 0.95;
    color: #fffdf7;
    text-shadow: 0 10px 32px rgba(15, 23, 42, 0.28);
}

.hero-showcase-tagline {
    margin: 0;
    font-size: clamp(1.9rem, 4.1vw, 3.15rem);
}

.hero-image-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(16rem, 30vw, 21rem);
    min-height: clamp(4.4rem, 7vw, 5.15rem);
    padding: 1rem 2.9rem 1.02rem;
    border-radius: 999px;
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fffaf5;
    text-shadow: 0 2px 0 rgba(176, 55, 8, 0.28);
    background:
        radial-gradient(circle at 50% 72%, rgba(255, 220, 108, 0.72), transparent 28%),
        linear-gradient(180deg, #ff9932 0%, #ff7f23 55%, #ff7020 100%);
    border: 2px solid rgba(255, 191, 132, 0.72);
    box-shadow:
        inset 0 2px 0 rgba(255, 237, 211, 0.42),
        inset 0 -4px 0 rgba(220, 83, 16, 0.4),
        0 12px 0 rgba(228, 90, 18, 0.78),
        0 22px 38px rgba(255, 111, 28, 0.34);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-image-button:hover,
.hero-image-button:focus-visible {
    transform: translateY(-4px);
    color: #fffdf8;
    box-shadow:
        inset 0 2px 0 rgba(255, 237, 211, 0.5),
        inset 0 -4px 0 rgba(220, 83, 16, 0.4),
        0 14px 0 rgba(228, 90, 18, 0.82),
        0 26px 42px rgba(255, 111, 28, 0.38);
}

.hero-image-button:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 2px 0 rgba(255, 237, 211, 0.36),
        inset 0 -2px 0 rgba(220, 83, 16, 0.34),
        0 8px 0 rgba(228, 90, 18, 0.76),
        0 16px 28px rgba(255, 111, 28, 0.28);
}

.hero-showcase-link {
    margin-top: 0.4rem;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff9f2;
    text-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}

.hero-showcase-link:hover,
.hero-showcase-link:focus-visible {
    color: #ffe3c4;
}

.promo-marquee {
    position: relative;
    z-index: 3;
    margin-top: -0.2rem;
    background:
        linear-gradient(135deg, #152f4a, #b76745);
    color: #fff7ee;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.promo-marquee-track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0.85rem 0;
}

.promo-marquee-item {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-marquee-item strong {
    font-size: 0.98rem;
}

.home-stats-band {
    margin-top: -3.5rem;
    padding-top: 0;
    position: relative;
    z-index: 2;
}

.showcase-stats-grid .stat-card {
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 247, 238, 0.92)),
        radial-gradient(circle at top right, rgba(255, 149, 74, 0.14), transparent 48%);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.stats-grid,
.feature-grid,
.room-grid {
    display: grid;
    gap: 1.2rem;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    margin-top: 2rem;
}

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

.site-essentials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.panel,
.room-card,
.stat-card,
.feature-card,
.testimonial-card,
.info-card,
.confirmation-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 254, 251, 0.92), rgba(255, 249, 243, 0.92)),
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.06), transparent 46%);
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel,
.feature-card,
.testimonial-card,
.info-card,
.confirmation-card {
    padding: 1.5rem;
}

.stat-card {
    display: grid;
    gap: 0.55rem;
    align-content: start;
    min-height: 118px;
    padding: 1.15rem 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.92)),
        radial-gradient(circle at top right, rgba(181, 92, 67, 0.12), transparent 46%);
}

.stat-card strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.9vw, 2rem);
    line-height: 1.08;
    word-break: break-word;
}

.stat-rating-display {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.stat-card > span {
    display: block;
    max-width: 16ch;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.room-card {
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.room-card-image {
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.room-card:hover .room-card-image img {
    transform: scale(1.03);
}

.room-card-body {
    padding: 1.2rem;
}

.room-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.room-card-top h3 {
    flex: 1 1 auto;
}

.rating-pill,
.status-badge,
.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.34rem 0.7rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.rating-pill {
    flex-wrap: wrap;
    gap: 0.45rem;
    white-space: normal;
}

.rating-pill-count {
    font-size: 0.8rem;
    color: var(--accent-dark);
}

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--navy);
}

.star-rating-value {
    font-weight: 800;
    line-height: 1;
}

.star-rating-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.16rem;
}

.star-rating-icon {
    width: 0.98rem;
    height: 0.98rem;
    object-fit: contain;
}

.star-rating-icon.is-inactive {
    opacity: 0.22;
    filter: grayscale(0.1);
}

.testimonial-card .star-rating,
.admin-review-meta .star-rating {
    margin-top: 0.25rem;
}

.detail-rating {
    display: inline-flex;
    align-items: center;
}

.admin-review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.admin-review-meta span {
    color: var(--muted);
}

.room-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 1rem;
}

.room-card-price strong {
    font-size: 1.32rem;
}

.room-card-meta span,
.detail-metadata span {
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(19, 41, 61, 0.06);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading.compact {
    align-items: center;
}

.split-section,
.booking-layout,
.rooms-layout,
.room-detail-layout,
.page-intro-grid {
    display: grid;
    gap: 1.5rem;
}

.content-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 1.5rem;
    align-items: start;
}

.split-section,
.page-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-layout,
.room-detail-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
}

.rooms-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
}

.sticky-card {
    position: sticky;
    top: 6.4rem;
}

.panel-subtle {
    background: #fff6ee;
}

.testimonial-stack {
    display: grid;
    gap: 1rem;
}

.filter-panel,
.pricing-panel,
.booking-sidebar,
.room-detail-main {
    display: grid;
    gap: 1rem;
}

.room-detail-reviews {
    grid-column: 1 / 2;
}

.seo-article {
    display: grid;
    gap: 1rem;
}

.seo-article h2,
.seo-sidebar h2 {
    margin-top: 0.3rem;
}

.seo-article h3 {
    margin-top: 0.25rem;
    font-size: 1.22rem;
}

.content-list {
    margin: 0 0 0.35rem 1.2rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
}

.content-list li {
    padding-left: 0.15rem;
}

.seo-sidebar {
    position: sticky;
    top: 6.4rem;
    display: grid;
    gap: 1rem;
}

.seo-cta-box {
    display: grid;
    gap: 0.8rem;
}

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

.faq-card {
    display: grid;
    gap: 0.55rem;
}

.booking-offer-stack,
.promo-admin-list,
.promo-stack,
.promo-spotlight-grid {
    display: grid;
    gap: 1rem;
}

.booking-main-column {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.booking-sidebar-column {
    align-self: start;
}

.booking-estimate-panel {
    scrollbar-gutter: stable;
    z-index: 2;
}

.booking-promo-panel {
    align-self: start;
}

@media (min-width: 1025px) {
    .booking-page-shell .booking-sidebar-column {
        position: sticky;
        top: 6.4rem;
        align-self: start;
    }

    .booking-page-shell .booking-estimate-panel {
        position: static;
        max-height: calc(100vh - 7.6rem);
        overflow-y: auto;
    }
}

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

.promo-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 248, 237, 0.96), rgba(255, 242, 228, 0.94)),
        radial-gradient(circle at top right, rgba(255, 145, 88, 0.2), transparent 44%);
    border: 1px solid rgba(183, 103, 69, 0.18);
    box-shadow: 0 22px 44px rgba(112, 61, 36, 0.12);
}

.promo-card h3 {
    margin-bottom: 0;
}

.promo-card p {
    margin-bottom: 0;
}

.promo-card-highlight {
    background:
        linear-gradient(145deg, #fff0db 0%, #ffe3c6 100%);
    border-color: rgba(183, 103, 69, 0.24);
    box-shadow:
        0 26px 54px rgba(183, 103, 69, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.promo-card-active {
    border-color: rgba(19, 41, 61, 0.24);
    box-shadow:
        0 0 0 4px rgba(19, 41, 61, 0.08),
        0 24px 50px rgba(19, 41, 61, 0.16);
}

.promo-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.38rem 0.82rem;
    border-radius: 999px;
    background: #13293d;
    color: #fff7ef;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.promo-meta-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.15rem;
    list-style: disc;
    color: var(--navy);
}

.promo-meta-list li {
    color: var(--navy);
    font-weight: 700;
}

.promo-panel h2,
.promo-panel .eyebrow {
    margin-bottom: 0.3rem;
}

.promo-sidebar-callout {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 226, 194, 0.92), rgba(255, 242, 228, 0.96));
    border: 1px solid rgba(183, 103, 69, 0.2);
}

.promo-sidebar-callout p {
    margin: 0.45rem 0 0;
}

.promo-summary-list {
    margin-top: 0.1rem;
}

.promo-card-admin-preview {
    min-height: 100%;
}

.promo-toggle-grid {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 1.2rem;
}

.promo-spotlight-section {
    padding-top: 1rem;
}

.voucher-spotlight-section {
    padding-top: 0;
}

.voucher-card-value {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.1;
}

.voucher-spotlight-panel {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(19, 41, 61, 0.08);
}

.voucher-spotlight-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}

.voucher-spotlight-card {
    align-content: start;
}

.voucher-spotlight-card .button {
    width: fit-content;
}

.room-image-manager {
    margin-bottom: 1rem;
}

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

.room-image-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-strong);
}

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

.room-image-card-body {
    display: grid;
    gap: 0.8rem;
    padding: 0.9rem;
}

.detail-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.tag {
    background: var(--sage);
    color: #284734;
}

.gallery-slider {
    display: grid;
    gap: 0.9rem;
}

.gallery-stage {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.gallery-slide {
    display: none;
}

.gallery-slide.is-active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 36, 61, 0.72);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    font-family: "Segoe UI Symbol", "Arial", sans-serif;
}

.gallery-prev {
    left: 1rem;
    text-indent: -1px;
}

.gallery-next {
    right: 1rem;
    text-indent: 1px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 0.7rem;
}

.gallery-thumb {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.gallery-thumb.is-active {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

label {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(16, 36, 61, 0.12);
    border-radius: 16px;
    background: #fffdfa;
    color: var(--ink);
    padding: 0.88rem 0.95rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    border-color: rgba(78, 129, 213, 0.7);
    box-shadow: 0 0 0 4px rgba(78, 129, 213, 0.12);
    background: #ffffff;
}

select[multiple] {
    min-height: 160px;
}

textarea {
    resize: vertical;
}

.form-grid,
.addon-grid,
.footer-grid,
.admin-grid {
    display: grid;
    gap: 1rem;
}

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

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

.guest-details-stack,
.guest-extra-stack {
    display: grid;
    gap: 1rem;
}

.guest-card {
    padding: 1.15rem 1.2rem 1.25rem;
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 249, 242, 0.95)),
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.08), transparent 34%);
}

.guest-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.guest-card-header h4 {
    margin: 0 0 0.25rem;
    color: var(--navy);
}

.guest-card-header p {
    margin: 0;
}

.guest-card-generated.is-entering {
    opacity: 0;
    transform: translateY(8px);
}

.guest-card-generated {
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.checkbox-row,
.radio-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.checkbox-row input,
.radio-row input {
    width: auto;
    margin: 0;
}

.voucher-redeem-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.voucher-redeem-row .button {
    white-space: nowrap;
}

.voucher-feedback {
    display: none;
    margin: 0.7rem 0 0;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    font-size: 0.94rem;
    font-weight: 700;
}

.voucher-feedback.is-visible {
    display: block;
}

.voucher-feedback-success {
    background: rgba(45, 106, 79, 0.12);
    color: var(--success);
}

.voucher-feedback-error {
    background: rgba(163, 60, 60, 0.12);
    color: var(--error);
}

.policy-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.policy-consent input {
    width: auto;
    margin-top: 0.25rem;
}

.policy-consent span {
    display: block;
    line-height: 1.7;
}

.summary-list,
.footer-grid ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--line);
}

.summary-list li:last-child {
    border-bottom: 0;
}

.summary-total {
    font-size: 1.12rem;
}

.summary-savings strong {
    color: var(--success);
}

.flash {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    font-weight: 700;
}

.flash-success {
    background: rgba(45, 106, 79, 0.14);
    color: var(--success);
}

.flash-error,
.inline-error {
    background: rgba(163, 60, 60, 0.12);
    color: var(--error);
    padding: 0.95rem 1rem;
    border-radius: 16px;
}

.payment-page {
    background:
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.18), transparent 24%),
        radial-gradient(circle at left 18%, rgba(19, 41, 61, 0.08), transparent 20%),
        linear-gradient(180deg, #fcf7f1 0%, #f6ede4 44%, #efe1d2 100%);
}

.payment-hero {
    padding-top: 2rem;
    padding-bottom: 2.2rem;
}

.payment-hero-grid,
.payment-grid {
    align-items: start;
}

.payment-hero-copy {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.payment-hero-copy h1 {
    max-width: 10ch;
    margin-bottom: 0;
    text-wrap: balance;
}

.payment-hero-copy p {
    max-width: 58ch;
    margin-bottom: 0;
    font-size: 1.02rem;
}

.payment-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.payment-hero-stat,
.payment-snapshot-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 239, 0.92)),
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.1), transparent 46%);
    border: 1px solid rgba(19, 41, 61, 0.08);
    box-shadow: 0 22px 44px rgba(19, 41, 61, 0.1);
}

.payment-hero-stat {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
}

.payment-hero-stat span,
.payment-snapshot-list span {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.payment-hero-stat strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.18rem, 2vw, 1.65rem);
    line-height: 1.08;
}

.payment-snapshot-card {
    padding: 1.45rem;
}

.payment-snapshot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.95rem;
}

.payment-snapshot-list li {
    display: grid;
    gap: 0.25rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid var(--line);
}

.payment-snapshot-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.payment-snapshot-list strong {
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.4;
}

.payment-code {
    word-break: break-word;
}

.payment-panel {
    padding: 1.7rem;
}

.payment-summary-list li {
    align-items: flex-start;
    padding: 0.9rem 0;
}

.payment-summary-list li span:first-child {
    color: var(--muted);
}

.payment-summary-list .summary-total strong {
    color: var(--navy);
}

.payment-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-panel-head .eyebrow {
    margin-bottom: 0.45rem;
}

.payment-form,
.payment-support {
    display: grid;
    gap: 1rem;
}

.payment-lead {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 1.04rem;
}

.payment-method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.payment-method-tags .tag {
    background: rgba(183, 103, 69, 0.12);
    color: var(--accent-dark);
}

.payment-submit {
    width: fit-content;
    min-width: 15rem;
}

.payment-helper {
    max-width: 48ch;
    margin-bottom: 0;
}

.payment-helper a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: rgba(19, 41, 61, 0.28);
    text-underline-offset: 0.18em;
}

.payment-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.payment-status-pill.is-pending {
    background: rgba(183, 103, 69, 0.14);
    color: var(--accent-dark);
}

.payment-status-pill.is-paid {
    background: rgba(45, 106, 79, 0.14);
    color: var(--success);
}

.payment-status-pill.is-expired,
.payment-status-pill.is-refunded {
    background: rgba(163, 60, 60, 0.12);
    color: var(--error);
}

.booking-headline {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.danger-panel {
    border-color: rgba(163, 60, 60, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 249, 249, 0.96), rgba(255, 242, 242, 0.96)),
        radial-gradient(circle at top right, rgba(163, 60, 60, 0.08), transparent 42%);
}

.danger-copy {
    max-width: 62ch;
}

.danger-form {
    display: grid;
    gap: 1rem;
}

.reset-option {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(163, 60, 60, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.reset-option input {
    width: auto;
    margin-top: 0.25rem;
}

.reset-option span {
    display: grid;
    gap: 0.2rem;
}

.danger-button {
    justify-self: start;
    background: linear-gradient(135deg, #b54949, #913737);
    box-shadow: 0 14px 30px rgba(145, 55, 55, 0.22);
}

.security-panel {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-report-panel {
    margin-bottom: 1.5rem;
}

.admin-booking-tools {
    margin-bottom: 0.65rem;
}

.two-factor-setup {
    display: grid;
    gap: 1rem;
}

.two-factor-qr-wrap {
    display: grid;
    justify-items: start;
    gap: 0.75rem;
}

.two-factor-qr {
    display: grid;
    place-items: center;
    width: 244px;
    min-height: 244px;
    padding: 0.75rem;
    border-radius: 24px;
    background: #fffdf8;
    border: 1px solid rgba(16, 36, 61, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.two-factor-qr img,
.two-factor-qr canvas {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.two-factor-setup .button-row {
    align-items: end;
}

.two-factor-setup .button-row form {
    display: grid;
    gap: 0.75rem;
    min-width: min(100%, 320px);
}

.admin-verifier-panel {
    margin-bottom: 1.5rem;
}

.verification-toolbox,
.verification-result-shell,
.verification-result-card,
.verification-summary-card {
    display: grid;
    gap: 1rem;
}

.verification-video-shell {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(19, 41, 61, 0.14), rgba(19, 41, 61, 0.04)),
        #fffaf4;
    border: 1px solid rgba(16, 36, 61, 0.08);
}

.verification-video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    background: #13293d;
}

.verification-video[hidden] {
    display: none;
}

.verification-video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.55rem;
    padding: 1.4rem;
    text-align: center;
    color: var(--muted);
}

.verification-video-placeholder[hidden] {
    display: none;
}

.verification-result-shell {
    align-content: start;
}

.verification-result-card {
    padding: 1.25rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(255, 247, 240, 0.94)),
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.1), transparent 44%);
    border: 1px solid rgba(16, 36, 61, 0.08);
}

.verification-result-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.verification-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.45rem 0.82rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.verification-status-pill.is-success {
    background: rgba(45, 106, 79, 0.14);
    color: var(--success);
}

.verification-status-pill.is-paid {
    background: rgba(31, 111, 74, 0.16);
    color: #1f6f4a;
}

.verification-status-pill.is-completed {
    background: rgba(19, 41, 61, 0.12);
    color: var(--navy);
}

.verification-status-pill.is-pending-payment {
    background: rgba(183, 103, 69, 0.16);
    color: var(--accent-dark);
}

.verification-status-pill.is-refunded {
    background: rgba(83, 92, 104, 0.14);
    color: #4c5663;
}

.verification-status-pill.is-cancelled {
    background: rgba(163, 60, 60, 0.14);
    color: var(--error);
}

.verification-status-pill.is-warning {
    background: rgba(183, 103, 69, 0.14);
    color: var(--accent-dark);
}

.verification-status-pill.is-error {
    background: rgba(163, 60, 60, 0.12);
    color: var(--error);
}

.two-factor-setup input[readonly],
.two-factor-setup textarea[readonly] {
    background: #fffaf4;
}

.report-body {
    background:
        linear-gradient(180deg, rgba(248, 242, 233, 0.96), rgba(244, 236, 226, 0.96)),
        radial-gradient(circle at top left, rgba(94, 141, 172, 0.1), transparent 30%);
    color: var(--ink);
}

.report-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 2rem auto 3rem;
    display: grid;
    gap: 1.5rem;
}

.report-toolbar,
.report-card,
.report-header,
.report-brand,
.report-period,
.report-stat-grid,
.report-section,
.report-footer {
    display: grid;
}

.report-toolbar,
.report-header,
.report-period {
    gap: 1rem;
}

.report-toolbar,
.report-period {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.report-card {
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 32px;
    background: rgba(255, 252, 248, 0.95);
    border: 1px solid rgba(16, 36, 61, 0.08);
    box-shadow: 0 28px 60px rgba(16, 36, 61, 0.12);
}

.report-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(16, 36, 61, 0.08);
}

.report-brand {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.report-brand img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.report-brand h1 {
    margin-bottom: 0.25rem;
}

.report-brand p,
.report-toolbar p,
.report-meta span,
.report-footer p {
    margin-bottom: 0;
}

.report-meta {
    display: grid;
    justify-items: end;
    gap: 0.25rem;
    text-align: right;
}

.report-filter {
    display: grid;
    gap: 1rem;
}

.report-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.report-stat-card {
    display: grid;
    gap: 0.25rem;
    padding: 1.2rem 1.25rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(249, 239, 228, 0.98)),
        radial-gradient(circle at top right, rgba(181, 92, 67, 0.08), transparent 42%);
    border: 1px solid rgba(16, 36, 61, 0.08);
}

.report-stat-card strong {
    font-size: clamp(1.55rem, 2vw, 2.3rem);
    line-height: 1;
}

.report-stat-card span {
    color: var(--muted);
    font-weight: 700;
}

.report-section {
    gap: 0.85rem;
}

.report-table-wrap {
    overflow-x: auto;
}

.report-table {
    width: 100%;
}

.report-table-bookings {
    min-width: 940px;
}

.report-table-payments {
    min-width: 1080px;
}

.report-col-reference {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.report-col-stay,
.report-col-status {
    min-width: 11rem;
}

.report-col-amount,
.report-paid-at {
    white-space: nowrap;
}

.report-paid-at {
    min-width: 11.5rem;
}

.report-footer {
    gap: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 36, 61, 0.08);
}

.receipt-body {
    background:
        linear-gradient(180deg, rgba(248, 242, 233, 0.96), rgba(244, 236, 226, 0.96)),
        radial-gradient(circle at top left, rgba(94, 141, 172, 0.1), transparent 30%);
    color: var(--ink);
}

.receipt-shell {
    width: min(1020px, calc(100% - 2rem));
    margin: 2rem auto 3rem;
    display: grid;
    gap: 1.5rem;
}

.receipt-toolbar,
.receipt-card,
.receipt-header,
.receipt-brand,
.receipt-top-grid,
.receipt-section,
.receipt-footer {
    display: grid;
}

.receipt-toolbar,
.receipt-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.receipt-card {
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 32px;
    background: rgba(255, 252, 248, 0.95);
    border: 1px solid rgba(16, 36, 61, 0.08);
    box-shadow: 0 28px 60px rgba(16, 36, 61, 0.12);
}

.receipt-header {
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(16, 36, 61, 0.08);
}

.receipt-brand {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.receipt-brand img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.receipt-brand h1 {
    margin-bottom: 0.25rem;
}

.receipt-brand p,
.receipt-toolbar p,
.receipt-footer p {
    margin-bottom: 0;
}

.receipt-meta {
    display: grid;
    justify-items: end;
    gap: 0.35rem;
    text-align: right;
}

.receipt-top-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.receipt-summary-card {
    gap: 1rem;
}

.receipt-verification-meta {
    display: grid;
    justify-items: end;
    gap: 0.45rem;
    margin-top: 0.45rem;
}

.receipt-qr-code {
    display: grid;
    place-items: center;
    width: 132px;
    min-height: 132px;
    padding: 0;
}

.receipt-qr-code img,
.receipt-qr-code canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.receipt-verify-code {
    color: var(--navy);
    font-family: "Courier New", Consolas, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.receipt-table-wrap {
    overflow-x: auto;
}

.receipt-table {
    width: 100%;
    min-width: 760px;
}

.receipt-col-reference {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.receipt-col-amount {
    white-space: nowrap;
}

.receipt-total-row td {
    font-weight: 700;
}

.receipt-footer {
    gap: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 36, 61, 0.08);
}

body.receipt-paper-a6 .receipt-shell {
    width: min(540px, calc(100% - 0.75rem));
}

body.receipt-paper-a6 .receipt-card {
    padding: 1rem;
    border-radius: 18px;
}

body.receipt-paper-a6 .receipt-header,
body.receipt-paper-a6 .receipt-toolbar {
    grid-template-columns: 1fr;
    align-items: start;
}

body.receipt-paper-a6 .receipt-meta {
    justify-items: start;
    text-align: left;
}

body.receipt-paper-a6 .receipt-brand {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.75rem;
}

body.receipt-paper-a6 .receipt-brand img {
    width: 56px;
    height: 56px;
}

body.receipt-paper-a6 .receipt-brand h1 {
    font-size: 1.65rem;
}

body.receipt-paper-a6 .receipt-top-grid {
    grid-template-columns: 1fr;
}

body.receipt-paper-a6 .receipt-table-wrap,
body.receipt-paper-a6 .admin-table {
    overflow: visible;
}

body.receipt-paper-a6 .receipt-table {
    min-width: 0;
    table-layout: fixed;
}

body.receipt-paper-a6 .receipt-table th,
body.receipt-paper-a6 .receipt-table td {
    padding: 0.32rem 0.22rem;
    font-size: 0.62rem;
    line-height: 1.2;
}

body.receipt-paper-a6 .receipt-table th {
    font-size: 0.56rem;
    letter-spacing: 0.04em;
}

body.receipt-paper-a6 .summary-list li {
    padding: 0.5rem 0;
}

body.receipt-paper-a6 .summary-list li span,
body.receipt-paper-a6 .summary-list li strong {
    font-size: 0.74rem;
}

body.receipt-paper-a6 .receipt-col-amount {
    white-space: normal;
}

body.receipt-paper-a6 .receipt-section .section-heading h2,
body.receipt-paper-a6 .receipt-summary-card h2 {
    font-size: 1.2rem;
}

body.receipt-print-mode {
    background: #ffffff;
}

body.receipt-print-mode .no-print {
    display: none !important;
}

body.receipt-print-mode .receipt-shell {
    width: 100%;
    margin: 0;
}

body.receipt-print-mode .receipt-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}

body.receipt-print-mode .receipt-table-wrap,
body.receipt-print-mode .admin-table {
    overflow: visible;
}

body.receipt-print-mode .receipt-table {
    min-width: 0;
    table-layout: fixed;
}

body.receipt-print-mode .receipt-table th,
body.receipt-print-mode .receipt-table td {
    padding: 0.45rem 0.35rem;
    font-size: 0.76rem;
    line-height: 1.25;
}

body.report-print-mode {
    background: #ffffff;
}

body.report-print-mode .no-print {
    display: none !important;
}

body.report-print-mode .report-shell {
    width: 100%;
    margin: 0;
}

body.report-print-mode .report-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}

body.report-print-mode .report-table-wrap,
body.report-print-mode .admin-table {
    overflow: visible;
}

body.report-print-mode .report-table,
body.report-print-mode .report-table-bookings,
body.report-print-mode .report-table-payments {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
}

body.report-print-mode .report-table th,
body.report-print-mode .report-table td {
    padding: 0.45rem 0.35rem;
    font-size: 0.74rem;
    line-height: 1.25;
}

body.report-print-mode .report-table th {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
}

body.report-print-mode .report-col-stay,
body.report-print-mode .report-col-status,
body.report-print-mode .report-col-amount,
body.report-print-mode .report-paid-at {
    min-width: 0;
    white-space: normal;
}

.booking-headline img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
}

.booking-sidebar-card {
    gap: 1rem;
}

.booking-sidebar-card .eyebrow {
    margin-bottom: 0;
}

.booking-sidebar-copy,
.booking-sidebar-card .text-muted {
    margin-bottom: 0;
}

.booking-sidebar-points {
    display: grid;
    gap: 0.65rem;
}

.booking-sidebar-points li {
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(19, 41, 61, 0.08);
    border-radius: 16px;
    background: rgba(19, 41, 61, 0.05);
    color: var(--navy);
    font-weight: 700;
}

.booking-quick-form {
    display: grid;
    gap: 0.3rem;
}

.page-intro-grid > img,
.map-card iframe {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.booking-history {
    display: grid;
    gap: 1rem;
}

.booking-history-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 1.2rem;
}

.booking-history-card img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.map-card iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 28px;
}

.auth-section {
    min-height: calc(100vh - 220px);
    display: grid;
    place-items: center;
}

.auth-card {
    padding: 2rem;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
    padding: 2rem 0 3rem;
}

.footer-grid > div {
    min-width: 0;
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.58);
    border: 1px solid rgba(19, 41, 61, 0.06);
}

.footer-grid h3,
.footer-grid h4,
.footer-grid p,
.footer-grid li {
    overflow-wrap: anywhere;
}

.footer-grid li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid rgba(16, 36, 61, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 251, 247, 0.88), rgba(248, 239, 229, 0.88)),
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.08), transparent 25%);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 min(15rem, 22vw) 2.2rem 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-bottom-links a {
    white-space: nowrap;
}

.floating-chat {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 15;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    background: var(--navy);
    color: #fff7ee;
    box-shadow: 0 18px 34px rgba(16, 36, 61, 0.24);
}

.admin-body {
    background: linear-gradient(180deg, #eff2f5 0%, #f7f3ee 100%);
}

.admin-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 1.5rem;
    background: linear-gradient(180deg, #10243d 0%, #1d415f 100%);
    color: #f7f1e8;
}

.admin-brand img {
    width: auto;
    max-width: 100%;
    max-height: 86px;
    object-fit: contain;
}

.admin-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar nav {
    display: grid;
    gap: 0.6rem;
    margin-top: 2rem;
}

.admin-sidebar a {
    padding: 0.82rem 1rem;
    border-radius: 16px;
    color: rgba(247, 241, 232, 0.8);
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-content {
    padding: 1.6rem;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.stats-admin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.admin-two-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 1.5rem;
}

.admin-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

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

th {
    color: var(--muted);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.inline-form {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.stack-list,
.timeline {
    display: grid;
    gap: 1rem;
}

.stack-item,
.timeline-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-strong);
}

.room-admin-item img {
    width: 110px;
    border-radius: 14px;
    object-fit: cover;
}

.inquiry-item,
.stack-form {
    align-items: stretch;
}

.stack-form {
    min-width: 280px;
}

.timeline-item {
    flex-direction: column;
    align-items: flex-start;
}

.availability-list {
    display: grid;
    gap: 0.7rem;
}

.availability-item {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #fff6ee;
    border: 1px solid rgba(181, 92, 67, 0.14);
}

.availability-calendar-panel .availability-list {
    gap: 1rem;
}

.booking-range-picker {
    margin-bottom: 1rem;
    overflow: hidden;
    padding: 1.8rem;
}

.booking-range-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 1.25rem;
}

.booking-range-header p {
    margin-bottom: 0;
}

.booking-range-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.booking-range-chip {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.booking-range-chip span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.booking-range-chip strong {
    color: var(--navy);
    font-size: 1rem;
}

.booking-range-help {
    margin-bottom: 1.2rem;
}

.booking-range-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
}

.booking-range-shell .calendar-card {
    padding: 1.25rem 1.35rem 1.35rem;
}

.booking-range-shell .calendar-detail {
    min-height: 0;
}

.booking-range-shell .calendar-detail p {
    max-width: 58ch;
}

.admin-calendar-panel {
    margin-bottom: 1.5rem;
}

.admin-calendar-filter {
    min-width: 220px;
    margin-bottom: 0;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.calendar-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: var(--line);
}

.calendar-dot-available {
    background: #5f9f43;
}

.calendar-dot-unavailable {
    background: #ca4848;
}

.calendar-dot-past {
    background: #d8d1c8;
}

.calendar-dot-checkout-only {
    background: #a7bf7e;
}

.calendar-dot-no-stay {
    background: #bcc4b6;
}

.calendar-shell,
.admin-calendar-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.82fr);
    gap: 1rem;
    align-items: start;
}

.calendar-card,
.calendar-detail {
    background: var(--surface-strong);
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: 24px;
}

.calendar-card {
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 242, 0.96)),
        radial-gradient(circle at top right, rgba(183, 103, 69, 0.09), transparent 34%);
}

.calendar-head,
.calendar-detail-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.calendar-head {
    margin-bottom: 1rem;
}

.calendar-head strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.calendar-nav-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(16, 36, 61, 0.14);
    border-radius: 999px;
    background: #fffdfa;
    color: var(--navy);
    font-size: 1.3rem;
    line-height: 1;
    box-shadow: none;
}

.calendar-nav-button:hover {
    background: #fff4ea;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.calendar-weekdays {
    margin-bottom: 0.45rem;
}

.calendar-weekdays span {
    padding: 0.35rem 0;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
}

.calendar-day {
    position: relative;
    min-height: 96px;
    padding: 0.82rem 0.68rem 0.62rem;
    border: 0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    color: #fffef9;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    overflow: hidden;
}

.calendar-day:hover {
    transform: translateY(-1px);
}

.calendar-day::after {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -46%;
    height: 74%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 70%);
    opacity: 0.32;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.booking-range-picker .calendar-day.is-unavailable,
.booking-range-picker .calendar-day.is-past {
    cursor: not-allowed;
}

.calendar-day.is-selected {
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.96),
        0 0 0 1px rgba(37, 92, 188, 0.34),
        0 0 0 7px rgba(60, 118, 216, 0.14),
        0 18px 30px rgba(37, 92, 188, 0.22);
}

.calendar-day.is-in-range {
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.84),
        0 0 0 1px rgba(56, 116, 214, 0.3),
        0 10px 22px rgba(56, 116, 214, 0.16);
}

.calendar-day.is-range-start,
.calendar-day.is-range-end {
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, 0.98),
        0 0 0 1px rgba(33, 89, 185, 0.42),
        0 0 0 9px rgba(33, 89, 185, 0.16),
        0 18px 34px rgba(33, 89, 185, 0.28);
}

.calendar-day.is-selected::after,
.calendar-day.is-in-range::after,
.calendar-day.is-range-start::after,
.calendar-day.is-range-end::after {
    opacity: 0.78;
    transform: scale(1.05);
}

.calendar-day.is-in-range .calendar-day-note,
.calendar-day.is-range-start .calendar-day-note,
.calendar-day.is-range-end .calendar-day-note {
    color: #eff5ff;
}

.calendar-day.is-available {
    background: linear-gradient(180deg, #6aaa48 0%, #5a983f 100%);
}

.calendar-day.is-unavailable {
    background: linear-gradient(180deg, #d45757 0%, #c74141 100%);
}

.calendar-day.is-past {
    background: linear-gradient(180deg, #e2dbd1 0%, #cfc5b8 100%);
    color: #75695b;
}

.calendar-day.is-checkout-only {
    background: linear-gradient(180deg, #b7cd8e 0%, #9fba72 100%);
    color: #fffef9;
}

.calendar-day.is-no-stay {
    background: linear-gradient(180deg, #d8ddd2 0%, #bec6b6 100%);
    color: #5f6759;
}

.calendar-day.is-outside {
    opacity: 0.45;
}

.calendar-day-number {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.calendar-day-note {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    opacity: 0.92;
}

@media (min-width: 1100px) {
    .booking-page-shell.booking-layout {
        grid-template-columns: minmax(0, 2.05fr) minmax(280px, 0.62fr);
        gap: 2.2rem;
    }

    .booking-page-shell .form-card {
        padding: 1.8rem;
    }

    .booking-page-shell .booking-range-picker {
        padding: 2rem;
    }

    .booking-page-shell .booking-range-shell .calendar-card {
        padding: 1.4rem 1.5rem 1.5rem;
    }

    .booking-page-shell .booking-range-shell .calendar-head {
        margin-bottom: 1.2rem;
    }

    .booking-page-shell .booking-range-shell .calendar-day {
        min-height: 104px;
    }
}

.calendar-detail {
    display: grid;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    min-height: 100%;
}

.calendar-detail > strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.calendar-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.34rem 0.78rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.calendar-badge-available {
    background: rgba(45, 106, 79, 0.12);
    color: var(--success);
}

.calendar-badge-unavailable {
    background: rgba(163, 60, 60, 0.12);
    color: var(--error);
}

.calendar-detail-item {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: 18px;
    background: #fff8f1;
}

.calendar-detail-item p {
    margin: 0;
}

.calendar-detail-item.is-available {
    background: rgba(45, 106, 79, 0.08);
    border-color: rgba(45, 106, 79, 0.16);
}

.calendar-detail-item.is-unavailable {
    background: rgba(163, 60, 60, 0.07);
    border-color: rgba(163, 60, 60, 0.14);
}

.calendar-detail-item.is-muted {
    background: rgba(16, 36, 61, 0.06);
}

.calendar-detail-meta {
    display: grid;
    gap: 0.2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.text-muted,
small {
    color: var(--muted);
}

.booking-range-help.inline-error {
    color: var(--error);
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-section,
    .booking-layout,
    .room-detail-layout,
    .rooms-layout,
    .content-page-grid,
    .page-intro-grid,
    .admin-two-column,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .feature-grid,
    .faq-grid,
    .stats-admin-grid,
    .promo-spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .report-toolbar,
    .report-header,
    .report-period,
    .report-brand,
    .receipt-toolbar,
    .receipt-header,
    .receipt-brand {
        grid-template-columns: 1fr;
    }

    .report-meta,
    .receipt-meta {
        justify-items: start;
        text-align: left;
    }

    .receipt-verification-meta {
        justify-items: start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
    }

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

    .payment-panel-head {
        flex-direction: column;
    }

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

    .receipt-top-grid {
        grid-template-columns: 1fr;
    }

    .verification-result-top {
        flex-direction: column;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .sticky-card {
        position: static;
    }

    .pricing-panel,
    .booking-estimate-panel {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .calendar-shell,
    .admin-calendar-shell {
        grid-template-columns: 1fr;
    }

    .booking-range-summary {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        padding-bottom: 4.8rem;
    }

    .hero-showcase-surface {
        min-height: clamp(31rem, 92vw, 44rem);
        border-radius: 34px;
    }

    .home-stats-band {
        margin-top: -2.8rem;
    }

    .booking-range-picker {
        padding: 1.45rem;
    }

    .room-detail-main {
        order: 1;
    }

    .booking-sidebar {
        order: 2;
    }

    .room-detail-reviews {
        order: 3;
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .site-essentials-grid {
        grid-template-columns: 1fr;
    }

    .policy-consent {
        padding: 0.9rem 0.95rem;
    }

    .voucher-redeem-row {
        grid-template-columns: 1fr;
    }

    .voucher-redeem-row .button {
        width: 100%;
    }

    .admin-topbar,
    .cta-strip,
    .room-card-top,
    .stack-item,
    .booking-history-card,
    .booking-headline {
        grid-template-columns: 1fr;
        display: grid;
    }

    .nav-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.8rem 0.75rem;
        padding: 0.64rem 0 0.7rem;
    }

    .booking-range-header {
        display: grid;
    }

    .booking-range-picker {
        padding: 1.15rem;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        margin-left: 0;
        padding: 0.74rem 0.9rem;
        gap: 0.58rem;
        border-radius: 22px;
        background: rgba(255, 252, 247, 0.97);
        border-color: rgba(19, 41, 61, 0.1);
        box-shadow: 0 12px 24px rgba(19, 41, 61, 0.08);
    }

    .nav-toggle-box {
        width: 1.1rem;
    }

    .nav-toggle-label {
        font-size: 0.94rem;
        line-height: 1;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 0.55rem;
        width: 100%;
        margin-top: 0.1rem;
        padding: 0.75rem;
        border-radius: 24px;
        background: rgba(255, 253, 249, 0.98);
        border: 1px solid rgba(19, 41, 61, 0.08);
        box-shadow: 0 18px 32px rgba(19, 41, 61, 0.1);
    }

    .site-nav.is-open {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-nav a {
        width: 100%;
        padding: 0.92rem 1rem;
        font-size: 0.96rem;
        line-height: 1.2;
        color: var(--ink);
        background: rgba(19, 41, 61, 0.045);
        border-radius: 18px;
    }

    .site-nav .button {
        margin-left: 0;
        width: 100%;
    }

    .brand {
        justify-content: flex-start;
        width: min(192px, 48vw);
        height: 84px;
    }

    .brand img {
        width: auto;
        max-width: 100%;
        max-height: 84px;
        transform: scale(1.18);
        transform-origin: left center;
    }

    .hero {
        padding: 2.7rem 0 2.1rem;
    }

    .hero-grid {
        gap: 1.4rem;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 13vw, 3rem);
        line-height: 0.98;
    }

    .hero-copy p {
        max-width: none;
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-showcase {
        padding: 1.2rem 0 3.5rem;
    }

    .hero-showcase-surface {
        min-height: clamp(34rem, 132vw, 44rem);
        padding: 0.9rem 0.9rem 1.25rem;
        border-radius: 28px;
        background-image:
            linear-gradient(180deg, rgba(13, 41, 63, 0.08), rgba(13, 41, 63, 0.16)),
            url("../images/hero-aj-mobile.png");
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        background-color: #1d2746;
    }

    .hero-showcase-content {
        gap: 0.7rem;
        padding: clamp(19rem, 78vw, 24rem) 0 0.35rem;
    }

    .hero-image-button {
        min-width: min(14.5rem, 64vw);
        min-height: 3.35rem;
        padding: 0.74rem 1.8rem 0.78rem;
        font-size: 1.08rem;
        box-shadow:
            inset 0 2px 0 rgba(255, 237, 211, 0.5),
            inset 0 -3px 0 rgba(220, 83, 16, 0.36),
            0 9px 0 rgba(228, 90, 18, 0.74),
            0 18px 28px rgba(255, 111, 28, 0.26);
    }

    .hero-showcase-link {
        font-size: 0.76rem;
        letter-spacing: 0.04em;
    }

    .home-stats-band {
        margin-top: -1.6rem;
    }

    .stats-grid {
        margin-top: 1.35rem;
        gap: 0.85rem;
    }

    .stats-grid,
    .feature-grid,
    .faq-grid,
    .form-grid,
    .addon-grid,
    .stats-admin-grid,
    .promo-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .promo-marquee-track,
    .promo-card-top {
        display: grid;
    }

    .report-shell {
        width: min(100% - 1rem, 100%);
        margin: 1rem auto 2rem;
    }

    .receipt-shell {
        width: min(100% - 1rem, 100%);
        margin: 1rem auto 2rem;
    }

    .report-card {
        padding: 1.35rem;
        border-radius: 24px;
    }

    .receipt-card {
        padding: 1.35rem;
        border-radius: 24px;
    }

    .report-stat-grid {
        grid-template-columns: 1fr;
    }

    .report-brand,
    .receipt-brand {
        justify-items: start;
    }

    .stat-card {
        min-height: 0;
        padding: 1rem 1.05rem;
        border-radius: 20px;
    }

    .stat-card strong {
        font-size: 1.55rem;
    }

    .stat-card span {
        max-width: none;
        font-size: 0.98rem;
    }

    .gallery-nav {
        width: 42px;
        height: 42px;
    }

    .calendar-head strong {
        font-size: 1.2rem;
    }

    .calendar-day {
        min-height: 78px;
        padding: 0.48rem 0.38rem;
        border-radius: 14px;
    }

    .calendar-day-number {
        font-size: 0.98rem;
    }

    .calendar-day-note {
        font-size: 0.54rem;
        line-height: 1.02;
    }

    .calendar-grid,
    .calendar-weekdays {
        gap: 0.28rem;
    }

    .floating-chat {
        position: static;
        display: flex;
        width: fit-content;
        margin: 0 auto 1.1rem;
    }

    .section {
        padding: 2.8rem 0;
    }

    h1 {
        font-size: 2.3rem;
    }

    .payment-hero {
        padding-top: 1.4rem;
    }

    .payment-hero-copy h1 {
        max-width: none;
    }

    .payment-hero-metrics {
        grid-template-columns: 1fr;
    }

    .payment-submit {
        width: 100%;
        min-width: 0;
    }

    .payment-summary-list li {
        display: grid;
        gap: 0.3rem;
    }

    .voucher-spotlight-card .button {
        width: 100%;
    }

    .container {
        width: min(calc(100% - 1.5rem), var(--max));
    }
}

@media (max-width: 460px) {
    .site-header {
        backdrop-filter: blur(14px);
    }

    .nav-shell {
        gap: 0.7rem;
        padding: 0.52rem 0 0.6rem;
    }

    .brand {
        width: min(198px, 52vw);
        height: 88px;
    }

    .brand img {
        max-height: 88px;
        transform: scale(1.22);
    }

    .nav-toggle {
        padding: 0.7rem 0.82rem;
        border-radius: 20px;
    }

    .nav-toggle-label {
        font-size: 0.9rem;
    }

    .site-nav {
        padding: 0.68rem;
        border-radius: 22px;
    }

    .hero-showcase-surface {
        min-height: clamp(31rem, 148vw, 39rem);
        padding: 0.78rem 0.78rem 1.05rem;
        border-radius: 24px;
    }

    .hero-showcase-content {
        padding: clamp(18rem, 86vw, 22rem) 0 0.1rem;
    }

    .hero-image-button {
        min-width: min(13rem, 62vw);
        min-height: 3.05rem;
        font-size: 0.98rem;
        letter-spacing: 0.06em;
    }

    .hero-showcase-link {
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .hero-actions {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: 0.4rem 0.7rem;
    }

    .site-nav a {
        font-size: 0.9rem;
    }

    .calendar-head {
        gap: 0.45rem;
    }

    .calendar-nav-button {
        width: 36px;
        height: 36px;
    }

    .calendar-card {
        padding: 0.8rem;
    }

    .calendar-weekdays span {
        font-size: 0.72rem;
    }

    .calendar-day {
        min-height: 68px;
        padding: 0.4rem 0.3rem;
    }

    .calendar-day-number {
        font-size: 0.9rem;
    }

    .calendar-day-note {
        font-size: 0.45rem;
        line-height: 1;
    }

    .room-card-body,
    .panel,
    .feature-card,
    .testimonial-card,
    .info-card,
    .confirmation-card,
    .auth-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
