@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #fffaf4;
    --bg-soft: #f8efe5;
    --paper: #ffffff;
    --paper-warm: #fff6ec;
    --text: #35271f;
    --muted: #75665d;
    --line: #ead9c8;
    --primary: #b97855;
    --primary-dark: #8f583d;
    --primary-soft: #f1d5c4;
    --green: #5f7f54;
    --green-soft: #eaf3e7;
    --danger-soft: #fae3d9;
    --shadow: 0 24px 70px rgba(91, 56, 38, 0.12);
    --radius: 26px;
    --radius-sm: 16px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(241, 213, 196, 0.55), transparent 34rem),
        linear-gradient(180deg, var(--bg), #fffefe 56%, var(--bg-soft));
    line-height: 1.6;
}

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

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

.container {
    width: min(var(--container), calc(100% - 38px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 244, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(234, 217, 200, 0.8);
}

.navbar {
    width: min(var(--container), calc(100% - 38px));
    margin-inline: auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    min-width: 58px;
    height: 42px;
    padding: 0 12px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    box-shadow: inset 0 0 0 1px rgba(185, 120, 85, 0.16);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.brand-mark img {
    width: 100%;
    max-width: 38px;
    height: 28px;
    object-fit: contain;
    display: block;
}

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

.brand strong {
    line-height: 1.2;
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.94rem;
    transition: 180ms ease;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(241, 213, 196, 0.48);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 4px;
}

.section {
    padding: 86px 0;
}

.hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding-top: 74px;
    padding-bottom: 92px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: clamp(36px, 6vw, 82px);
}

.hero-copy {
    max-width: 760px;
    justify-self: end;
}


.hero-logo-layout {
    position: relative;
}

.hero-logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-frame {
    width: min(100%, 470px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
}

.hero-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 70px rgba(91, 56, 38, 0.12));
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 5.4vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.hero-text,
.section-description,
.contact-card p {
    color: var(--muted);
    font-size: 1.04rem;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 30px;
}

.rich-content > *:last-child {
    margin-bottom: 0;
}

.rich-content p {
    margin: 0 0 0.75rem;
}

.rich-content h3,
.rich-content h4 {
    margin: 0.7rem 0 0.35rem;
    color: var(--text);
    letter-spacing: 0;
}

.rich-content ul,
.rich-content ol {
    margin: 0.45rem 0 0.75rem;
    padding-left: 1.15rem;
}

.rich-content a {
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 19px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 34px rgba(143, 88, 61, 0.22);
}

.btn-soft {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.btn-full {
    width: 100%;
}

.section-heading {
    max-width: 710px;
    margin-bottom: 36px;
}

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

.service-card {
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 42px rgba(91, 56, 38, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.service-card p,
.service-description {
    color: var(--muted);
    margin-bottom: 0;
}

.booking-section {
    position: relative;
}

.booking-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.booking-heading h2 {
    margin-bottom: 0;
}

.booking-heading p {
    margin-bottom: 4px;
}

.booking-system {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px 390px;
    gap: 18px;
    align-items: stretch;
}

.booking-panel {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.panel-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    margin-bottom: 18px;
}

.panel-topline strong {
    font-size: 1.02rem;
}

.panel-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.calendar {
    min-width: 0;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--paper-warm);
    border: 1px solid var(--line);
}

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

.calendar-header strong {
    text-align: center;
    font-size: 1.1rem;
}

.calendar-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--primary-dark);
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
    transition: 180ms ease;
}

.calendar-btn:hover {
    background: var(--primary-soft);
}

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

.calendar-weekdays {
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.78rem;
}

.day {
    position: relative;
    min-width: 0;
    min-height: 72px;
    border: 1px solid transparent;
    border-radius: 17px;
    background: rgba(255,255,255,0.72);
    color: var(--text);
    cursor: pointer;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    padding: 8px 4px;
    transition: 170ms ease;
}

.day:hover:not(:disabled) {
    border-color: rgba(185, 120, 85, 0.42);
    transform: translateY(-1px);
}

.day:disabled {
    opacity: 0.42;
    cursor: pointer;
}

.day.is-empty {
    visibility: hidden;
    pointer-events: none;
}

.day.is-today {
    border-color: var(--primary);
}

.day.has-reservation {
    background: #fff0e8;
    border-color: rgba(185, 120, 85, 0.22);
}

.day.is-selected {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 26px rgba(143, 88, 61, 0.22);
}

.day-number {
    display: block;
    font-weight: 900;
    line-height: 1;
}

.day-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(185, 120, 85, 0.13);
    color: var(--primary-dark);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.day.is-selected .day-status {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

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

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

.legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.legend-free {
    background: var(--green);
}

.legend-busy {
    background: var(--primary);
}

.day-panel {
    display: flex;
    flex-direction: column;
}

.selected-date {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--paper-warm);
    border: 1px solid var(--line);
    color: var(--primary-dark);
    font-weight: 900;
}

.selected-date-large {
    margin-bottom: 14px;
}

.day-reservations {
    display: grid;
    gap: 10px;
    flex: 1;
    min-height: 220px;
}

.slot-card {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid rgba(185, 120, 85, 0.22);
    border-radius: 18px;
    background: #fff8f2;
}

.slot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.slot-time {
    color: var(--primary-dark);
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.slot-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--danger-soft);
    color: #9b563e;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.slot-service {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.empty-state {
    min-height: 190px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 8px;
    padding: 22px;
    border: 1px dashed rgba(185, 120, 85, 0.34);
    border-radius: 22px;
    background: rgba(255, 246, 236, 0.72);
}

.empty-state span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
}

