:root {
    --ink: #17201d;
    --muted: #5f6d68;
    --paper: #fbfaf6;
    --panel: #ffffff;
    --line: #dfe6e1;
    --teal: #1d6f65;
    --teal-dark: #124740;
    --gold: #b8842f;
    --coral: #c85f4f;
    --blue: #386fa4;
    --shadow: 0 18px 55px rgba(23, 32, 29, .12);
}

.theme-midnight {
    --paper: #f7f8f6;
    --teal: #1e5265;
    --teal-dark: #12313d;
    --gold: #c59b55;
    --coral: #9f605c;
}

.theme-champagne {
    --paper: #fbf7ee;
    --teal: #626f4a;
    --teal-dark: #3f4930;
    --gold: #b07d35;
    --coral: #b5634d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(251, 250, 246, .78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 225px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    background: var(--teal);
    border-radius: 8px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small,
.site-footer span,
.room-card p,
.detail-panel p,
.service-card p,
.page-hero p {
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #34433e;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-menu {
    display: contents;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: var(--teal-dark);
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.header-actions form {
    margin: 0;
}

.ghost-action,
.text-action {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(18, 71, 64, .15);
    border-radius: 8px;
    font-weight: 800;
}

.text-action {
    cursor: pointer;
}

.nav-action,
.primary-button,
.search-panel button,
.lookup-card button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #fff;
    background: var(--teal);
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: clamp(40px, 8vw, 92px) clamp(18px, 4vw, 56px);
    background-size: cover;
    background-position: center;
}

.luxury-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    isolation: isolate;
}

.luxury-hero::after {
    position: absolute;
    right: 4vw;
    bottom: 8vh;
    z-index: -1;
    width: min(420px, 42vw);
    height: min(420px, 42vw);
    content: "";
    background: radial-gradient(circle, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 68%);
    filter: blur(2px);
}

.hero-content {
    width: min(1060px, 100%);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 740px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: .9;
    letter-spacing: 0;
}

.hero p {
    max-width: 540px;
    margin: 24px 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.16rem;
    line-height: 1.7;
}

.search-panel,
.filter-bar,
.lookup-card {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 10px;
    width: min(1040px, 100%);
    padding: 12px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.glass-panel {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .42);
    backdrop-filter: blur(24px) saturate(1.2);
}

.glass-panel label {
    color: rgba(255, 255, 255, .82);
}

.glass-panel input,
.glass-panel select {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .32);
}

.glass-panel option {
    color: var(--ink);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-trust span {
    padding: 9px 12px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-weight: 800;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
}

input,
select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-band div {
    padding: 26px clamp(18px, 4vw, 56px);
    background: #fff;
}

.stats-band strong {
    display: block;
    font-size: 2rem;
}

.stats-band span {
    color: var(--muted);
    font-weight: 700;
}

.section,
.page-hero,
.room-detail,
.checkout-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 58px 0;
}

.page-hero.compact {
    padding-bottom: 22px;
}

.page-hero h1 {
    color: var(--ink);
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.section-heading,
.admin-heading,
.panel-heading,
.room-footer,
.booking-summary,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.section-heading h2,
.split-section h2,
.admin-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-heading a,
.panel-heading a,
.booking-ticket a {
    color: var(--teal);
    font-weight: 800;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.room-card,
.service-card,
.metric-card,
.table-panel,
.price-card,
.booking-ticket,
.report-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(23, 32, 29, .07);
}

.room-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(23, 32, 29, .14);
}

.room-card {
    overflow: hidden;
}

.room-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.room-image img,
.price-card img,
.room-board img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-image span,
.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: #e3f1ed;
    font-size: .78rem;
    font-weight: 800;
}

.room-image span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: #fff;
    background: rgba(18, 71, 64, .88);
}

