:root {
    --ink: #17211c;
    --muted: #5d6862;
    --paper: #fbfcfa;
    --surface: #ffffff;
    --line: #dce4de;
    --forest: #1f6b4a;
    --forest-dark: #164a35;
    --sun: #f4b63d;
    --lake: #2f6f91;
    --clay: #bd5d3a;
    --shadow: 0 18px 45px rgba(18, 32, 24, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a {
    color: var(--forest);
}

img {
    max-width: 100%;
}

.btn {
    --bs-btn-border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-weight: 700;
    min-height: 2.5rem;
}

.btn-primary {
    --bs-btn-bg: var(--forest);
    --bs-btn-border-color: var(--forest);
    --bs-btn-hover-bg: var(--forest-dark);
    --bs-btn-hover-border-color: var(--forest-dark);
    --bs-btn-active-bg: var(--forest-dark);
    --bs-btn-active-border-color: var(--forest-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--forest);
    --bs-btn-border-color: var(--forest);
    --bs-btn-hover-bg: var(--forest);
    --bs-btn-hover-border-color: var(--forest);
}

.site-nav {
    min-height: 70px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 228, 222, .75);
    backdrop-filter: blur(14px);
}

.navbar-brand {
    font-weight: 900;
    color: var(--forest-dark);
}

.navbar-toggler {
    border-radius: 6px;
}

.nav-link {
    color: var(--ink);
    font-weight: 650;
}

.nav-action {
    width: 100%;
}

.language-form {
    min-width: 9.5rem;
}

.language-select {
    border-color: #c8d5ce;
    border-radius: 6px;
    font-weight: 700;
}

.hero-section {
    position: relative;
    min-height: min(720px, calc(100svh - 92px));
    margin-top: 70px;
    display: flex;
    align-items: center;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 18, 12, .82), rgba(7, 18, 12, .35) 54%, rgba(7, 18, 12, .12));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.eyebrow,
.section-kicker {
    margin: 0 0 .75rem;
    color: var(--sun);
    font-size: .88rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0;
    font-size: 4rem;
    line-height: 1.04;
    font-weight: 900;
}

.hero-copy {
    max-width: 680px;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, .94);
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

.quick-facts {
    margin-top: -56px;
    position: relative;
    z-index: 3;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.fact-grid > div {
    min-height: 122px;
    padding: 1.15rem;
    display: grid;
    gap: .3rem;
    align-content: center;
    background: var(--surface);
}

.fact-grid i {
    color: var(--lake);
    font-size: 1.25rem;
}

.fact-grid strong {
    font-size: 1rem;
}

.fact-grid span {
    color: var(--muted);
    font-size: .95rem;
}

.content-section {
    padding: 5rem 0;
}

.content-section h2 {
    max-width: 760px;
    margin: 0 0 1rem;
    font-size: 2.2rem;
    line-height: 1.18;
    font-weight: 850;
}

.content-section p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-image {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-section,
.price-section {
    background: #f1f6f2;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: .85rem;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    background: #d8e0da;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .32s ease, filter .32s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.gallery-item::after {
    content: "\f00e";
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(15, 28, 20, .68);
    border-radius: 999px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    opacity: 0;
    transform: translateY(.25rem);
    transition: opacity .2s ease, transform .2s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.equipment-section {
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.feature-card {
    min-height: 88px;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbf9;
}

.feature-card i {
    flex: 0 0 auto;
    width: 1.55rem;
    height: 1.55rem;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--forest);
    border-radius: 999px;
    font-size: .78rem;
}

.price-list {
    display: grid;
    gap: .65rem;
    margin: 1.2rem 0 1.6rem;
    padding: 0;
    list-style: none;
}

.price-list li {
    padding: .85rem 1rem;
    border-left: 4px solid var(--sun);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(24, 44, 32, .07);
}

.location-section {
    background: #ffffff;
}

.contact-section {
    background: #eaf2f5;
}

.contact-address {
    margin: 1.2rem 0;
    color: var(--muted);
    font-style: normal;
}

.contact-form {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.anti-spam-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-control {
    border-radius: 6px;
    border-color: #ccd7d0;
}

.form-control:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 .2rem rgba(31, 107, 74, .16);
}

.form-status {
    min-height: 1.5rem;
    margin-top: .75rem;
    font-weight: 750;
}

.form-status.success {
    color: var(--forest-dark);
}

.form-status.error {
    color: #a52824;
}

.site-footer {
    padding: 1.5rem 0;
    background: var(--ink);
    color: #fff;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1080;
    width: min(760px, calc(100% - 2rem));
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    margin-bottom: .25rem;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: .5rem;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-link {
    padding: 0;
    color: #fff;
    background: none;
    border: 0;
    text-decoration: underline;
}

.availability-modal .modal-header {
    align-items: flex-start;
}

.calendar-legend {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-weight: 750;
}

.legend-dot {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    margin-right: .35rem;
    border-radius: 999px;
}

.legend-dot.free {
    background: #dff2e5;
    border: 1px solid #93caa4;
}

.legend-dot.booked {
    background: #f4d4c7;
    border: 1px solid #d98765;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.month-panel {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.month-panel h3 {
    margin: 0 0 .75rem;
    font-size: 1.05rem;
    font-weight: 850;
}

.weekday-row,
.day-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .28rem;
}

.weekday-row {
    margin-bottom: .35rem;
}

.weekday-row span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
}

.day-cell {
    min-height: 36px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 800;
}

.day-cell.free {
    background: #e8f6ec;
    color: #1e6b3c;
}

.day-cell.booked {
    background: #f8d7ca;
    color: #873c26;
}

.day-cell.today {
    outline: 2px solid var(--lake);
    outline-offset: 1px;
}

.day-cell.empty {
    background: transparent;
}

.gallery-modal {
    color: #fff;
    background: #101612;
}

.gallery-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, .16);
}

