:root {
    --navy: #0f1a31;
    --navy-soft: #1a2740;
    --navy-muted: #2b3952;
    --orange: #e47b00;
    --orange-dark: #bd6400;
    --orange-pale: #fff2e0;
    --green: #1d9a59;
    --red: #c83b3b;
    --ink: #17233a;
    --muted: #66758f;
    --line: #dbe3ee;
    --surface: #ffffff;
    --background: #f3f6fa;
    --shadow: 0 18px 45px rgba(15, 26, 49, 0.1);
    --radius: 22px;
    --font-heading: "Outfit", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 12%, rgba(228, 123, 0, 0.08), transparent 26rem),
        linear-gradient(180deg, #eef2f7 0, var(--background) 31rem);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(15, 26, 49, 0.1);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.nav-wrapper {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 28px;
}

.logo-text {
    display: flex;
    min-width: 230px;
    flex-direction: column;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.05;
}

.logo-text span {
    margin-top: 6px;
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-link:hover {
    color: var(--orange);
}

.header-phone {
    white-space: nowrap;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 13px;
    padding: 0 22px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 9px 20px rgba(228, 123, 0, 0.24);
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-primary:disabled {
    transform: none;
    background: #9ba6b7;
    box-shadow: none;
    cursor: not-allowed;
}

.nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 4px;
    background: var(--navy);
}

.booking-hero {
    padding: 74px 0 40px;
}

.booking-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 50px;
    align-items: end;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    border: 1px solid rgba(228, 123, 0, 0.22);
    border-radius: 999px;
    padding: 7px 14px;
    background: var(--orange-pale);
    color: var(--orange-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.booking-hero h1 span {
    color: var(--orange);
}

.booking-hero-copy {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.help-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 27px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.help-card strong {
    display: block;
    margin-bottom: 7px;
    font-family: var(--font-heading);
    font-size: 1.18rem;
}

.help-card p {
    margin: 0 0 18px;
    color: #b9c3d3;
    font-size: 0.9rem;
}

.help-card a {
    color: #fff;
    font-weight: 800;
}

.booking-shell {
    padding: 20px 0 90px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.booking-card,
.summary-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.booking-card {
    overflow: hidden;
}

.booking-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    background: #fafbfd;
}

.progress-step {
    position: relative;
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #8490a3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.progress-step:not(:last-child)::after {
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: var(--line);
    content: "";
}

.progress-number {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    background: #e8edf4;
    color: var(--navy);
}

.progress-step.active {
    color: var(--navy);
}

.progress-step.active .progress-number {
    background: var(--orange);
    color: #fff;
}

.booking-form {
    padding: 38px;
}

.form-section + .form-section {
    margin-top: 42px;
    border-top: 1px solid var(--line);
    padding-top: 38px;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 26px;
}

.section-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--orange-pale);
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 800;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.2;
}

.section-heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

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

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

.field label,
.fieldset-label {
    display: block;
    margin-bottom: 8px;
    color: #526078;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfd8e5;
    border-radius: 12px;
    outline: none;
    background: #fbfcfe;
    color: var(--ink);
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
    height: 54px;
    padding: 0 15px;
}

.field textarea {
    min-height: 118px;
    padding: 14px 15px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(228, 123, 0, 0.12);
}

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

.apartment-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.apartment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.apartment-option-body {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #cfd8e5;
    border-radius: 14px;
    padding: 16px;
    background: #fbfcfe;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.apartment-option input:checked + .apartment-option-body {
    transform: translateY(-1px);
    border-color: var(--orange);
    background: var(--orange-pale);
    box-shadow: 0 0 0 3px rgba(228, 123, 0, 0.12);
}

.apartment-option strong,
.apartment-option small {
    display: block;
}

.apartment-option strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.08rem;
}

.apartment-option small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.72rem;
}

.capacity-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 5px 9px;
    background: #fff;
    color: var(--orange-dark);
    font-size: 0.68rem;
    font-weight: 800;
}