.room-body {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.room-body h3,
.service-card h3,
.detail-panel h1,
.price-card h2 {
    margin: 8px 0;
}

.amenity-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-row span {
    padding: 7px 10px;
    background: #f1eee6;
    border-radius: 999px;
    color: #5e5141;
    font-size: .78rem;
    font-weight: 800;
}

.room-footer strong,
.booking-summary strong {
    font-size: 1.45rem;
}

.room-footer small,
.booking-summary small {
    color: var(--muted);
    font-size: .8rem;
}

.room-footer a {
    padding: 10px 14px;
    color: #fff;
    background: var(--coral);
    border-radius: 8px;
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.editorial-section {
    padding-top: 76px;
}

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

.feature-ribbon article,
.glass-stat,
.auth-card,
.settings-panel,
.manage-overview article,
.homepage-card {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.feature-ribbon article,
.glass-stat {
    padding: 22px;
}

.feature-ribbon strong {
    color: var(--gold);
    font-size: 1.6rem;
}

.feature-ribbon h3,
.feature-ribbon p {
    margin-bottom: 0;
}

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

.service-card {
    padding: 20px;
}

.service-card span {
    color: var(--blue);
    font-weight: 800;
}

.service-card strong {
    display: block;
    margin-top: 12px;
    color: var(--teal);
    font-size: 1.5rem;
}

.filter-bar {
    grid-template-columns: 1fr 1fr 1.8fr auto;
    align-items: end;
    margin-bottom: 22px;
}

.room-detail,
.checkout-shell {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
}

.gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-auto-rows: 260px;
    gap: 12px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery img:first-child {
    grid-row: span 2;
}

.detail-panel,
.checkout-form {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.detail-panel h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.detail-facts span {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.checkout-form {
    display: grid;
    gap: 20px;
}

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

.service-picker {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-picker legend {
    padding: 0 8px;
    font-weight: 800;
}

.service-picker label {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    color: var(--ink);
    font-size: .95rem;
}

.service-picker input {
    width: 18px;
    min-height: 18px;
}

.price-card {
    align-self: start;
    overflow: hidden;
}

.price-card img {
    height: 230px;
}

.price-card h2,
.price-card p,
.price-card dl {
    margin-inline: 20px;
}

.price-card dl {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.price-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.price-card dt {
    color: var(--muted);
}

.price-card dd {
    margin: 0;
    font-weight: 800;
}

.price-card .total {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 1.25rem;
}

.lookup-card {
    grid-template-columns: 1fr;
}

.booking-ticket {
    padding: 24px;
}

.booking-ticket div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    width: min(1400px, calc(100% - 28px));
    margin: 28px auto 60px;
    gap: 20px;
}

.admin-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    padding: 20px;
    background: #102d2b;
    color: #fff;
    border-radius: 8px;
}

.admin-sidebar h1 {
    margin: 0 0 20px;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar a {
    padding: 11px 12px;
    color: rgba(255, 255, 255, .84);
    border-radius: 8px;
    font-weight: 800;
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, .1);
}

.admin-main {
    display: grid;
    gap: 20px;
}

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

.metric-card {
    padding: 18px;
    border-left: 5px solid var(--teal);
}

.metric-card.warn {
    border-left-color: var(--coral);
}

.metric-card.neutral {
    border-left-color: var(--gold);
}

.metric-card span,
.metric-card small {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.metric-card strong {
    display: block;
    margin: 10px 0;
    font-size: 2rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

.table-panel {
    overflow: auto;
    padding: 18px;
}

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

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

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

.room-board {
    display: grid;
    gap: 14px;
}

.room-board article {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.room-board img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

.room-actions {
    display: flex;
    gap: 8px;
}

.room-actions button,
.service-card button {
    min-height: 38px;
    padding: 0 12px;
    color: var(--teal);
    background: #e3f1ed;
    border: 0;
    border-radius: 8px;
    font-weight: 800;
}

.calendar-strip,
.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.calendar-strip article,
.report-card {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.calendar-strip span,
.calendar-strip small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.admin-services {
    grid-template-columns: repeat(4, 1fr);
}

.report-card {
    display: grid;
    gap: 18px;
}

.report-card div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.bar {
    height: 10px;
    overflow: hidden;
    background: #edf0ee;
    border-radius: 999px;
}

.bar span {
    display: block;
    height: 100%;
    background: var(--teal);
}

.flash {
    width: min(1180px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 14px 16px;
    color: var(--teal-dark);
    background: #e3f1ed;
    border: 1px solid #bddfd6;
    border-radius: 8px;
    font-weight: 800;
}

.auth-shell,
.customer-hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 74px 0;
}

.auth-copy,
.customer-hero {
    align-items: center;
}

.auth-copy h1,
.customer-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: .95;
}

.auth-copy p,
.customer-hero p,
.manage-overview p,
.homepage-card p {
    color: var(--muted);
    line-height: 1.7;
}

.auth-card,
.auth-stack {
    display: grid;
    gap: 12px;
}

.auth-image-shell {
    width: 100%;
    min-height: calc(100vh - 84px);
    padding-inline: max(18px, calc((100vw - 1180px) / 2));
    background-position: center;
    background-size: cover;
    align-items: center;
}

.auth-image-shell .auth-copy {
    color: #fff;
}

.auth-image-shell .auth-copy p {
    color: rgba(255, 255, 255, .84);
}

.auth-image-shell .auth-copy h1 {
    max-width: 520px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .92;
}

.auth-image-shell .auth-card {
    width: min(100%, 520px);
    justify-self: end;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .74);
    box-shadow: 0 28px 80px rgba(3, 18, 18, .24);
}

.auth-image-shell .auth-card h2 {
    margin-bottom: 8px;
}

.auth-image-shell .auth-card input {
    min-height: 52px;
}

.auth-image-shell .auth-card .primary-button {
    min-height: 56px;
}

.auth-card {
    padding: 24px;
}

.auth-card label {
    gap: 6px;
}

.auth-card h2,
.settings-panel h3 {
    margin: 0;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.auth-links a,
.manage-overview a {
    color: var(--teal);
    font-weight: 800;
}

.form-error {
    color: #a13d32;
    font-weight: 800;
}

.customer-hero {
    grid-template-columns: 1fr auto;
    padding-bottom: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding-top: 20px;
}

.glass-stat span {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.glass-stat strong {
    display: block;
    margin-top: 10px;
    font-size: 2.2rem;
}

.manage-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    width: min(1480px, calc(100% - 28px));
    margin: 24px auto 70px;
}

.manage-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
    display: grid;
    gap: 18px;
    min-height: calc(100vh - 112px);
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, #0f302d, #1f3c36);
    border-radius: 8px;
}

.manage-brand {
    min-width: 0;
}

.manage-sidebar .brand small {
    color: rgba(255, 255, 255, .7);
}

.manage-sidebar nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.manage-sidebar nav a {
    padding: 12px;
    color: rgba(255, 255, 255, .84);
    border-radius: 8px;
    font-weight: 800;
}

.manage-sidebar nav a:hover {
    background: rgba(255, 255, 255, .12);
}

.manage-main {
    display: grid;
    gap: 20px;
}

.manage-overview,
.homepage-editor,
.settings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.manage-overview article,
.settings-panel {
    padding: 20px;
}

.homepage-card {
    overflow: hidden;
}

.homepage-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.homepage-card div {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.homepage-card button {
    min-height: 38px;
    padding: 0 12px;
    color: #fff;
    background: var(--teal);
    border: 0;
    border-radius: 8px;
    font-weight: 800;
}

.settings-panel {
    display: grid;
    align-content: start;
    gap: 14px;
}

.settings-panel.full {
    grid-column: 1 / -1;
}

.settings-panel .full-field {
    grid-column: 1 / -1;
}

.toggle-row {
    grid-template-columns: auto 1fr;
    align-items: center;
    color: var(--ink);
    font-size: .95rem;
}

.toggle-row input {
    width: 18px;
    min-height: 18px;
}

.site-footer {
    padding: 28px clamp(18px, 4vw, 56px);
    background: #102d2b;
    color: #fff;
}

.site-footer div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.site-footer span {
    color: rgba(255, 255, 255, .76);
}

[hidden] {
    display: none !important;
}

body {
    background:
        radial-gradient(circle at 14% 12%, rgba(184, 132, 47, .08), transparent 26rem),
        linear-gradient(180deg, #fffdf8 0%, var(--paper) 58%, #fff 100%);
}

.site-header {
    background: rgba(255, 254, 250, .9);
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(184, 132, 47, .85), transparent);
}

.brand-mark {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.brand strong,
.hero h1,
.page-hero h1,
.rooms-intro h2,
.contact-hero h1,
.contact-card h2,
.contact-form h2,
.luxury-room-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
}

.brand strong {
    font-size: 1.3rem;
    letter-spacing: .02em;
}

.room-search-hero {
    position: relative;
    width: 100%;
    min-height: 390px;
    display: flex;
    align-items: end;
    padding: 80px max(18px, calc((100vw - 1180px) / 2)) 64px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17, 37, 35, .88), rgba(17, 37, 35, .28)),
        url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.room-search-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .35));
}

.room-search-hero > div {
    position: relative;
    z-index: 1;
}

.room-search-hero h1,
.room-search-hero p {
    color: #fff;
}

.rooms-luxury-section {
    padding-top: 42px;
}

.rooms-intro {
    width: min(860px, 100%);
    margin: 0 auto 28px;
    text-align: center;
}

.rooms-intro h2 {
    margin: 0;
    color: #9f7433;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.rooms-intro p {
    color: var(--muted);
    line-height: 1.8;
}

.filter-bar {
    margin-inline: auto;
}

.luxury-room-card {
    border-color: rgba(184, 132, 47, .18);
}

.luxury-room-card .room-image {
    aspect-ratio: 10 / 12;
}

.luxury-room-card .room-image::after {
    position: absolute;
    inset: 40% 0 0;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(9, 18, 28, .58));
}

.luxury-room-card h3 {
    color: #201812;
    font-size: 2rem;
}

textarea {
    width: 100%;
    min-height: 112px;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    resize: vertical;
    font: inherit;
}

.payment-brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge,
.footer-pay {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0;
}

.cash-icon {
    color: #163e35 !important;
    background: #dff3e9;
}

.stripe-icon {
    color: #fff !important;
    background: linear-gradient(135deg, #635bff, #8f6cff);
}

.paypal-icon {
    color: #003087 !important;
    background: #e8f3ff;
}

.paypal-icon b {
    color: #009cde;
}

.form-note {
    margin: -8px 0 4px;
    color: var(--muted);
}

.luxury-form,
.luxury-price-card,
.contact-form,
.contact-card {
    border-color: rgba(184, 132, 47, .24);
    box-shadow: 0 24px 70px rgba(23, 32, 29, .1);
}

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

.manage-room-form article {
    grid-template-columns: 220px 1fr;
}

.room-edit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.room-edit-grid .wide {
    grid-column: 1 / -1;
}

.contact-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 80px clamp(18px, 8vw, 150px);
    color: #fff;
    background-position: center;
    background-size: cover;
}

.contact-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .9;
}

.contact-hero p {
    max-width: 560px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.12rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 22px;
}

.contact-card,
.contact-form {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 26px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--line);
    border-radius: 8px;
    backdrop-filter: blur(18px);
}

.contact-card h2,
.contact-form h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 90px clamp(18px, 8vw, 150px);
    color: #fff;
    background-position: center;
    background-size: cover;
}

.about-hero h1 {
    max-width: 780px;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 600;
    line-height: .9;
}

.about-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.12rem;
    line-height: 1.8;
}

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

.about-grid article {
    padding: 28px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(184, 132, 47, .22);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(23, 32, 29, .08);
}

.about-grid h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
}

.about-grid p {
    color: var(--muted);
    line-height: 1.8;
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 8px;
}

.season-strip {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    padding: 12px 16px;
    color: #fff;
    background: rgba(184, 132, 47, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    backdrop-filter: blur(16px);
}

.season-strip strong {
    color: #f4d59c;
}

.customer-luxe-hero,
.booking-portal-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 72px 0 28px;
}

.customer-luxe-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

.customer-luxe-hero h1,
.booking-portal-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.4rem, 7vw, 7rem);
    font-weight: 600;
    line-height: .88;
}

.customer-luxe-hero p,
.booking-portal-hero p {
    color: var(--muted);
    font-size: 1.05rem;
}

.luxe-stats {
    padding-top: 20px;
}