.empty-state strong {
    font-size: 1rem;
}

.empty-state p {
    max-width: 250px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.calm-box {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(118, 150, 107, 0.22);
    border-radius: var(--radius-sm);
    background: var(--green-soft);
    color: #3d5638;
}

.calm-box.compact {
    margin-top: 16px;
    padding: 15px;
}

.calm-box span {
    color: #5d7157;
    font-size: 0.9rem;
}

.booking-form {
    display: grid;
    align-content: start;
    gap: 13px;
}

.form-grid {
    display: grid;
    gap: 12px;
}

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

.time-grid {
    align-items: end;
}

label {
    display: grid;
    gap: 6px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    background: #fff;
    color: var(--text);
    padding: 12px 13px;
    transition: border 160ms ease, box-shadow 160ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(185, 120, 85, 0.72);
    box-shadow: 0 0 0 4px rgba(185, 120, 85, 0.12);
}

.checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.86rem;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-message {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.form-message.is-success {
    color: #4f7f43;
}

.form-message.is-error {
    color: #a64a36;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255,255,255,0.76);
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin-bottom: 10px;
}

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

.contact-list {
    display: grid;
    gap: 10px;
    min-width: 260px;
}

.contact-list a,
.contact-list span {
    display: block;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-warm);
    color: var(--primary-dark);
    font-weight: 800;
    text-align: center;
}

.site-footer {
    padding: 30px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .booking-system {
        grid-template-columns: minmax(0, 1fr) 370px;
    }

    .calendar-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1040px) {
    .hero-grid,
    .booking-heading {
        grid-template-columns: 1fr;
    }

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

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

    .hero-logo-frame {
        width: min(100%, 360px);
    }
}

@media (max-width: 820px) {
    .booking-system {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .section {
        padding: 62px 0;
    }

    .navbar {
        min-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 19px;
        right: 19px;
        top: 76px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-links a {
        border-radius: 14px;
    }

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

    .service-card {
        min-height: auto;
    }

    .booking-panel,
    .calendar,
    .contact-card {
        padding: 17px;
    }

    .calendar-days,
    .calendar-weekdays {
        gap: 5px;
    }

    .day {
        min-height: 58px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .day-status {
        font-size: 0.55rem;
        padding-inline: 5px;
    }

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

    .contact-list {
        min-width: 0;
    }
}

/* Clean reservation calendar rework */
.simple-heading {
    align-items: center;
}

.booking-system-clean {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: start;
    gap: 22px;
}

.clean-panel-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.clean-panel-title span {
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clean-panel-title strong {
    font-size: 1.18rem;
    line-height: 1.15;
}

.calendar-large {
    padding: 26px;
    overflow: visible;
}

.calendar-large .calendar-header {
    margin-bottom: 24px;
}

.calendar-large .calendar-header strong {
    font-size: 1.25rem;
}

.calendar-large .calendar-weekdays,
.calendar-large .calendar-days {
    gap: 10px;
    overflow: visible;
}

.calendar-large .day {
    isolation: isolate;
    min-height: 66px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    overflow: visible;
}

.calendar-large .day:hover:not(:disabled) {
    z-index: 30;
}

.calendar-large .day.has-reservation {
    background: #fffdf9;
    border-color: rgba(185, 120, 85, 0.18);
}

.calendar-large .day.is-selected {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.day-dot {
    width: 7px;
    height: 7px;
    display: block;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(185, 120, 85, 0.14);
}

.day.is-selected .day-dot {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.day-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 99;
    width: max-content;
    min-width: 230px;
    max-width: min(310px, 82vw);
    display: grid;
    gap: 8px;
    padding: 13px;
    border: 1px solid rgba(185, 120, 85, 0.25);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(91, 56, 38, 0.18);
    color: var(--text);
    text-align: left;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: 160ms ease;
}

.day-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(185, 120, 85, 0.25);
    border-bottom: 1px solid rgba(185, 120, 85, 0.25);
    background: rgba(255, 255, 255, 0.98);
    transform: translate(-50%, -6px) rotate(45deg);
}

.day.has-reservation:hover .day-tooltip,
.day.has-reservation:focus-visible .day-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.tooltip-title {
    padding-bottom: 7px;
    border-bottom: 1px solid var(--line);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.tooltip-row {
    display: block;
}

.tooltip-time-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.tooltip-row strong {
    font-size: 0.98rem;
    line-height: 1.1;
    color: var(--text);
    white-space: nowrap;
}

.tooltip-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 5px 9px;
    border: 1px solid rgba(185, 120, 85, 0.22);
    border-radius: 999px;
    background: rgba(241, 213, 196, 0.78);
    color: var(--primary-dark);
    font-size: 0.66rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tooltip-more {
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
}

.selected-date-form {
    margin-bottom: 2px;
}

.booking-form-clean {
    gap: 15px;
}

@media (max-width: 1180px) {
    .booking-system-clean {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .booking-system-clean .calendar-panel {
        grid-column: auto;
    }
}

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

@media (max-width: 720px) {
    .calendar-large {
        padding: 17px;
    }

    .calendar-large .calendar-weekdays,
    .calendar-large .calendar-days {
        gap: 6px;
    }

    .calendar-large .day {
        min-height: 56px;
        border-radius: 14px;
    }

    .day-tooltip {
        min-width: 210px;
    }
}

.day.is-past {
    opacity: 0.48;
    cursor: pointer;
}

.day.is-past.has-reservation {
    opacity: 0.76;
}

.day.is-past:hover {
    transform: none;
}


@media (max-width: 720px) {
    .hero {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 66px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-logo-frame {
        width: min(100%, 280px);
    }

    .hero-copy {
        text-align: left;
    }
}


.legend-vacation,
.day-dot-vacation {
    background: #7f6fb3;
}

.day-dot-vacation {
    position: relative;
    margin-left: 4px;
}

.day.has-vacation {
    border-color: rgba(127, 111, 179, 0.24);
}

.day.has-vacation.is-selected {
    box-shadow: 0 12px 26px rgba(127, 111, 179, 0.18);
}

.tooltip-status-vacation {
    border-color: rgba(127, 111, 179, 0.2);
    background: rgba(127, 111, 179, 0.13);
    color: #5b4f8f;
}

.selected-date.has-vacation {
    border-color: rgba(127, 111, 179, 0.26);
    background: #f3f0ff;
    color: #5b4f8f;
}

.day.has-reservation.has-vacation .day-dot,
.day.has-reservation.has-vacation .day-dot-vacation {
    display: inline-block;
}


.day.is-vacation-day {
    cursor: pointer;
    background: #f3f0ff;
}

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

.day.is-vacation-day .day-number {
    color: #5b4f8f;
}


.vacation-lock-box {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border: 1px solid rgba(127, 111, 179, 0.25);
    border-radius: 16px;
    background: #f3f0ff;
    color: #5b4f8f;
    font-weight: 800;
}

.vacation-lock-box[hidden] {
    display: none;
}

.vacation-lock-box strong {
    font-size: 0.94rem;
    line-height: 1.2;
}

.vacation-lock-box span {
    color: #6a6094;
    font-size: 0.9rem;
    line-height: 1.45;
}

.booking-form.is-vacation-locked input:not([type="hidden"]),
.booking-form.is-vacation-locked select,
.booking-form.is-vacation-locked textarea,
.booking-form.is-vacation-locked button[type="submit"] {
    opacity: 0.55;
    cursor: not-allowed;
}

.booking-form.is-vacation-locked button[type="submit"] {
    box-shadow: none;
}


/* Minimal vacation lock state */
.vacation-lock-box,
.vacation-lock-box[hidden] {
    display: none !important;
}

.selected-date.has-vacation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-color: rgba(127, 111, 179, 0.26);
    background: #f3f0ff;
    color: #5b4f8f;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-form.is-vacation-locked .form-message {
    display: none;
}

html, body { max-width: 100%; overflow-x: hidden; }


@media (display-mode: standalone) {
    .site-header {
        padding-top: env(safe-area-inset-top);
    }
}