.gallery-modal .modal-body {
    padding: 0;
}

.carousel-item {
    height: 78vh;
    min-height: 420px;
    background: #101612;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-caption {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    padding: .5rem .75rem;
    background: rgba(0, 0, 0, .58);
    border-radius: var(--radius);
    font-weight: 800;
}

.gallery-control {
    top: 50%;
    bottom: auto;
    width: auto;
    min-width: 3rem;
    height: 3rem;
    gap: .45rem;
    padding: .65rem .85rem;
    color: #fff;
    background: rgba(16, 22, 18, .72);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    opacity: .96;
    transform: translateY(-50%);
}

.gallery-control:hover,
.gallery-control:focus-visible {
    color: #fff;
    background: rgba(16, 22, 18, .92);
    opacity: 1;
}

.gallery-control-prev {
    left: 1rem;
}

.gallery-control-next {
    right: 1rem;
}

.legal-copy h3 {
    margin-top: 1.25rem;
    font-size: 1.1rem;
}

.booking-body,
.confirm-body {
    min-height: 100vh;
    background: #edf4ef;
}

.booking-confirmation,
.confirm-shell {
    width: min(920px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0;
}

.booking-hero,
.booking-panel,
.confirm-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.booking-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-hero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.booking-hero > div {
    padding: 1.5rem;
}

.booking-hero h1,
.confirm-panel h1 {
    margin: 0 0 .5rem;
    font-size: 2rem;
    font-weight: 900;
}

.booking-panel {
    padding: 1.5rem;
}

.booking-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 0 0 1.25rem;
}

.booking-data div {
    padding: .85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbf9;
}

.booking-data dt {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.booking-data dd {
    margin: .2rem 0 0;
    font-size: 1.05rem;
    font-weight: 850;
}

.booking-form {
    display: grid;
}

.confirm-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.confirm-panel {
    width: min(560px, 100%);
    padding: 2rem;
    text-align: center;
}

.status-dot {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
}

.status-ok {
    background: var(--forest);
}

.status-error {
    background: #b9322b;
}

@media (max-width: 991.98px) {
    .site-nav {
        min-height: 64px;
    }

    .nav-action {
        margin-top: .5rem;
    }

    .language-form {
        width: 100%;
        margin-top: .5rem;
    }

    .hero-section {
        min-height: min(640px, calc(100svh - 88px));
        margin-top: 64px;
        align-items: end;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(7, 18, 12, .88), rgba(7, 18, 12, .28));
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-copy {
        font-size: 1.08rem;
    }

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

    .content-section {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
    }

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

@media (max-width: 575.98px) {
    .hero-section {
        min-height: min(560px, calc(100svh - 80px));
    }

    .hero-content {
        padding-bottom: 4rem;
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .quick-facts {
        margin-top: 0;
    }

    .fact-grid,
    .feature-grid,
    .calendar-grid,
    .booking-data {
        grid-template-columns: 1fr;
    }

    .fact-grid {
        border-radius: 0;
        border-right: 0;
        border-left: 0;
        box-shadow: none;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .section-image {
        height: 260px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form {
        padding: 1rem;
    }

    .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions .btn {
        flex: 1 1 auto;
    }

    .carousel-item {
        height: 72vh;
        min-height: 320px;
    }

    .gallery-control {
        min-width: 2.75rem;
        padding: .65rem;
    }

    .gallery-control span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .booking-confirmation {
        width: min(100% - 1rem, 920px);
        padding: .5rem 0;
    }

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

    .booking-hero img {
        height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