.customer-panels,
.management-inbox {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 18px;
}

.customer-panel {
    min-width: 0;
    padding: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(184, 132, 47, .22);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 32, 29, .09);
    backdrop-filter: blur(18px);
}

.booking-card-list,
.payment-timeline,
.notification-list,
.message-list {
    display: grid;
    gap: 12px;
}

.mini-booking-card,
.payment-timeline article,
.notification-list article,
.message-list article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.mini-booking-card h4 {
    margin: 8px 0 4px;
    font-size: 1.1rem;
}

.mini-booking-card p,
.payment-timeline p,
.notification-list p,
.message-list p {
    margin: 0;
    color: var(--muted);
}

.mini-booking-card a,
.ticket-actions a,
.message-list a {
    color: var(--teal);
    font-weight: 900;
}

.payment-timeline article {
    grid-template-columns: auto 1fr auto;
}

.payment-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(184, 132, 47, .12);
}

.booking-portal-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: start;
}

.booking-lookup-card {
    grid-template-columns: 1fr;
    padding: 22px;
}

.premium-ticket {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 30px;
    border-color: rgba(184, 132, 47, .28);
}

.premium-ticket::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    content: "";
    background: radial-gradient(circle, rgba(184, 132, 47, .16), transparent 68%);
}

.ticket-topline,
.ticket-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.premium-ticket h2 {
    margin: 18px 0 10px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: .92;
}

.empty-ticket {
    background: linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(247, 241, 229, .88));
}

.notification-list article {
    grid-template-columns: auto 1fr auto;
}

.notification-list article > span {
    padding: 7px 10px;
    color: var(--teal-dark);
    background: #e3f1ed;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.message-list article {
    align-items: start;
}

.message-list span {
    color: var(--gold);
    font-size: .86rem;
    font-weight: 900;
}

@media (max-width: 980px) {
    .section-heading,
    .admin-heading,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .mobile-menu-button {
        display: block;
    }

    .site-menu {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding-top: 10px;
    }

    .site-menu.is-open {
        display: grid;
        gap: 12px;
    }

    .main-nav,
    .header-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .main-nav a,
    .header-actions a,
    .header-actions button {
        width: 100%;
        min-height: 42px;
        justify-content: center;
    }

    .auth-image-shell {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 48px 18px;
    }

    .auth-image-shell .auth-card {
        justify-self: stretch;
        width: 100%;
    }

    .auth-image-shell .auth-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4.6rem);
    }

    .header-actions,
    .search-panel,
    .filter-bar,
    .room-grid,
    .split-section,
    .room-detail,
    .checkout-shell,
    .admin-shell,
    .auth-shell,
    .customer-hero,
    .metric-grid,
    .admin-grid,
    .calendar-strip,
    .report-grid,
    .admin-services,
    .feature-ribbon,
    .dashboard-grid,
    .manage-shell,
    .manage-overview,
    .homepage-editor,
    .settings-grid {
        grid-template-columns: 1fr;
    }

    .room-edit-grid,
    .contact-grid,
    .about-grid,
    .customer-luxe-hero,
    .customer-panels,
    .management-inbox,
    .booking-portal-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .manage-sidebar {
        position: static;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding-top: 52px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .site-header {
        padding: 12px 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark,
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 1.08rem;
    }

    .brand small {
        font-size: .78rem;
    }

    .auth-image-shell {
        padding: 34px 14px;
    }

    .auth-image-shell .auth-card {
        padding: 18px;
    }

    .auth-image-shell .auth-card input,
    .auth-image-shell .auth-card .primary-button {
        min-height: 48px;
    }

    .auth-links {
        flex-direction: column;
    }

    .form-grid,
    .gallery,
    .detail-facts,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery img:first-child {
        grid-row: auto;
    }

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

    .room-actions {
        flex-wrap: wrap;
    }
}

body.manage-app-body,
body.manage-login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 78% 8%, rgba(184, 132, 47, .12), transparent 24rem),
        linear-gradient(135deg, #f7f4ec 0%, #eef3f0 48%, #fffdf8 100%);
}

.manage-app {
    display: grid;
    grid-template-columns: 292px 1fr;
    min-height: 100vh;
}

.manage-app .manage-sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 100vh;
    min-height: 100vh;
    margin: 0;
    overflow-y: auto;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(10, 42, 38, .96), rgba(17, 57, 50, .98)),
        radial-gradient(circle at 20% 0, rgba(184, 132, 47, .3), transparent 18rem);
    box-shadow: 18px 0 60px rgba(7, 22, 20, .18);
}

.manager-card {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
}

.manager-card span,
.manager-card small {
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
    font-weight: 800;
}

.manager-card strong {
    color: #fff;
}

.manage-workspace {
    min-width: 0;
}

.manage-topbar {
    position: sticky;
    top: 0;
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
    padding: 12px clamp(16px, 3vw, 34px);
    background: rgba(255, 254, 250, .88);
    border-bottom: 1px solid rgba(184, 132, 47, .22);
    backdrop-filter: blur(18px);
}

.manage-topbar div {
    display: grid;
    margin-right: auto;
}

.manage-topbar small {
    color: var(--muted);
}

.manage-topbar form {
    margin: 0;
}

.manage-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.manage-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--teal-dark);
    border-radius: 999px;
}

.manage-app .manage-main {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 56px;
}

.manage-main > .flash {
    width: 100%;
    margin: 0 0 18px;
}

.manage-login-shell {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(24px, 5vw, 74px);
    align-items: center;
    width: min(1240px, calc(100% - 36px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 44px 0;
}

.manage-login-copy {
    display: grid;
    gap: 22px;
}

.manage-login-copy h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 600;
    line-height: .9;
}

.manage-login-copy p {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.manage-login-card {
    display: grid;
    gap: 18px;
    padding: clamp(20px, 3vw, 32px);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(23, 32, 29, .14);
    backdrop-filter: blur(20px);
}

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

.manage-login-card h2 {
    margin: 0;
    font-size: 2rem;
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.credential-grid article {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.credential-grid span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.credential-grid code {
    padding: 7px 9px;
    color: var(--teal-dark);
    background: #e3f1ed;
    border-radius: 6px;
    font-weight: 900;
}

.credential-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.55;
}

.compact-flash {
    width: 100%;
    margin: 0;
}

.about-story {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.about-story-media {
    position: relative;
    min-height: 560px;
}

.about-story-media img {
    position: absolute;
    width: 72%;
    height: 380px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(23, 32, 29, .16);
}

.about-story-media img:first-child {
    top: 0;
    left: 0;
}

.about-story-media img:last-child {
    right: 0;
    bottom: 0;
}

.about-story-card,
.about-value-card {
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(184, 132, 47, .22);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 32, 29, .09);
}

.about-story-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 600;
    line-height: .95;
}

.about-story-card p,
.about-value-card p {
    color: var(--muted);
    line-height: 1.8;
}

.about-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.about-stat-row span {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #f7f1e7;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
}

.about-stat-row strong {
    color: var(--teal-dark);
    font-size: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 10px;
}

.about-value-card > span {
    color: var(--gold);
    font-weight: 900;
}

.about-value-card h3 {
    margin: 12px 0;
    font-size: 1.45rem;
}

.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .site-menu.is-open .header-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-menu.is-open .header-actions a,
    .site-menu.is-open .header-actions button {
        padding: 0 10px;
        white-space: nowrap;
    }

    .manage-app {
        grid-template-columns: 1fr;
    }

    .manage-app .manage-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(310px, 86vw);
        transform: translateX(-105%);
        transition: transform .24s ease;
    }

    .manage-app .manage-sidebar.is-open {
        transform: translateX(0);
    }

    .manage-menu-button {
        display: block;
    }

    .manage-login-shell,
    .about-story,
    .about-values,
    .credential-grid {
        grid-template-columns: 1fr;
    }

    .about-story-media {
        min-height: 440px;
    }
}

