:root {
    --bg: #f8fbff;
    --surface: #ffffff;
    --surface-alt: #f3f8ff;
    --text: #13253c;
    --muted: #5f7389;
    --line: #d8e7f8;
    --primary: #2b92ff;
    --primary-soft: #d7ecff;
    --primary-strong: #1572db;
    --success-soft: #def6e8;
    --success: #2e9f57;
    --shadow: 0 20px 45px rgba(27, 92, 165, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 5%, #e6f4ff 0, transparent 35%),
        radial-gradient(circle at 90% 2%, #f0f8ff 0, transparent 40%),
        var(--bg);
    line-height: 1.45;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100vw - 2rem));
    margin: 0 auto;
}

.page-main {
    padding: 2rem 0 4rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(10px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.88));
    border-bottom: 1px solid rgba(194, 220, 244, 0.72);
    transition: box-shadow 0.22s ease;
}

.site-header.is-elevated {
    box-shadow: 0 10px 35px rgba(20, 90, 158, 0.12);
}

.header-topline {
    border-bottom: 1px solid rgba(202, 226, 247, 0.8);
    background: linear-gradient(90deg, #f2f9ff, #edf6ff);
}

.header-topline-shell {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.header-note,
.header-note-aux {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #3f6487;
    text-transform: uppercase;
}

.header-note-aux {
    color: #5b7794;
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    transition: opacity 0.16s ease;
}

.brand:hover {
    opacity: 0.9;
}

.brand-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.brand-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: none;
    background: transparent;
    box-shadow: none;
    clip-path: circle(49% at 50% 50%);
    transform: scale(1.06);
}

.brand-text {
    display: grid;
    gap: 0.08rem;
}

.brand-title {
    font-family: "Sora", "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.03rem;
    letter-spacing: -0.02em;
    color: #17385b;
}

.brand-subtitle {
    font-size: 0.73rem;
    color: #557492;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.24rem;
    border: 1px solid #d3e7fa;
    border-radius: 999px;
    background: linear-gradient(145deg, #ffffff, #f4faff);
    box-shadow: 0 8px 18px rgba(32, 102, 168, 0.08);
}

.nav-link {
    padding: 0.53rem 0.9rem;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 700;
    color: #385a7b;
    letter-spacing: 0.01em;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.nav-link:hover {
    background: #eaf5ff;
    color: #194f83;
}

.nav-link.is-active {
    background: #dcefff;
    color: #14548f;
    box-shadow: inset 0 0 0 1px rgba(96, 164, 226, 0.45);
}

.nav-cta {
    background: linear-gradient(145deg, #49a4ff, #1c83ea);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(30, 123, 210, 0.28);
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(145deg, #53adff, #1f89f0);
}

.nav-cta.is-active {
    color: #ffffff;
}

.hero {
    margin-top: 1.6rem;
    background: linear-gradient(145deg, #ffffff, #f6fbff);
    border: 1px solid #dcecfb;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr;
    padding: 2rem;
}

.home-hero-shell {
    margin-top: 1.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid #d7e9fb;
    background:
        radial-gradient(circle at 85% 12%, #e8f4ff 0, transparent 35%),
        linear-gradient(145deg, #ffffff, #f7fbff);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.2rem;
    align-items: start;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid #b8daf8;
    background: #eff8ff;
    padding: 0.3rem 0.75rem;
    color: #1f6fbf;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-headline {
    margin: 0.9rem 0 0.8rem;
    font-family: "Sora", "Manrope", sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-size: clamp(2rem, 3.1vw, 3.25rem);
    color: #152f4e;
}

.home-lead {
    margin: 0;
    color: #4f6780;
    max-width: 60ch;
}

.home-kpi-strip {
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.home-kpi-item {
    border: 1px solid #d4e7fb;
    border-radius: 12px;
    background: #f7fbff;
    padding: 0.7rem;
}

.home-kpi-value {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e5e9f;
}

.home-kpi-label {
    margin: 0.15rem 0 0;
    color: #5f7690;
    font-size: 0.8rem;
}

.home-rule-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.home-rule-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: start;
    color: #2e4e6f;
}

.home-rule-index {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dcefff;
    color: #1f6fbf;
    font-size: 0.74rem;
    font-weight: 800;
    margin-top: 0.08rem;
}

.booking-search-card {
    border: 1px solid #cfe5fa;
}

.home-submit-btn {
    width: 100%;
}

.home-dev-links {
    margin-top: 0.75rem;
    border-top: 1px dashed #d0e4f7;
    padding-top: 0.65rem;
}

.home-dev-links summary {
    cursor: pointer;
    color: #4f6f8f;
    font-weight: 700;
    font-size: 0.82rem;
}

.home-process {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.home-step-card h3 {
    margin: 0;
    color: #213f62;
}

.home-step-card p {
    margin: 0.55rem 0 0;
    color: #5b728b;
}

.home-step-index {
    margin: 0 0 0.45rem;
    color: #2a7bcd;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary-strong);
    background: var(--primary-soft);
    text-transform: uppercase;
}

.hero-title,
.page-title {
    font-family: "Sora", "Manrope", sans-serif;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
}

.hero-title {
    font-size: clamp(1.9rem, 2.8vw, 3rem);
    max-width: 18ch;
}

.hero-text {
    color: var(--muted);
    max-width: 55ch;
    margin: 0.9rem 0 1.2rem;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 0.55rem;
    color: #294b6f;
}

.info-dot {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #e4f2ff;
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 0.1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(29, 90, 150, 0.08);
}

.card-padding {
    padding: 1.3rem;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.field {
    display: grid;
    gap: 0.4rem;
}

.field-label {
    font-size: 0.83rem;
    font-weight: 700;
    color: #375777;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid #cce1f5;
    background: #fff;
    border-radius: 11px;
    padding: 0.72rem 0.8rem;
    font: inherit;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: #82bcff;
    box-shadow: 0 0 0 4px rgba(76, 157, 247, 0.17);
    outline: none;
}

.form-row {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.9rem;
}

.form-row.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-full {
    grid-column: 1 / -1;
}

.btn {
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(145deg, #43a0ff, #1d83eb);
    box-shadow: 0 12px 24px rgba(35, 125, 211, 0.23);
    margin-top: 0.8rem;
}

.btn-primary:hover {
    box-shadow: 0 16px 32px rgba(35, 125, 211, 0.34);
}

.btn-ghost {
    color: #256aa9;
    background: #e9f4ff;
}

.flow-nav {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.flow-nav-note {
    margin: 0.8rem 0 0;
    color: #5f7690;
    font-size: 0.82rem;
}

.distribution-panel {
    margin-top: 0.95rem;
    border: 1px solid #cfe6fd;
    border-radius: var(--radius-sm);
    background: #f5faff;
    padding: 0.95rem;
}

.distribution-title {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    color: #2f5377;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.stat {
    border: 1px solid #cfe6fd;
    border-radius: 10px;
    background: #fff;
    padding: 0.65rem;
}

.stat-label {
    margin: 0;
    font-size: 0.73rem;
    font-weight: 700;
    color: #5d7691;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    margin: 0.2rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #16395e;
}

.inline-note {
    margin: 0.7rem 0 0;
    color: #355977;
    font-size: 0.86rem;
}

.section-top {
    margin-bottom: 1.1rem;
}

.page-title {
    font-size: clamp(1.6rem, 2.1vw, 2.2rem);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    margin: 0;
    color: var(--muted);
}

.booking-steps {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.booking-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4e6f8;
    border-radius: 999px;
    background: #f5faff;
    color: #517292;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.booking-step.is-done {
    border-color: #b8dbff;
    color: #1f6fbf;
    background: #eaf5ff;
}

.booking-step.is-active {
    border-color: #3b9cff;
    color: #fff;
    background: linear-gradient(145deg, #43a0ff, #1d83eb);
}

.pricing-panel {
    margin: 0.9rem 0 0.9rem;
    border: 1px solid #cfe5fa;
    border-radius: 14px;
    background: #f8fcff;
    padding: 0.9rem;
}

.pricing-title {
    margin: 0;
    color: #1f4368;
    font-size: 1rem;
}

.pricing-subtitle {
    margin: 0.25rem 0 0.7rem;
    color: #5c7390;
    font-size: 0.84rem;
}

.pricing-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.38rem 0;
    color: #315579;
    font-size: 0.92rem;
}

.pricing-line strong {
    color: #17385b;
}

.pricing-line.total {
    margin-top: 0.35rem;
    border-top: 1px solid #d3e7fb;
    padding-top: 0.68rem;
    font-weight: 800;
}

.pricing-line.total strong {
    color: #1b72c8;
    font-size: 1.05rem;
}

.extras-grid {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.65rem;
}

.companion-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.companion-age-field[hidden],
.parking-plate-field[hidden] {
    display: none;
}

.parking-plate-field {
    margin-top: 0.8rem;
}

.extra-option {
    border: 1px solid #d5e8fb;
    border-radius: 12px;
    background: #fff;
    padding: 0.7rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
}

.extra-option input[type="checkbox"] {
    accent-color: #2b92ff;
    width: 18px;
    height: 18px;
}

.extra-option span {
    display: grid;
    gap: 0.1rem;
}

.extra-option small {
    color: #5d7793;
    font-size: 0.8rem;
}

.trust-strip {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.result-list {
    display: grid;
    gap: 0.95rem;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
}

.room-detail-info {
    margin: 0.45rem 0 0;
    padding: 0.55rem 0.65rem;
    border: 1px solid #d6e8fa;
    border-radius: 10px;
    background: #f7fbff;
    color: #2f577e;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}

.room-card.is-selected {
    border-color: #86c0f7;
    box-shadow: 0 16px 32px rgba(35, 125, 211, 0.2);
    background: #f8fcff;
}

.room-picker-list {
    margin-top: 1rem;
}

.room-picker-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 1rem;
    align-items: start;
}

.room-picker-summary {
    margin-top: 1rem;
}

.room-summary-control {
    margin-bottom: 0.8rem;
    display: grid;
    gap: 0.35rem;
}

.room-summary-input {
    width: 100%;
    border: 1px solid #cce1f5;
    border-radius: 11px;
    padding: 0.68rem 0.75rem;
    font: inherit;
    color: var(--text);
}

.room-summary-input:focus {
    border-color: #82bcff;
    box-shadow: 0 0 0 4px rgba(76, 157, 247, 0.17);
    outline: none;
}

.room-summary-suggestion {
    margin-bottom: 0.8rem;
    border: 1px solid #d8e9fb;
    border-radius: 12px;
    background: #f6fbff;
    padding: 0.7rem;
}

.room-picker-summary-wrap {
    position: sticky;
    top: 5.8rem;
    align-self: start;
}

.room-summary-grid {
    grid-template-columns: 1fr;
}

.room-validation-note {
    margin: 0.7rem 0 0;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
}

.room-validation-note.is-warning {
    color: #8b4d00;
    background: #fff3e0;
    border: 1px solid #ffd7a4;
}

.room-validation-note.is-ok {
    color: #1d6841;
    background: #e8f9ef;
    border: 1px solid #bce9cc;
}

.room-pick-toggle {
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #2c5680;
    font-weight: 700;
    font-size: 0.85rem;
}

.room-pick-toggle input[type="checkbox"] {
    accent-color: #2b92ff;
    width: 18px;
    height: 18px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: #ebf5ff;
    color: #295f96;
    font-size: 0.76rem;
    font-weight: 700;
}

.price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1f74ca;
}

.helper-panel {
    border: 1px dashed #b6d6f5;
    border-radius: 14px;
    background: #f8fcff;
    padding: 1rem;
}

.selected-apts-list {
    margin: 0.65rem 0 0;
    padding-left: 1rem;
    color: #2e5478;
    display: grid;
    gap: 0.35rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.section-divider {
    margin: 1rem 0;
    border: none;
    border-top: 1px solid var(--line);
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #cfe5fa;
    border-radius: 12px;
    background: #fff;
    padding: 0.85rem;
}

.radio-card input[type="radio"] {
    accent-color: var(--primary);
}

.success-hero {
    border: 1px solid #c4ecd4;
    background: #f0fff5;
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: grid;
    justify-items: start;
    gap: 0.45rem;
}

.success-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(140deg, #40c46f, #26a95b);
}

.site-footer {
    padding: 2rem 0 3rem;
    color: #5d748d;
}

.site-footer .card-padding {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.month-shell {
    border: 1px solid #d8e9fb;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #ffffff, #f8fcff);
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.month-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.month-guest-form {
    min-width: 220px;
}

.month-guest-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.month-guest-inline input {
    width: 88px;
    border: 1px solid #cfe4f8;
    border-radius: 10px;
    padding: 0.55rem 0.6rem;
    font: inherit;
}

.month-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.month-title {
    margin: 0;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.25rem;
    color: #1e4065;
    text-transform: capitalize;
}

.month-legend {
    margin-bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: #466687;
    font-size: 0.82rem;
    font-weight: 600;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-ok {
    background: #33b26e;
}

.dot-low {
    background: #e7a93d;
}

.dot-soldout {
    background: #d46a6a;
}

.month-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    color: #4f6f90;
    font-size: 0.8rem;
    font-weight: 700;
}

.month-weekdays span {
    text-align: center;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.month-day {
    border: 1px solid #d9e9fb;
    border-radius: 12px;
    background: #fff;
    padding: 0.55rem;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.month-day.is-outside {
    opacity: 0.45;
}

.month-day.is-low {
    border-color: #f1cf93;
    background: #fffaf2;
}

.month-day.is-soldout {
    border-color: #f0bcbc;
    background: #fff7f7;
}

.month-day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
}

.day-chip {
    font-size: 0.66rem;
    font-weight: 700;
    color: #5c7390;
    background: #edf5ff;
    border: 1px solid #d3e7fb;
    border-radius: 999px;
    padding: 0.16rem 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.month-day-status {
    margin: 0;
    color: #2e5579;
    font-size: 0.8rem;
    font-weight: 700;
}

.month-day-price {
    margin: 0;
    color: #4f6e8f;
    font-size: 0.78rem;
}

.month-day-price strong {
    color: #1f74ca;
    font-size: 0.9rem;
}

.month-day-capacity {
    margin: 0;
    color: #5a7592;
    font-size: 0.75rem;
}

.btn-day {
    margin-top: auto;
    width: 100%;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    font-size: 0.78rem;
}

.btn-day-disabled {
    margin-top: auto;
    width: 100%;
    font-size: 0.76rem;
    background: #f3dede;
    color: #8f5656;
    cursor: not-allowed;
}

.btn.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.booking-step-button {
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
}

.booking-step-button:hover,
.booking-step-button:focus-visible {
    border-color: #3b9cff;
    color: #fff;
    background: linear-gradient(145deg, #43a0ff, #1d83eb);
    box-shadow: 0 8px 18px rgba(29, 131, 235, 0.26);
    transform: translateY(-1px);
}

.booking-step-button:focus-visible {
    outline: 2px solid #a8d4ff;
    outline-offset: 2px;
}


body.has-modal-open {
    overflow: hidden;
}

.availability-explorer {
    display: grid;
    gap: 0.9rem;
}

.availability-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.availability-month-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-month-title {
    min-width: 220px;
    text-align: center;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.05rem;
    color: #1f4469;
    text-transform: capitalize;
}

.availability-filters {
    border-color: #d5e7f8;
}

.availability-filters-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
}

.availability-filter-actions {
    display: grid;
    gap: 0.45rem;
}

.availability-filter-actions .btn {
    width: 100%;
}

.availability-guide {
    border: 1px solid #d8e9fb;
    border-radius: 12px;
    background: #f7fbff;
    padding: 0.75rem;
    display: grid;
    gap: 0.28rem;
}

.availability-guide p {
    margin: 0;
    color: #416487;
    font-size: 0.84rem;
}

.availability-scroll-actions {
    border: 1px solid #d7e8fa;
    border-radius: 12px;
    background: #f7fbff;
    padding: 0.7rem;
    display: grid;
    gap: 0.45rem;
}

.availability-slider-label {
    color: #31597f;
    font-size: 0.83rem;
    font-weight: 700;
}

.availability-slider-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.6rem;
}

.availability-slider-edge {
    color: #5c7692;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.availability-slider {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    appearance: none;
    background: linear-gradient(90deg, #dceefe, #8bc0f5);
    outline: none;
}

.availability-slider:disabled {
    opacity: 0.5;
}

.availability-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1f7ad0;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 10px rgba(16, 85, 153, 0.3);
    cursor: pointer;
}

.availability-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1f7ad0;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 10px rgba(16, 85, 153, 0.3);
    cursor: pointer;
}

.availability-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid #d7e8fa;
    border-radius: 14px;
    background: #f8fcff;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.availability-scroll.is-dragging {
    cursor: grabbing;
}

.availability-table {
    width: max-content;
    min-width: 100%;
    display: grid;
    gap: 0.35rem;
    padding: 0.45rem;
}

.availability-row {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
}

.availability-room,
.availability-cell {
    border-radius: 10px;
    border: 1px solid #d8e9fb;
    background: #fff;
}

.availability-room {
    flex: 0 0 290px;
    width: 290px;
    padding: 0.6rem;
    display: grid;
    gap: 0.18rem;
    align-content: center;
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 3px 0 12px rgba(21, 73, 124, 0.08);
}

.availability-room strong {
    font-size: 1rem;
    color: #1f3f63;
}

.availability-room span {
    color: #33597e;
    font-size: 0.84rem;
    font-weight: 700;
}

.availability-room small {
    color: #5a7591;
    font-size: 0.74rem;
}

.availability-cell {
    flex: 0 0 142px;
    width: 142px;
    min-height: 102px;
    padding: 0.48rem;
    text-align: left;
}

.availability-row-head .availability-room {
    background: #edf6ff;
    color: #254d74;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.73rem;
}

.availability-day-head {
    background: #edf6ff;
    color: #265078;
    border-color: #cfe5fa;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.availability-day-head:hover {
    background: #e3f2ff;
}

.availability-slot {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    gap: 0.3rem;
    cursor: pointer;
}

.slot-status {
    color: #557392;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
}

.slot-price {
    color: #1a5f9d;
    font-size: 0.95rem;
}

.availability-slot.is-available {
    border-color: #d9e9fa;
    background: #ffffff;
}

.availability-slot.is-occupied {
    border-color: #d4e6f7;
    background: #f7fbff;
    cursor: not-allowed;
}

.availability-slot.is-occupied::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    height: 24px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(145deg, #4ea6af, #2d8b95);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.availability-slot.is-occupied .slot-status,
.availability-slot.is-occupied .slot-price {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.availability-slot.is-range,
.availability-slot.is-range-start,
.availability-slot.is-range-end {
    border-color: #3393ff;
    background: #e7f3ff;
    box-shadow: inset 0 0 0 1px #66aeff;
}

.availability-selection {
    border-color: #d4e7fa;
}

.day-modal[hidden] {
    display: none;
}

.day-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.day-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 41, 67, 0.56);
}

.day-modal-dialog {
    position: relative;
    width: min(920px, calc(100vw - 1.2rem));
    max-height: calc(100vh - 1.2rem);
    margin: 0.6rem auto;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #cfe4f9;
    box-shadow: 0 18px 48px rgba(19, 62, 105, 0.34);
    display: flex;
    flex-direction: column;
}

.day-modal-header {
    padding: 0.8rem;
    border-bottom: 1px solid #d8e9fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.day-modal-title {
    margin: 0;
    font-size: 1.06rem;
    color: #1d4066;
}

.day-modal-list {
    overflow: auto;
    padding: 0.8rem;
    display: grid;
    gap: 0.55rem;
}

.day-modal-empty {
    margin: 0;
    color: #5b7490;
}

.day-room-item {
    border: 1px solid #d6e8fb;
    border-radius: 12px;
    background: #f8fcff;
    padding: 0.7rem;
    display: grid;
    gap: 0.35rem;
}

.day-room-item.is-occupied {
    border-color: #cde2f6;
    background: #f4fbff;
}

.day-room-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.6rem;
}

.day-room-name {
    margin: 0;
    color: #234b73;
    font-size: 0.95rem;
}

.day-room-meta {
    margin: 0;
    color: #5b7693;
    font-size: 0.77rem;
}

.day-room-status {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    color: #355a7f;
}

.day-room-action {
    width: 100%;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    animation: revealUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .header-topline-shell {
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 0.12rem;
        padding: 0.45rem 0;
    }

    .nav-shell {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .brand {
        align-self: start;
    }

    .nav-links {
        width: 100%;
        border-radius: 16px;
        padding: 0.33rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        text-align: center;
        flex: 1 1 auto;
    }

    .home-hero-grid,
    .home-process,
    .hero-inner,
    .grid-2,
    .room-card {
        grid-template-columns: 1fr;
    }

    .room-card {
        align-items: start;
    }

    .search-grid,
    .distribution-grid {
        grid-template-columns: 1fr;
    }

    .room-picker-layout {
        grid-template-columns: 1fr;
    }

    .room-picker-summary-wrap {
        position: static;
    }

    .room-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-kpi-strip {
        grid-template-columns: 1fr;
    }

    .form-row,
    .form-row.cols-3,
    .companion-row {
        grid-template-columns: 1fr;
    }

    .month-header,
    .month-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .month-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .month-weekdays {
        display: none;
    }

    .availability-header,
    .availability-month-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .availability-month-title {
        min-width: 0;
        text-align: left;
    }

    .availability-filters-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .availability-room {
        flex-basis: 230px;
        width: 230px;
    }

    .availability-cell {
        flex-basis: 120px;
        width: 120px;
        min-height: 92px;
    }
}

@media (max-width: 660px) {
    .home-hero-shell {
        padding: 1.1rem;
    }

    .nav-shell {
        padding: 0.55rem 0 0.78rem;
    }

    .header-topline-shell {
        align-items: center;
        text-align: center;
    }

    .header-note {
        font-size: 0.68rem;
    }

    .header-note-aux {
        display: none;
    }

    .brand {
        width: auto;
    }

    .nav-links {
        border-radius: 16px;
    }

    .nav-link {
        flex: 1 1 calc(50% - 0.4rem);
    }

    .nav-cta {
        flex-basis: 100%;
    }

    .hero-inner {
        padding: 1.2rem;
    }

    .card-padding {
        padding: 1rem;
    }

    .month-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .availability-filters-grid {
        grid-template-columns: 1fr;
    }

    .availability-slider-row {
        grid-template-columns: 1fr;
    }

    .availability-slider-edge {
        display: none;
    }

    .availability-room {
        flex-basis: 190px;
        width: 190px;
    }

    .availability-cell {
        flex-basis: 102px;
        width: 102px;
        min-height: 84px;
        padding: 0.34rem;
    }

    .slot-status {
        font-size: 0.67rem;
    }

    .slot-price {
        font-size: 0.81rem;
    }
}