:root {
    --bg: #f7f7f7;
    --text: #222;
    --muted: #6b6b6b;
    --card: #fff;
    --line: #e8e8e8;
    --accent: #e85d5d;
    --accent-dark: #d84c4c;
    --soft: #fff3f1;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.no-scroll {
    overflow: hidden;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lang-nav {
    display: flex;
    gap: 14px;
}

.lang-nav a {
    padding: 8px 10px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.lang-nav a:hover {
    background: #f1f1f1;
}

/* Layout */
.page {
    padding: 28px 0 50px;
}

.main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 380px;
    gap: 24px;
    align-items: start;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hero */
.hero-section {
    margin-bottom: 26px;
}

.hero-text {
    min-height: 430px;
    padding: 42px;
    border-radius: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    background:
        linear-gradient(rgba(22, 22, 22, 0.28), rgba(22, 22, 22, 0.28)),
        url('img/hero.jpg') center/cover no-repeat;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.92;
}

.hero-text h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    max-width: 760px;
}

.lead {
    margin: 0;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.96;
}

/* Cards */
.info-card,
.amenities-card,
.calendar-card,
.booking-card,
.compact-calendar-wrap {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card,
.amenities-card,
.calendar-card,
.compact-calendar-wrap {
    padding: 28px;
}

.info-card h2,
.amenities-card h2,
.calendar-card h2,
.booking-card h2,
.compact-calendar-wrap h2 {
    margin: 0 0 16px;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.info-card p {
    margin: 0;
    color: #404040;
    line-height: 1.75;
    font-size: 17px;
}

.rules-list {
    margin: 0;
    padding-left: 18px;
}

.rules-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Gallery */
.gallery-section {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-main {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
}

.gallery-item,
.gallery-main,
.all-gallery-item {
    display: block;
    overflow: hidden;
    background: #ddd;
}

.gallery-item img,
.gallery-main img,
.all-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-main:hover img,
.all-gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.12), rgba(232, 93, 93, 0.22));
}

.gallery-more span {
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
}

.all-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.all-gallery-item {
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.all-gallery-item img {
    height: 280px;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.amenity {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
}

/* Sections */
.section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

/* Booking */
.booking-card {
    position: sticky;
    top: 96px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.booking-price {
    font-size: 28px;
    font-weight: 700;
}

.booking-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
}

.booking-note {
    font-size: 14px;
    color: var(--muted);
}

.booking-price-note {
    margin: -4px 0 14px;
    font-size: 11px;
    line-height: 1.4;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.field label {
    font-size: 14px;
    font-weight: 700;
}

.field-hint {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
    color: var(--muted);
}

.booking-card input,
.booking-card select {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.booking-card input:focus,
.booking-card select:focus {
    border-color: #bdbdbd;
    box-shadow: 0 0 0 4px rgba(232, 93, 93, 0.08);
}

.price-summary {
    margin: 6px 0 16px;
    padding: 16px;
    border-radius: 14px;
    background: var(--soft);
    font-size: 16px;
    font-weight: 700;
}

.primary-btn {
    width: 100%;
    border: 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.primary-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Checkbox */
.checkbox-inline-field {
    margin-top: 2px;
    margin-bottom: 12px;
}

.checkbox-inline-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.checkbox-inline-label input {
    width: 16px;
    height: 16px;
    margin: 0;
}

/* Calendar large */
.month h3 {
    margin: 0 0 18px;
    font-size: 22px;
    text-transform: capitalize;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-head {
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.calendar-cell {
    min-height: 86px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease;
}

.calendar-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.calendar-cell.blocked {
    background: #fde8e7;
    border-color: #f5b8b4;
    color: #8f2722;
}

.calendar-cell.empty {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.calendar-cell .day {
    font-size: 16px;
    font-weight: 700;
}

.calendar-cell .p {
    font-size: 12px;
    color: #666;
}

/* Compact calendar */
.compact-calendar-wrap {
    padding: 22px;
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.calendar-toolbar h3 {
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
}

.calendar-nav-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.calendar-small {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-small-head {
    padding: 4px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #777;
}

.calendar-small-cell {
    min-height: 54px;
    padding: 6px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.15s ease;
}

.calendar-small-cell:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.calendar-small-cell.blocked {
    background: #fde8e7;
    border-color: #f5b8b4;
    color: #8f2722;
}

.calendar-small-cell.empty {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.calendar-small-day {
    font-size: 13px;
    font-weight: 700;
}

.calendar-small-price {
    font-size: 10px;
    color: #666;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(15, 15, 15, 0.92);
}

.lightbox.is-open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: min(1280px, 94vw);
    max-height: 90vh;
    text-align: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 18px;
    background: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
    margin-top: 14px;
    color: #fff;
    font-size: 15px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    z-index: 4;
}

.lightbox-close {
    top: 16px;
    right: 20px;
    width: 46px;
    height: 46px;
    font-size: 30px;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    font-size: 38px;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

/* Footer */
.site-footer {
    margin-top: 50px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }

    .gallery-main {
        grid-column: 1 / span 2;
        grid-row: 1 / 2;
    }
}

@media (max-width: 900px) {
    .all-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .hero-text {
        min-height: 320px;
        padding: 26px;
        border-radius: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }

    .gallery-main {
        grid-column: auto;
        grid-row: auto;
    }

    .form-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        gap: 6px;
    }

    .calendar-cell {
        min-height: 72px;
        padding: 8px;
    }

    .compact-calendar-wrap {
        padding: 16px;
    }

    .calendar-small-cell {
        min-height: 46px;
        padding: 5px;
    }

    .calendar-small-price {
        font-size: 9px;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .footer-row {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 14px 0;
    }
}

@media (max-width: 640px) {
    .all-gallery-grid {
        grid-template-columns: 1fr;
    }

    .all-gallery-item img {
        height: 220px;
    }
}
.checkbox-inline-field {
    margin-top: 2px;
    margin-bottom: 12px;
}

.checkbox-inline-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.checkbox-inline-label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.date-picker-box {
    border: 1px solid #dcdcdc;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.date-picker-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.date-display-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-display-label {
    font-size: 11px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.date-display-sep {
    color: #999;
    font-size: 18px;
}

.datepicker-panel {
    padding: 14px;
}

.datepicker-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.datepicker-month-label {
    font-weight: 700;
    text-transform: capitalize;
}

.datepicker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.datepicker-head {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #777;
    padding: 4px 0;
}

.datepicker-cell {
    min-height: 42px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: .15s ease;
}

.datepicker-cell:hover {
    background: #f7f7f7;
}

.datepicker-cell.empty {
    border: 0;
    background: transparent;
    cursor: default;
}

.datepicker-cell.blocked {
    background: #fde8e7;
    border-color: #f5b8b4;
    color: #8f2722;
    cursor: not-allowed;
    text-decoration: line-through;
}

.datepicker-cell.start,
.datepicker-cell.end {
    background: #e85d5d;
    border-color: #e85d5d;
    color: #fff;
    font-weight: 700;
}

.datepicker-cell.in-range {
    background: #fff3f1;
    border-color: #ffd4ce;
}

.datepicker-cell.today {
    box-shadow: inset 0 0 0 1px #222;
}

@media (max-width: 680px) {
    .datepicker-cell {
        min-height: 38px;
        font-size: 12px;
    }

    .date-picker-display {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .date-display-sep {
        display: none;
    }
}
.map-embed {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    display: block;
    width: 100%;
}
.datepicker-cell {
    min-height: 54px;
    padding: 4px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    cursor: pointer;
    transition: .15s ease;
}

.datepicker-cell > span,
.datepicker-cell > div {
    width: 100%;
}

.datepicker-cell .dp-day-num,
.datepicker-cell .dp-day-price {
    display: block;
    text-align: center;
}

.dp-day-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.dp-day-num {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.dp-day-price {
    display: block;
    font-size: 10px;
    line-height: 1;
    color: #666;
}

.datepicker-cell {
    min-height: 54px;
    padding: 6px 4px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .15s ease;
}

.datepicker-cell.start .dp-day-price,
.datepicker-cell.end .dp-day-price,
.datepicker-cell.blocked .dp-day-price {
    color: inherit;
}
.map-canvas {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-canvas .leaflet-control-zoom {
    border: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.map-canvas .leaflet-control-zoom a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: #222;
    font-weight: 700;
}

.map-canvas .leaflet-popup-content-wrapper {
    border-radius: 12px;
}

@media (max-width: 680px) {
    .map-canvas {
        height: 320px;
    }
}
.notice {
    margin: 20px auto 0;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: var(--shadow);
}

.notice-success {
    background: #eef9f0;
    border: 1px solid #cfe8d3;
    color: #25633a;
}

.notice-warning {
    background: #fff7e8;
    border: 1px solid #f0d9a7;
    color: #8a6512;
}