@media (max-width: 640px) {
    .site-menu.is-open .header-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-menu.is-open .nav-action {
        grid-column: 1 / -1;
    }

    .manage-topbar {
        padding-inline: 12px;
    }

    .manage-topbar .ghost-action {
        min-height: 38px;
        padding-inline: 10px;
    }

    .manage-login-shell {
        width: min(100% - 24px, 1240px);
        padding: 24px 0;
    }

    .manage-login-card {
        padding: 16px;
    }

    .about-story-media {
        min-height: auto;
    }

    .about-story-media img {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }

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

.management-hero-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 58, 52, .96), rgba(32, 92, 81, .86)),
        radial-gradient(circle at 82% 12%, rgba(184, 132, 47, .34), transparent 18rem);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(18, 48, 43, .2);
}

.management-hero-panel::after {
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    content: "";
    background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 68%);
}

.management-hero-panel h2,
.management-hero-panel p,
.management-hero-panel .eyebrow {
    position: relative;
    z-index: 1;
}

.management-hero-panel h2 {
    color: #fff;
}

.management-hero-panel p {
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.management-hero-panel .primary-button {
    position: relative;
    z-index: 1;
    color: var(--teal-dark);
    background: #fff;
}

.manage-command-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.manage-command-grid a {
    display: grid;
    gap: 9px;
    min-height: 170px;
    padding: 20px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .72)),
        radial-gradient(circle at 100% 0, rgba(184, 132, 47, .18), transparent 10rem);
    border: 1px solid rgba(184, 132, 47, .2);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(23, 32, 29, .08);
}

.manage-command-grid span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.manage-command-grid strong {
    font-size: 1.35rem;
}

.manage-command-grid small {
    color: var(--muted);
    line-height: 1.55;
}

.homepage-builder,
.employee-workbench {
    display: grid;
    grid-template-columns: .9fr 1.1fr 1.1fr;
    gap: 16px;
}

.homepage-builder {
    align-items: stretch;
}

.homepage-builder .settings-panel,
.employee-workbench .settings-panel,
.employee-table-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .76));
    border-color: rgba(184, 132, 47, .22);
}

.homepage-live-preview img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

.homepage-live-preview p {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.homepage-builder-form textarea {
    min-height: 96px;
}

.employee-workbench {
    grid-template-columns: 360px 1fr;
    align-items: start;
}

.employee-form {
    position: sticky;
    top: 92px;
}

.employee-table-panel {
    min-width: 0;
}

.employee-table-panel table {
    min-width: 1080px;
}

.role-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 14px;
    border: 1px solid #e4eeee;
    border-radius: 12px;
}

.role-picker legend {
    padding: 0 8px;
    color: #1d2930;
    font-weight: 900;
}

.role-picker .toggle-row {
    min-height: 38px;
    padding: 8px 10px;
    background: #f8fbfb;
    border: 1px solid #e8eeee;
    border-radius: 10px;
}

.role-picker input,
.permission-row input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
}

.role-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.role-badge-list span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    color: #075b56;
    background: #e8f4f3;
    border: 1px solid #d6e9e7;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
}

.activity-form {
    display: grid;
    grid-template-columns: 130px minmax(150px, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.activity-form select,
.activity-form input {
    min-height: 38px;
}

.activity-form button {
    min-height: 38px;
    padding: 0 12px;
    color: #087f78;
    background: #dff2f0;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
}

.manage-app .metric-card,
.manage-overview article,
.management-inbox .customer-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78));
    border-color: rgba(184, 132, 47, .18);
}

.manage-app .metric-card {
    min-height: 132px;
}

.manage-app .manage-sidebar nav a {
    position: relative;
}

.manage-app .manage-sidebar nav a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 0;
    content: "";
    background: var(--gold);
    border-radius: 999px;
    transform: translateY(-50%);
    transition: height .2s ease;
}

.manage-app .manage-sidebar nav a:hover::before {
    height: 24px;
}

