:root {
    --bg: #f6f1e8;
    --card: #fffdf9;
    --text: #2f2a26;
    --muted: #6f655c;
    --accent: #9f6b3d;
    --accent-dark: #7f522c;
    --line: #e4d7c7;
    --shadow: 0 12px 32px rgba(44, 31, 16, 0.08);
    --radius: 18px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: 74vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,12,10,.35), rgba(15,12,10,.55));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 0;
    max-width: 760px;
}

.badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(4px);
    font-size: 14px;
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    /*font-family: 'Playfair Display', Georgia, serif;*/
    font-family: Georgia, serif;
    font-size: clamp(42px, 7vw, 76px);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    text-wrap: balance;
}

h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 18px;
}

h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.lead {
    font-size: clamp(18px, 2.4vw, 24px);
    max-width: 650px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: .2s ease;
    border: 0;
    cursor: pointer;
}

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

.btn-primary {
    background: #fff;
    color: var(--text);
}

.btn-secondary {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
}

.btn-solid {
    background: var(--accent);
    color: #fff;
}

    .btn-solid:hover {
        background: var(--accent-dark);
    }

.hero-note {
    color: rgba(255,255,255,.88);
}

.topnav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(246,241,232,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 14px 0;
    white-space: nowrap;
}

    .nav-inner a {
        color: var(--muted);
        font-weight: 600;
    }

        .nav-inner a:hover {
            color: var(--text);
        }

section {
    padding: 72px 0;
}

.section-light {
    background: #fbf7f1;
}

.section-gallery {
    background: #f2ebe0;
}

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.facts ul, .availability-list {
    margin: 0;
    padding-left: 18px;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.image-stack {
    display: grid;
    gap: 18px;
}

    .image-stack img,
    .gallery img {
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

.section-head {
    margin-bottom: 26px;
}

    .section-head p {
        margin: 0;
        color: var(--muted);
    }

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

    .gallery a {
        display: block;
    }

    .gallery img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: transform .25s ease;
    }

    .gallery a:hover img {
        transform: scale(1.02);
    }

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

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

    .price-table th {
        font-size: 14px;
        color: var(--muted);
    }

.small-note {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 0;
}

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

    .calculator .calc-grid div {
        padding: 16px;
        border-radius: 14px;
        background: #f8f2ea;
        border: 1px solid var(--line);
    }

.calculator span {
    display: inline-block;
    margin-top: 6px;
    font-size: 22px;
    font-weight: bold;
    color: var(--accent-dark);
}

.alert,
.form-status {
    padding: 14px 16px;
    border-radius: 14px;
}

.alert {
    background: #fff6e8;
    border: 1px solid #e8cf9d;
}

.form-status {
    margin-top: 18px;
}

    .form-status.success {
        background: #edf9ef;
        border: 1px solid #b9e0be;
    }

    .form-status.error {
        background: #fff1ef;
        border: 1px solid #edb8af;
    }

.availability-list li {
    margin-bottom: 10px;
}

.contact-box em {
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.field label {
    font-weight: 600;
}

.input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    font: inherit;
    color: var(--text);
}

    .input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(159, 107, 61, 0.12);
    }

.textarea {
    resize: vertical;
    min-height: 130px;
}

.select-input {
    appearance: none;
}

.form-actions {
    margin-top: 18px;
}

.footer {
    background: #2b2723;
    color: rgba(255,255,255,.9);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
}

@media (max-width: 980px) {
    .two-col,
    .pricing-cards,
    .calculator .calc-grid,
    .gallery {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    section {
        padding: 56px 0;
    }

    .gallery,
    .pricing-cards,
    .calculator .calc-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 66vh;
    }
}


.free-periods {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.free-period-card {
    background: #f6f2ea;
    border: 1px solid #ddd2bf;
    border-radius: 16px;
    padding: 18px 20px;
    min-width: 240px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.free-period-badge {
    display: inline-block;
    background: #6f8b5e;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.free-period-dates {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #2f2a24;
}

.free-period-nights {
    font-size: 15px;
    color: #6a6257;
}

.free-period-link {
    display: inline-block;
    margin-top: 12px;
    color: #6f8b5e;
    font-weight: 700;
    text-decoration: none;
}

    .free-period-link:hover {
        text-decoration: underline;
    }