.calendar-panel {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 20px;
    background: #fbfcfe;
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.calendar-title {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: capitalize;
}

.calendar-nav {
    display: flex;
    gap: 7px;
}

.calendar-nav button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    font-size: 1.2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-weekday {
    padding: 6px 0;
    color: #8b97a9;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.calendar-day {
    position: relative;
    display: grid;
    min-height: 45px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
}

.calendar-day:hover:not(:disabled) {
    background: var(--orange-pale);
}

.calendar-day.is-start,
.calendar-day.is-end {
    background: var(--orange);
    color: #fff;
}

.calendar-day.is-range {
    border-radius: 4px;
    background: #fff0dc;
    color: var(--orange-dark);
}

.calendar-day:disabled,
.calendar-day.is-past {
    color: #c4cad3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.is-unavailable {
    background: #f3f4f6;
}

.calendar-empty {
    visibility: hidden;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.72rem;
}

.legend-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--green);
}

.legend-dot.unavailable {
    background: #b7bec9;
}

.status-message {
    display: none;
    margin-top: 18px;
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-message.show {
    display: block;
}

.status-message.info {
    background: #edf4ff;
    color: #275792;
}

.status-message.error {
    background: #fff0f0;
    color: var(--red);
}

.status-message.success {
    background: #e9f8f0;
    color: #147a45;
}

.apartment-results {
    margin-top: 20px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.apartment-results[hidden] {
    display: none;
}

.results-heading > span {
    color: var(--orange-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.results-heading h3 {
    margin: 5px 0 5px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.results-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

.apartment-results-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.result-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 26, 49, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    border-color: #efbd78;
    box-shadow: 0 14px 30px rgba(15, 26, 49, 0.1);
}

.result-card.selected {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(228, 123, 0, 0.13), 0 14px 30px rgba(15, 26, 49, 0.1);
}

.result-card > img {
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.result-card-content {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.result-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.result-card h4,
.result-card p {
    margin: 0;
}

.result-card h4 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.result-card p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.7rem;
}

.result-capacity {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 5px 8px;
    background: var(--orange-pale);
    color: var(--orange-dark);
    font-size: 0.62rem;
    font-weight: 800;
}

.result-price {
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.result-price > span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.result-price > strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.result-price > small {
    color: var(--muted);
    font-size: 0.64rem;
}

.result-select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--orange);
    border-radius: 10px;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease;
}

.result-select:hover,
.result-select:focus-visible {
    background: var(--orange-dark);
}

.result-card.selected .result-select {
    background: #e9f8f0;
    border-color: #8bd4ad;
    color: #147a45;
}

.results-empty {
    grid-column: 1 / -1;
    display: grid;
    gap: 5px;
    margin: 0;
    border-radius: 12px;
    padding: 15px;
    background: #f5f7fa;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.results-empty strong {
    color: var(--navy);
}

.availability-alternatives {
    margin-top: 18px;
    border: 1px solid #f3c98e;
    border-radius: 16px;
    padding: 20px;
    background: #fffaf2;
}

.availability-alternatives[hidden] {
    display: none;
}

.alternatives-heading > span {
    color: var(--orange-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.alternatives-heading h3 {
    margin: 5px 0 4px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.alternatives-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.alternative-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.alternative-card {
    display: grid;
    gap: 8px;
    border: 1px solid #e5d5bd;
    border-radius: 13px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 26, 49, 0.05);
}

.alternative-card-badge {
    color: var(--orange-dark);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.alternative-card h4,
.alternative-card p {
    margin: 0;
}

.alternative-card h4 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.alternative-card p {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.5;
}

.alternative-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 2px;
}

.alternative-price {
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.alternative-select {
    border: 1px solid var(--orange);
    border-radius: 9px;
    padding: 8px 11px;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
}

.alternative-select:hover,
.alternative-select:focus-visible {
    background: var(--orange-dark);
}

.alternative-empty {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.customer-type {
    display: flex;
    gap: 10px;
}

.radio-pill {
    position: relative;
    flex: 1;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
}

.radio-pill span {
    display: grid;
    min-height: 50px;
    place-items: center;
    border: 1px solid #cfd8e5;
    border-radius: 12px;
    background: #fbfcfe;
    cursor: pointer;
    font-weight: 800;
}

.radio-pill input:checked + span {
    border-color: var(--orange);
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.privacy-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.8rem;
}

.privacy-row input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--orange);
}

.privacy-row a {
    color: var(--orange-dark);
    font-weight: 800;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.submit-note {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.summary-card {
    position: sticky;
    top: 95px;
    overflow: hidden;
}

.summary-image {
    height: 170px;
    background: url("../junior/galerie/junior-apartment-schlafzimmer-doppelbett-sofa.jpg") center/cover;
}

.summary-content {
    padding: 25px;
}

.summary-kicker {
    margin: 0 0 5px;
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.summary-card h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.summary-address {
    margin: 4px 0 20px;
    color: var(--muted);
    font-size: 0.82rem;
}

.summary-list {
    margin: 0;
    border-top: 1px solid var(--line);
}

.summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    font-size: 0.82rem;
}

.summary-row dt {
    color: var(--muted);
}

.summary-row dd {
    margin: 0;
    color: var(--navy);
    text-align: right;
    font-weight: 800;
}

.price-box {
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 18px;
    background: #f1f5f4;
    color: var(--navy);
}

.price-row,
.price-total-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.price-row {
    padding: 9px 0;
    font-size: 0.77rem;
}

.price-row > span {
    min-width: 0;
}

.price-row > strong {
    flex: 0 0 auto;
    font-size: 0.82rem;
}

.price-row strong,
.price-row small {
    display: block;
}

.price-row small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.65rem;
}

.price-row.is-discount,
.price-row.is-discount small {
    color: #15803d;
}

.price-total-row {
    align-items: center;
    margin-top: 8px;
    border-top: 1px solid #d7dfde;
    padding-top: 14px;
    font-size: 0.92rem;
    font-weight: 700;
}

.price-value {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.price-hint {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.5;
}

.price-trust-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    border-top: 1px solid #d7dfde;
    padding: 13px 0 0;
    list-style: none;
}

.price-trust-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 7px;
    align-items: start;
    color: #35506a;
    font-size: 0.68rem;
    line-height: 1.4;
}

.price-trust-list li > span {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: #ddf5e8;
    color: #15803d;
    font-size: 0.68rem;
    font-weight: 900;
}

.success-panel {
    display: none;
    padding: 64px 38px;
    text-align: center;
}

.success-panel.show {
    display: block;
}

.success-check {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    background: #e7f7ef;
    color: var(--green);
    font-size: 2rem;
    font-weight: 800;
}

.success-panel h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.success-panel p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 42px 0;
    background: var(--navy);
    color: #aeb8c8;
    font-size: 0.8rem;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        right: 0;
        bottom: 0;
        width: min(360px, 90vw);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        transform: translateX(105%);
        padding: 30px;
        background: var(--navy);
        box-shadow: -20px 20px 40px rgba(15, 26, 49, 0.2);
        transition: transform 0.25s ease;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link,
    .header-phone {
        color: #fff;
    }

    .booking-hero-grid,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .help-card {
        max-width: 520px;
    }

    .summary-card {
        position: static;
        display: grid;
        grid-template-columns: 260px 1fr;
    }

    .summary-image {
        height: 100%;
        min-height: 290px;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .logo-text {
        min-width: 0;
        font-size: 1.02rem;
    }

    .booking-hero {
        padding-top: 45px;
    }

    .booking-hero h1 {
        font-size: clamp(2.5rem, 13vw, 3.5rem);
    }

    .booking-progress {
        grid-template-columns: 1fr;
        padding: 13px 18px;
    }

    .progress-step {
        display: none;
        min-height: 44px;
        justify-content: flex-start;
    }

    .progress-step.active {
        display: flex;
    }

    .booking-form {
        padding: 25px 18px;
    }

    .form-grid,
    .apartment-choice {
        grid-template-columns: 1fr;
    }

    .apartment-results-list {
        grid-template-columns: 1fr;
    }

    .alternative-list {
        grid-template-columns: 1fr;
    }

    .calendar-panel {
        margin-right: -5px;
        margin-left: -5px;
        padding: 13px;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        min-height: 40px;
    }

    .submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-row .btn {
        width: 100%;
    }

    .summary-card {
        display: block;
    }

    .summary-image {
        height: 190px;
        min-height: 0;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