@media (max-width: 1180px) {
    .manage-command-grid,
    .homepage-builder {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage-live-preview {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .manage-command-grid,
    .homepage-builder,
    .employee-workbench {
        grid-template-columns: 1fr;
    }

    .employee-form {
        position: static;
    }
}

.manage-app {
    grid-template-columns: 250px 1fr;
    background: #f5f7f7;
}

.manage-app .manage-sidebar {
    background: #fff;
    color: #5f6b75;
    border-right: 1px solid #e7eeee;
    box-shadow: none;
}

.manage-app .manage-brand {
    margin-bottom: 14px;
}

.manage-app .manage-sidebar .brand strong {
    color: #0b726c;
    font-family: Inter, system-ui, sans-serif;
    font-weight: 900;
}

.manage-app .manage-sidebar .brand small,
.manage-app .manage-sidebar nav a,
.manager-card span,
.manager-card small {
    color: #66737d;
}

.manage-app .manage-sidebar nav {
    gap: 4px;
}

.manage-app .manage-sidebar nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
}

.manage-app .manage-sidebar nav a:hover {
    color: #087f78;
    background: #e8f4f3;
}

.manager-card {
    background: #f3f8f7;
    border-color: #dcebea;
}

.manager-card strong {
    color: #1d2930;
}

.manage-topbar {
    min-height: 86px;
    background: rgba(245, 247, 247, .9);
    border-bottom: 0;
}

.manage-topbar::before {
    display: flex;
    align-items: center;
    width: min(34vw, 330px);
    min-height: 44px;
    padding: 0 18px;
    content: "Search routes";
    color: #65727b;
    background: #fff;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px #e2ebea;
}

.manage-topbar::after {
    width: 44px;
    height: 44px;
    content: "+";
    display: grid;
    place-items: center;
    color: #087f78;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(20, 55, 52, .08);
    font-size: 1.6rem;
}

.manage-app .manage-main {
    width: min(1600px, calc(100% - 40px));
    padding-top: 18px;
}

.ops-hero,
.management-hero-panel {
    color: #1d2930;
    background:
        radial-gradient(circle at 2% 0, rgba(9, 128, 120, .14), transparent 14rem),
        linear-gradient(180deg, #fff, #fff);
    border: 0;
    box-shadow: 0 12px 36px rgba(20, 55, 52, .06);
}

.ops-hero {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 28px;
    border-radius: 14px;
}

.ops-hero h2,
.management-hero-panel h2 {
    margin: 0;
    color: #1d2930;
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
}

.ops-hero p,
.management-hero-panel p {
    color: #5e6c75;
}

.ops-kpi-grid,
.ops-module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ops-kpi-card,
.ops-panel,
.ops-module-grid a,
.booking-operation-card,
.service-edit-list article {
    background: #fff;
    border: 1px solid #e7eeee;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(20, 55, 52, .06);
}

.ops-kpi-card {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.ops-kpi-card span {
    color: #5e6c75;
    font-weight: 800;
}

.ops-kpi-card strong {
    color: #087f78;
    font-size: 2rem;
}

.sparkline {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 34px;
}

.sparkline i {
    flex: 1;
    height: 45%;
    background: linear-gradient(180deg, #0b8b83, #9bd9d4);
    border-radius: 999px 999px 0 0;
}

.sparkline i:nth-child(2) { height: 62%; }
.sparkline i:nth-child(3) { height: 38%; }
.sparkline i:nth-child(4) { height: 76%; }
.sparkline i:nth-child(5) { height: 52%; }

.ops-dashboard-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.95fr;
    gap: 16px;
}

.ops-panel {
    min-width: 0;
    overflow: auto;
    padding: 24px;
}

.chart-panel {
    grid-column: span 1;
}

.balance-panel strong {
    display: block;
    margin-top: 12px;
    color: #087f78;
    font-size: 2rem;
}

.line-chart {
    height: 120px;
    margin-top: 24px;
    background:
        linear-gradient(180deg, rgba(8, 127, 120, .22), rgba(8, 127, 120, .02)),
        repeating-linear-gradient(0deg, transparent, transparent 29px, #e8eeee 30px);
    border-bottom: 3px solid #087f78;
    border-radius: 12px;
}

.bar-chart {
    display: flex;
    align-items: end;
    gap: 18px;
    height: 280px;
    padding: 24px 8px 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 45px, #e8eeee 46px);
}

.bar-chart span {
    flex: 1;
    min-width: 20px;
    background: #0b8b83;
    border-radius: 8px 8px 0 0;
}

.ops-module-grid a {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.ops-module-grid span,
.booking-status-tabs button.is-active {
    color: #087f78;
    font-weight: 900;
}

.booking-command-center,
.service-manager {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 16px;
    align-items: start;
}

.booking-card-board,
.service-edit-list {
    display: grid;
    gap: 12px;
}

.booking-operation-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.booking-operation-card h3 {
    margin: 8px 0;
}

.booking-operation-card p,
.booking-operation-card small {
    color: #65727b;
}

.booking-operation-card form {
    display: grid;
    grid-template-columns: .7fr 1fr .8fr auto;
    gap: 10px;
    align-items: end;
}

.booking-operation-card button,
.booking-status-tabs button {
    min-height: 42px;
    padding: 0 14px;
    color: #087f78;
    background: #e8f4f3;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
}

.booking-status-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-status-tabs button.is-active {
    background: #d4eeeb;
}

.service-edit-panel {
    min-width: 0;
}

.service-edit-list article {
    display: grid;
    grid-template-columns: 1fr 120px 1fr 150px;
    gap: 12px;
    align-items: end;
    padding: 14px;
}

.sold-out-action {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: #9b3d32;
    background: #fde9e6;
    border-radius: 8px;
    font-weight: 900;
}

.empty-room-state {
    margin-top: 24px;
    padding: 34px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7eeee;
    border-radius: 14px;
}

.room-grid .empty-room-state {
    grid-column: 1 / -1;
}

.empty-room-state h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

@media (max-width: 1180px) {
    .ops-kpi-grid,
    .ops-module-grid,
    .ops-dashboard-grid,
    .booking-command-center,
    .service-manager {
        grid-template-columns: 1fr 1fr;
    }

    .booking-operation-card,
    .booking-operation-card form,
    .service-edit-list article {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .manage-topbar::before,
    .manage-topbar::after {
        display: none;
    }

    .ops-hero,
    .ops-kpi-grid,
    .ops-module-grid,
    .ops-dashboard-grid,
    .booking-command-center,
    .service-manager {
        grid-template-columns: 1fr;
    }
}

.booking-hero-panel {
    margin-bottom: 16px;
}

.booking-insight-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.booking-insight-grid article,
.online-reservation-panel,
.booking-live-board {
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(20, 55, 52, .06);
}

.booking-insight-grid article {
    display: grid;
    gap: 7px;
    min-height: 132px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)),
        radial-gradient(circle at 15% 110%, rgba(8, 127, 120, .22), transparent 5rem);
}

.booking-insight-grid span,
.offline-booking-form > .eyebrow {
    color: #b8842f;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.booking-insight-grid strong {
    color: #087f78;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.booking-insight-grid small {
    color: #65727b;
}

.online-reservation-panel {
    margin-bottom: 16px;
    padding: 22px;
}

.online-booking-stack {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.online-booking-stack article {
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.4fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: linear-gradient(180deg, #f8fbfb, #fff);
    border: 1px solid #e4eeee;
    border-radius: 16px;
}

.online-booking-stack h3,
.booking-operation-card h3 {
    margin: 8px 0 6px;
}

.online-booking-stack p,
.online-booking-stack small,
.booking-services-summary p,
.booking-services-summary span {
    margin: 0;
    color: #65727b;
}

.online-booking-stack form {
    display: grid;
    grid-template-columns: .8fr 1fr .9fr auto;
    gap: 10px;
    align-items: end;
}

.online-booking-stack button {
    min-height: 42px;
    padding: 0 14px;
    color: #087f78;
    background: #dff2f0;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
}

.channel-pill {
    display: inline-grid;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    color: #fff;
    background: linear-gradient(135deg, #087f78, #0aa59b);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.booking-filter-bar {
    grid-template-columns: 1.4fr .75fr .82fr .92fr auto;
}

.offline-booking-form {
    position: sticky;
    top: 18px;
}

.offline-booking-form textarea {
    min-height: 84px;
}

.booking-live-board {
    min-width: 0;
    padding: 18px;
}

.booking-services-summary {
    display: grid;
    gap: 6px;
    padding: 12px;
    background: #f4f9f8;
    border: 1px solid #e1eeee;
    border-radius: 14px;
}

.booking-services-summary strong {
    color: #087f78;
    font-size: 1.2rem;
}

.booking-day-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 14px;
}

.booking-day-grid article {
    display: grid;
    gap: 6px;
    padding: 16px;
    background: #f8fbfb;
    border: 1px solid #e4eeee;
    border-radius: 16px;
}

.booking-day-grid span {
    color: #b8842f;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.booking-day-grid p,
.booking-day-grid small {
    margin: 0;
    color: #65727b;
}

@media (max-width: 1280px) {
    .booking-insight-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .online-booking-stack article,
    .online-booking-stack form {
        grid-template-columns: 1fr;
    }

    .booking-filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .booking-insight-grid,
    .booking-day-grid {
        grid-template-columns: 1fr;
    }
}

.manage-nav {
    padding-bottom: 24px;
}

.nav-section-label {
    margin: 18px 12px 6px;
    color: #98a3ac;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.manage-app .manage-sidebar nav a {
    gap: 10px;
}

.nav-icon {
    display: inline-grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    color: #087f78;
    background: #eef7f6;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 900;
}

.manage-app .manage-sidebar nav a:hover .nav-icon {
    color: #fff;
    background: #087f78;
}

.manage-nav a b {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    margin-left: auto;
    place-items: center;
    color: #087f78;
    background: #dff2f0;
    border-radius: 999px;
    font-size: .75rem;
}

.nav-tree {
    display: grid;
    gap: 4px;
}

.nav-tree > div {
    display: grid;
    margin: 0 0 4px 27px;
    padding-left: 18px;
    border-left: 1px solid #dfe8e8;
}

.manage-app .manage-sidebar .nav-tree > div a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    color: #6d7982;
    font-weight: 700;
}

.manage-app .manage-sidebar .nav-tree > div a::before {
    left: -18px;
    width: 10px;
    height: 1px;
    background: #dfe8e8;
    transform: none;
    content: "";
}

.booking-filter-bar {
    display: grid;
    grid-template-columns: 1.4fr .8fr .9fr auto;
    gap: 12px;
    align-items: end;
    margin: 16px 0;
    padding: 16px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid #e4eeee;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(20, 55, 52, .06);
}

.booking-filter-bar label,
.room-edit-grid label,
.access-panel label {
    color: #627077;
    font-size: .86rem;
    font-weight: 850;
}

.booking-filter-bar input,
.booking-filter-bar select,
.room-edit-grid input,
.room-edit-grid textarea,
.room-edit-grid select {
    margin-top: 7px;
}

.quick-date-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-date-actions button {
    min-height: 42px;
    padding: 0 14px;
    color: #087f78;
    background: #eef7f6;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
}

.booking-calendar-panel,
.message-workbench,
.access-panel,
.add-room-panel {
    margin-top: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(20, 55, 52, .06);
}

.booking-calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.booking-calendar-grid article {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(180deg, #f9fbfb, #fff);
    border: 1px solid #e4eeee;
    border-radius: 14px;
}

.booking-calendar-grid span,
.message-command-grid span {
    color: #b8842f;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.booking-calendar-grid p,
.booking-calendar-grid small {
    margin: 0;
    color: #65727b;
}

.booking-calendar-grid em {
    width: fit-content;
    padding: 6px 10px;
    color: #087f78;
    background: #e8f4f3;
    border-radius: 999px;
    font-style: normal;
    font-weight: 900;
}

.message-command-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0;
}

.message-command-grid article {
    display: grid;
    gap: 8px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(20, 55, 52, .05);
}

.message-command-grid strong {
    color: #087f78;
    font-size: 1.7rem;
}

.message-command-grid small {
    color: #65727b;
}

.message-ticket-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.message-ticket-list article {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 18px;
    padding: 18px;
    background: #f8fbfb;
    border: 1px solid #e4eeee;
    border-radius: 16px;
}

.message-ticket-list h3 {
    margin: 10px 0 8px;
}

.message-ticket-list p,
.message-ticket-list small {
    margin: 0;
    color: #65727b;
}

.message-ticket-list aside {
    display: grid;
    align-content: start;
    gap: 8px;
    padding-left: 18px;
    border-left: 1px solid #deebea;
}

.message-ticket-list a {
    color: #087f78;
    font-weight: 900;
}

.checkout-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(120px, .8fr);
    gap: 10px;
}

.checkout-gallery > img,
.checkout-gallery div img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    border-radius: 14px;
}

.checkout-gallery div {
    display: grid;
    gap: 10px;
}

.access-grid {
    display: grid;
    gap: 18px;
}

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

.credential-grid article {
    display: grid;
    gap: 10px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(20, 55, 52, .05);
}

.credential-grid span {
    color: #b8842f;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.credential-grid code {
    padding: 10px 12px;
    color: #075b56;
    background: #e5f3f1;
    border-radius: 10px;
    font-weight: 900;
}

.role-coverage-panel {
    display: grid;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(20, 55, 52, .05);
}

.role-coverage-panel h3 {
    margin: 0;
}

.permission-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px;
    border: 1px solid #e4eeee;
    border-radius: 16px;
}

.permission-row legend {
    padding: 0 8px;
    color: #1d2930;
    font-weight: 900;
}

.permission-row .toggle-row {
    margin: 0;
    padding: 10px 12px;
    background: #f8fbfb;
    border: 1px solid #e8eeee;
    border-radius: 12px;
}

.custom-role-row .custom-role-name {
    grid-column: 1 / -1;
}

.add-room-panel {
    margin-bottom: 18px;
}

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

.room-edit-grid .wide {
    grid-column: 1 / -1;
}

.room-edit-grid textarea {
    min-height: 96px;
}

.file-upload-field {
    display: grid;
    gap: 10px;
    color: #627077;
    font-size: .86rem;
    font-weight: 850;
}

.file-drop-zone {
    display: grid;
    gap: 6px;
    min-height: 112px;
    place-items: center;
    padding: 18px;
    color: #087f78;
    text-align: center;
    background: #f3fbfa;
    border: 2px dashed #9bd9d4;
    border-radius: 14px;
    cursor: pointer;
}

.file-drop-zone strong,
.file-drop-zone small {
    display: block;
}

.file-drop-zone small {
    max-width: 520px;
    color: #65727b;
    font-weight: 700;
}

.file-drop-zone input {
    position: absolute;
    width: 1px;
    min-width: 0;
    height: 1px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.file-preview-list {
    display: grid;
    gap: 8px;
    color: #65727b;
    font-weight: 800;
}

.file-preview-list.has-files {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.file-preview-list span {
    display: grid;
    gap: 3px;
    min-height: 58px;
    align-content: center;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #dfecec;
    border-radius: 12px;
}

.file-preview-list strong {
    overflow: hidden;
    color: #1d2930;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview-list small {
    color: #087f78;
}

.install-body {
    min-height: 100vh;
    background: #f4f8f8;
}

.install-shell {
    display: grid;
    gap: 18px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 56px;
}

.install-hero,
.install-card,
.install-error {
    background: #fff;
    border: 1px solid #e2eeee;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(20, 55, 52, .07);
}

.install-hero {
    padding: clamp(24px, 4vw, 42px);
}

.install-hero h1 {
    margin: 0;
    color: #1d2930;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .95;
}

.install-hero p,
.install-card p {
    color: #65727b;
    line-height: 1.7;
}

.install-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.install-card {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.install-card h2 {
    margin: 0;
}

.install-step {
    width: fit-content;
    padding: 7px 10px;
    color: #087f78;
    background: #e8f4f3;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
}

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

.requirement-list div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 12px;
    background: #f8fbfb;
    border: 1px solid #e2eeee;
    border-radius: 12px;
}

.requirement-list span {
    align-self: start;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
}

.requirement-list small {
    grid-column: 1 / -1;
    color: #65727b;
}

.requirement-list .is-ok span {
    color: #075b56;
    background: #dff2f0;
}

.requirement-list .is-bad span {
    color: #9b3d32;
    background: #fde9e6;
}

.install-db-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.install-checkbox {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 12px;
    background: #f8fbfb;
    border: 1px solid #e2eeee;
    border-radius: 12px;
}

.install-checkbox input {
    width: 18px;
    min-height: 18px;
}

.install-help {
    margin: 0;
    padding: 12px;
    background: #fff8eb;
    border: 1px solid #f1dfbc;
    border-radius: 12px;
}

.install-error {
    padding: 14px 16px;
    color: #9b3d32;
    background: #fff4f2;
}

.install-error p {
    margin: 0;
    font-weight: 800;
}

.manage-room-form article {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(20, 55, 52, .06);
}

.manage-room-form article > img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .booking-filter-bar,
    .booking-calendar-grid,
    .message-command-grid,
    .credential-grid,
    .permission-row,
    .install-grid,
    .room-edit-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .booking-filter-bar,
    .booking-calendar-grid,
    .message-command-grid,
    .message-ticket-list article,
    .credential-grid,
    .permission-row,
    .install-grid,
    .install-db-grid,
    .room-edit-grid,
    .checkout-gallery {
        grid-template-columns: 1fr;
    }

    .message-ticket-list aside {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #deebea;
        padding-top: 12px;
    }

    .manage-app .manage-main {
        width: min(100% - 24px, 1600px);
    }
}

/* ============================================================
   Command Center redesign — premium management shell
   ============================================================ */

body.manage-app-body {
    --mgi-teal: #17b3a0;
    --mgi-teal-dark: #0f6a5f;
    --mgi-gold: #d9a441;
    --mgi-good: #1f9d6c;
    --mgi-warn: #b5852f;
    --mgi-neutral: #2b5a82;
    --mgi-danger: #c1493f;
    --mgi-ink: #101f1c;
    --mgi-muted: #64756f;
    --mgi-line: #e4ebe8;
    background:
        radial-gradient(circle at 82% 0%, rgba(217, 164, 65, .08), transparent 30rem),
        radial-gradient(circle at 0% 20%, rgba(23, 179, 160, .06), transparent 30rem),
        #f3f6f5;
}

.hbms-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

/* Sidebar */

body.manage-app-body .manage-app {
    grid-template-columns: 272px 1fr;
}

body.manage-app-body .manage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 14px 16px;
    color: #cfe3de;
    background:
        radial-gradient(circle at 100% 0%, rgba(217, 164, 65, .22), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(23, 179, 160, .24), transparent 55%),
        linear-gradient(180deg, #0a1e1b 0%, #0f2b26 55%, #0a1f1b 100%);
    border-right: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 18px 0 60px rgba(6, 18, 16, .28);
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 227, 222, .28) transparent;
}

body.manage-app-body .manage-sidebar::-webkit-scrollbar {
    width: 6px;
}

body.manage-app-body .manage-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

body.manage-app-body .manage-sidebar::-webkit-scrollbar-thumb {
    background: rgba(207, 227, 222, .28);
    border-radius: 999px;
}

body.manage-app-body .manage-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

body.manage-app-body .brand-mark {
    background: linear-gradient(135deg, var(--mgi-teal), var(--mgi-gold));
    box-shadow: 0 10px 24px rgba(23, 179, 160, .35);
}

body.manage-app-body .manage-sidebar .brand strong {
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
}

body.manage-app-body .manage-sidebar .brand small {
    color: rgba(207, 227, 222, .58);
}

body.manage-app-body .manager-card {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
}

.manager-avatar {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mgi-teal), var(--mgi-gold));
    color: #0a1e1b;
    font-size: .82rem;
    font-weight: 900;
}

.manager-meta {
    display: grid;
    min-width: 0;
    gap: 1px;
}

.manager-meta em {
    overflow: hidden;
    color: #8fd9c7;
    font-size: .66rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.manager-meta strong {
    overflow: hidden;
    color: #fff;
    font-size: .88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.manager-meta small {
    overflow: hidden;
    color: rgba(207, 227, 222, .55);
    font-size: .72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.manager-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #3ddc97;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(61, 220, 151, .25);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 12px;
    color: rgba(207, 227, 222, .55);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
}

.nav-search input {
    flex: 1;
    min-width: 0;
    color: #eef7f4;
    background: none;
    border: 0;
    font-size: .84rem;
}

.nav-search input::placeholder {
    color: rgba(207, 227, 222, .4);
}

.nav-search input:focus {
    outline: 0;
}

body.manage-app-body .manage-nav {
    display: grid;
    flex: 1;
    min-height: 0;
    gap: 3px;
    padding-bottom: 6px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 227, 222, .28) transparent;
}

body.manage-app-body .manage-nav::-webkit-scrollbar {
    width: 6px;
}

body.manage-app-body .manage-nav::-webkit-scrollbar-track {
    background: transparent;
}

body.manage-app-body .manage-nav::-webkit-scrollbar-thumb {
    background: rgba(207, 227, 222, .28);
    border-radius: 999px;
}

body.manage-app-body .manage-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(207, 227, 222, .45);
}

body.manage-app-body .nav-section-label {
    margin: 14px 10px 4px;
    color: rgba(207, 227, 222, .4);
}

body.manage-app-body .manage-sidebar nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    color: rgba(224, 238, 233, .78);
    border-radius: 11px;
    font-weight: 700;
    font-size: .88rem;
    transition: background .16s ease, color .16s ease;
}

body.manage-app-body .manage-sidebar nav a::before {
    content: none;
}

body.manage-app-body .manage-sidebar nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

body.manage-app-body .manage-sidebar nav a.is-active {
    color: #0a1e1b;
    background: linear-gradient(135deg, var(--mgi-teal), #41d6bd);
    box-shadow: 0 12px 26px rgba(23, 179, 160, .32);
}

body.manage-app-body .manage-sidebar nav a.is-active .nav-icon {
    color: #0a1e1b;
    background: rgba(10, 30, 27, .16);
}

body.manage-app-body .nav-icon {
    display: grid;
    flex: 0 0 30px;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #8fd9c7;
    background: rgba(255, 255, 255, .08);
    border-radius: 9px;
}

body.manage-app-body .manage-sidebar nav a:hover .nav-icon {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

body.manage-app-body .manage-nav a b {
    color: #241804;
    background: var(--mgi-gold);
}

body.manage-app-body .nav-tree > div {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

body.manage-app-body .manage-sidebar .nav-tree > div a {
    color: rgba(224, 238, 233, .58);
    font-size: .82rem;
    font-weight: 600;
}

body.manage-app-body .manage-sidebar .nav-tree > div a.is-active {
    color: #8fd9c7;
    background: rgba(255, 255, 255, .06);
    font-weight: 800;
}

body.manage-app-body .manage-sidebar .nav-tree > div a::before {
    background: rgba(255, 255, 255, .2);
}

.sidebar-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 2px;
    color: rgba(207, 227, 222, .45);
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .7rem;
    font-weight: 700;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #3ddc97;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(61, 220, 151, .22);
}

/* Topbar */

body.manage-app-body .manage-topbar {
    min-height: 74px;
    background: rgba(255, 255, 255, .72);
    border-bottom: 1px solid rgba(15, 60, 52, .08);
    backdrop-filter: blur(20px);
}

body.manage-app-body .manage-topbar::before,
body.manage-app-body .manage-topbar::after {
    content: none;
    display: none;
}

body.manage-app-body .manage-topbar .topbar-title {
    display: grid;
    margin-right: auto;
}

body.manage-app-body .manage-topbar .topbar-title strong {
    color: var(--mgi-ink);
}

body.manage-app-body .manage-topbar .topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 0;
    margin-left: auto;
}

body.manage-app-body .manage-topbar .topbar-actions form {
    margin: 0;
}

.topbar-clock {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 14px;
    color: var(--mgi-teal-dark);
    background: rgba(23, 179, 160, .1);
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.icon-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #3a4c47;
    background: #fff;
    border: 1px solid rgba(15, 60, 52, .1);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(9, 40, 35, .06);
    transition: color .16s ease, border-color .16s ease, transform .16s ease;
}

.icon-button:hover {
    color: var(--mgi-teal-dark);
    border-color: rgba(23, 179, 160, .35);
    transform: translateY(-2px);
}

.icon-button b {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    place-items: center;
    color: #fff;
    background: var(--mgi-danger);
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 900;
}

.icon-button-accent {
    color: #fff;
    background: linear-gradient(135deg, var(--mgi-teal), var(--mgi-teal-dark));
    border: 0;
}

.icon-button-accent:hover {
    color: #fff;
    filter: brightness(1.08);
}

body.manage-app-body .ghost-action {
    min-height: 40px;
    color: #3a4c47;
    background: #fff;
    border: 1px solid rgba(15, 60, 52, .12);
    border-radius: 999px;
}

body.manage-app-body .ghost-action:hover {
    border-color: rgba(193, 73, 63, .35);
    color: var(--mgi-danger);
}

/* Hero */

body.manage-app-body .management-hero-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    padding: 34px clamp(22px, 4vw, 42px);
    color: #eef7f4;
    background:
        radial-gradient(circle at 88% 0%, rgba(217, 164, 65, .38), transparent 45%),
        radial-gradient(circle at 4% 105%, rgba(23, 179, 160, .38), transparent 52%),
        linear-gradient(135deg, #0b211e 0%, #123832 55%, #0d2823 100%);
    border: 0;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(9, 40, 35, .28);
}

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

body.manage-app-body .management-hero-panel .eyebrow {
    display: inline-flex;
    align-items: center;
    color: #f2c877;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 7px;
    background: #3ddc97;
    border-radius: 50%;
    animation: mgiPulse 1.8s ease-out infinite;
}

@keyframes mgiPulse {
    0% { box-shadow: 0 0 0 0 rgba(61, 220, 151, .55); }
    70% { box-shadow: 0 0 0 10px rgba(61, 220, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

body.manage-app-body .management-hero-panel h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    font-weight: 700;
}

body.manage-app-body .management-hero-panel p {
    max-width: 560px;
    color: rgba(238, 247, 244, .78);
}

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

body.manage-app-body .management-hero-panel .primary-button {
    background: linear-gradient(135deg, var(--mgi-teal), var(--mgi-teal-dark));
    box-shadow: 0 16px 32px rgba(15, 106, 95, .38);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 18px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    font-weight: 800;
    transition: background .16s ease;
}

.ghost-button:hover {
    background: rgba(255, 255, 255, .16);
}

.hero-occupancy {
    display: grid;
    flex: 0 0 auto;
    justify-items: center;
    gap: 10px;
}

.hero-occupancy > span {
    color: rgba(238, 247, 244, .68);
    font-size: .8rem;
    font-weight: 700;
}

.occupancy-ring {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    background: conic-gradient(var(--mgi-gold) calc(var(--occ, 0) * 1%), rgba(255, 255, 255, .16) 0);
    border-radius: 50%;
}

.occupancy-ring::before {
    position: absolute;
    inset: 9px;
    content: "";
    background: linear-gradient(160deg, #123832, #0a1e1b);
    border-radius: 50%;
}

.occupancy-ring strong,
.occupancy-ring small {
    position: relative;
    z-index: 1;
}

.occupancy-ring strong {
    display: block;
    color: #fff;
    font-size: 1.4rem;
}

.occupancy-ring small {
    color: rgba(238, 247, 244, .6);
    font-size: .68rem;
    font-weight: 700;
}

/* Metric cards */

body.manage-app-body .metric-grid {
    gap: 16px;
}

body.manage-app-body .metric-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--mgi-line);
    border-left: 1px solid var(--mgi-line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(9, 40, 35, .07);
    transition: transform .18s ease, box-shadow .18s ease;
}

body.manage-app-body .metric-card::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--mgi-good), #59d6a4);
}

body.manage-app-body .metric-card.warn::after {
    background: linear-gradient(90deg, var(--mgi-gold), #f2c877);
}

body.manage-app-body .metric-card.neutral::after {
    background: linear-gradient(90deg, var(--mgi-neutral), #7bb4e0);
}

body.manage-app-body .metric-card:hover {
    box-shadow: 0 26px 60px rgba(9, 40, 35, .14);
    transform: translateY(-3px);
}

.metric-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.metric-card .metric-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--mgi-teal-dark);
    background: rgba(23, 179, 160, .12);
    border-radius: 12px;
}

.metric-card.warn .metric-icon {
    color: #8a5b16;
    background: rgba(217, 164, 65, .16);
}

.metric-card.neutral .metric-icon {
    color: var(--mgi-neutral);
    background: rgba(63, 124, 176, .14);
}

.metric-card .trend-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px 4px 8px;
    color: var(--mgi-good);
    background: rgba(31, 157, 108, .12);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    white-space: nowrap;
}

.metric-card .trend-chip::before {
    content: "\2192";
}

.metric-card .trend-chip.trend-up::before {
    content: "\2191";
}

.metric-card .trend-chip.trend-down {
    color: var(--mgi-danger);
    background: rgba(193, 73, 63, .12);
}

.metric-card .trend-chip.trend-down::before {
    content: "\2193";
}

.metric-card .trend-chip.trend-flat {
    color: var(--mgi-warn);
    background: rgba(181, 133, 47, .12);
}

.metric-card .metric-label {
    display: block;
    color: var(--mgi-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

body.manage-app-body .metric-card strong {
    margin: 0;
    color: var(--mgi-ink);
    font-size: 2.1rem;
    font-variant-numeric: tabular-nums;
}

.metric-card .sparkline {
    height: 28px;
    margin-top: 2px;
}

.metric-card.warn .sparkline i {
    background: linear-gradient(180deg, var(--mgi-gold), #f2c877);
}

.metric-card.neutral .sparkline i {
    background: linear-gradient(180deg, var(--mgi-neutral), #7bb4e0);
}

/* Command grid + overview */

body.manage-app-body .manage-command-grid a {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--mgi-line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(9, 40, 35, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.manage-app-body .manage-command-grid a:hover {
    border-color: rgba(23, 179, 160, .35);
    box-shadow: 0 26px 60px rgba(9, 40, 35, .12);
    transform: translateY(-4px);
}

.command-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--mgi-teal-dark);
    background: linear-gradient(135deg, rgba(23, 179, 160, .16), rgba(217, 164, 65, .18));
    border-radius: 12px;
}

.manage-command-grid a span.command-icon {
    color: var(--mgi-teal-dark);
    font-weight: normal;
}

.command-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #9fb0ac;
    font-style: normal;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

body.manage-app-body .manage-command-grid a:hover .command-arrow {
    color: var(--mgi-teal-dark);
    opacity: 1;
    transform: translateX(0);
}

body.manage-app-body .manage-overview article {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 16px;
}

.overview-icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 2px;
    place-items: center;
    color: #8a5b16;
    background: rgba(217, 164, 65, .14);
    border-radius: 10px;
}

body.manage-app-body .manage-overview a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

/* Inbox */

body.manage-app-body .customer-panel {
    border-radius: 18px;
}

body.manage-app-body .message-list article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.message-avatar {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: linear-gradient(135deg, var(--mgi-teal), var(--mgi-teal-dark));
    border-radius: 50%;
    font-weight: 800;
}

body.manage-app-body .message-list article > div {
    display: grid;
    min-width: 0;
    gap: 4px;
}

/* Responsive */

@media (max-width: 980px) {
    body.manage-app-body .management-hero-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-occupancy {
        justify-self: start;
    }

    .manage-app,
    body.manage-app-body .manage-app {
        grid-template-columns: 1fr;
    }

    .manage-workspace {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .topbar-clock {
        display: none;
    }
}

/* ============================================================
   Guest experience — luxury elevation pass
   ============================================================ */

.eyebrow {
    position: relative;
    padding-bottom: 15px;
}

.eyebrow::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--gold), rgba(184, 132, 47, 0));
}

.section-heading h2,
.stats-band strong,
.feature-ribbon h3,
.service-card h3,
.room-body h3,
.promo-card h3,
.split-section h2,
.empty-room-state h2,
.customer-hero h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
}

.primary-button,
.nav-action {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 14px 32px rgba(18, 71, 64, .22);
    transition: transform .18s ease, box-shadow .18s ease;
}

.primary-button:hover,
.nav-action:hover {
    box-shadow: 0 18px 40px rgba(18, 71, 64, .3);
    transform: translateY(-2px);
}

.ghost-action,
.text-action {
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.ghost-action:hover,
.text-action:hover {
    color: var(--teal-dark);
    border-color: var(--teal);
    transform: translateY(-1px);
}

.main-nav a {
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    position: absolute;
    right: 100%;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transition: right .25s ease;
}

.main-nav a:hover::after {
    right: 0;
}

.brand-mark,
.brand-logo {
    border-radius: 12px;
}

/* Hero */

.luxury-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(180deg, rgba(6, 14, 13, .1) 0%, transparent 35%, rgba(6, 14, 13, .5) 100%);
}

.search-panel.glass-panel {
    border-radius: 16px;
}

.hero-trust span {
    position: relative;
    padding-left: 26px;
}

.hero-trust span::before {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.season-strip {
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(6, 14, 13, .18);
}

/* Room & service cards */

.room-card,
.service-card,
.price-card,
.booking-ticket,
.detail-panel,
.checkout-form,
.contact-card,
.contact-form,
.about-grid article,
.about-story-card,
.about-value-card,
.feature-ribbon article,
.glass-stat,
.auth-card,
.promo-card {
    border-radius: 16px;
}

.room-image img {
    transition: transform .5s ease;
}

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

.room-footer a {
    transition: transform .18s ease, box-shadow .18s ease;
}

.room-footer a:hover {
    box-shadow: 0 12px 26px rgba(200, 95, 79, .32);
    transform: translateY(-2px);
}

.room-footer strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.service-card:hover {
    box-shadow: 0 20px 55px rgba(23, 32, 29, .14);
    transform: translateY(-4px);
}

.feature-ribbon strong,
.about-value-card > span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    place-items: center;
    border: 1px solid rgba(184, 132, 47, .35);
    border-radius: 50%;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.3rem;
}

/* Promo cards (homepage) */

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 0;
}

.promo-card {
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(23, 32, 29, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.promo-card:hover {
    box-shadow: 0 26px 60px rgba(23, 32, 29, .14);
    transform: translateY(-4px);
}

.promo-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.promo-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.promo-card:hover .promo-card-media img {
    transform: scale(1.06);
}

.promo-card-body {
    padding: 20px;
}

.promo-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
}

.promo-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

/* About + contact */

.about-story-media img {
    border-radius: 14px;
}

/* Checkout + booking portal */

.price-card .total dd {
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
}

.booking-ticket {
    position: relative;
    overflow: hidden;
}

.booking-ticket h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

/* Footer */

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0d2a27, #0a211f);
}

.site-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-footer {
    display: block;
    width: 100%;
    gap: 26px;
    padding: 42px clamp(18px, 4vw, 56px) 24px;
}

.site-footer div,
.footer-main,
.footer-payment-block div {
    display: grid;
}

.footer-main {
    width: 100%;
    grid-template-columns: minmax(260px, 1.15fr) minmax(230px, 1fr) minmax(180px, .85fr) minmax(260px, 1fr);
    gap: clamp(28px, 5vw, 110px);
    align-items: start;
    justify-content: stretch;
}

.footer-brand-block,
.footer-contact-block,
.footer-link-block,
.footer-payment-block {
    display: grid;
    gap: 10px;
}

.footer-brand-block strong {
    color: #fff;
    font-size: 1.15rem;
}

.footer-brand-block p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.footer-contact-block > span:first-child,
.footer-link-block > span:first-child,
.footer-payment-block > span:first-child {
    color: var(--gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-contact-block strong,
.footer-contact-block a,
.footer-link-block a,
.footer-payment-block a {
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

.footer-contact-block span,
.footer-payment-block span {
    color: rgba(255, 255, 255, .72);
}

.footer-payment-block div {
    grid-template-columns: repeat(auto-fit, minmax(90px, max-content));
    gap: 8px;
}

.footer-payment-block {
    justify-self: end;
    width: min(100%, 300px);
}

.footer-bottom {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 980px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-payment-block {
        justify-self: start;
        width: 100%;
    }
}

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

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