:root{
    --green:#3d5128;
    --olive:#778654;
    --cream:#f7f2e8;
    --sand:#e9ddc8;
    --brown:#6c4e35;
    --ink:#2d3026;
    --white:#fff
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,sans-serif;
    color:var(--ink);
    background:var(--cream);
    line-height:1.55
}
h1,h2,h3{
    font-family:Georgia,serif;
    line-height:1.1;
    margin:0 0 16px
}
h1{
    font-size:clamp(2.6rem,6vw,5.6rem);
    letter-spacing:.02em
}
h2{
    font-size:clamp(2rem,4vw,3.5rem)
}
h3{
    font-size:1.5rem
}
a{
    color:inherit
}
.wrap{
    max-width:1180px;
    margin:auto;
    padding:0 22px
}
nav{
    position:fixed;
    z-index:10;
    top:0;
    left:0;
    right:0;
    background:rgba(247,242,232,.9);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #ddd3c2
}
.navin{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:70px
}
.logo{
    font-family:Georgia,serif;
    font-size:1.2rem;
    font-weight:700;
    color:var(--green)
}
nav a{
    text-decoration:none;
    margin-left:20px;
    font-size:.95rem
}
.btn{
    display:inline-block;
    border:0;
    border-radius:999px;
    padding:14px 24px;
    font-weight:700;
    text-decoration:none;
    cursor:pointer;
    transition:.2s
}
.btn-primary{
    background:var(--green);
    color:#fff
}
.btn-primary:hover{
    transform:translateY(-2px);
    background:#2d3d1d
}
.btn-light{
    background:#fff;
    color:var(--green)
}
.hero{
    min-height:720px;
    padding:150px 0 90px;
    background:
        linear-gradient(90deg,rgba(247,242,232,.98) 0%,
                        rgba(247,242,232,.86) 42%,
                        rgba(247,242,232,.18) 100%),
                        url('../img/background.avif') center/cover;
    display:flex;
    align-items:center
}
.hero p{
    max-width:590px;
    font-size:1.25rem
}
.tag{
    display:inline-block;
    color:var(--green);
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:20px
}
section{
    padding:90px 0
}
.intro{
    text-align:center;
    max-width:760px;
    margin:auto
}
.muted{
    color:#666
}
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.card{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 10px 30px rgba(57,43,27,.08);
    border:1px solid #e6ddcf
}
.card .price{
    font-size:2rem;
    font-weight:800;
    color:var(--green);
    margin:18px 0
}
.card ul{
    padding-left:20px
}
.card.featured{
    border:2px solid var(--olive);
    transform:translateY(-8px)
}
.band{
    background:var(--green);
    color:#fff
}
.band h2{
    color:#fff
}
.quote{
    font-family:Georgia,serif;
    font-size:2rem;
    max-width:760px;
    margin:0 auto;
    text-align:center
}
.booking{
    background:#fff
}
.booking-box{
    max-width:900px;
    margin:auto;
    background:var(--cream);
    border-radius:26px;
    padding:34px;
    border:1px solid #e3d8c8
}
.formgrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px
}
.field{
    display:flex;
    flex-direction:column;
    gap:7px
}
.field.full{
    grid-column:1/-1
}
label{
    font-weight:700;
    font-size:.95rem
}
input,select,textarea{
    font:inherit;
    padding:13px 14px;
    border:1px solid #cfc5b6;
    border-radius:12px;
    background:#fff;
    color:var(--ink)
}
textarea{
    min-height:90px;
    resize:vertical
}
.slots{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:8px
}
.slot{
    border:1px solid #cfc5b6;
    background:#fff;
    border-radius:12px;
    padding:12px;
    cursor:pointer;
    text-align:center
}
.slot.selected{
    background:var(--green);
    color:#fff;
    border-color:var(--green)
}
.slot.disabled{
    opacity:.35;
    cursor:not-allowed;
    text-decoration:line-through
}
.success{
    display:none;
    background:#e4efd9;
    border:1px solid #9bb27c;
    color:#30451d;
    padding:18px;
    border-radius:14px;
    margin-top:18px
}
.error{
    color:#9d3b2d;
    font-size:.9rem;
    display:none;
    margin-top:8px
}
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px
}
.step{
    padding:24px;
    background:#fff;
    border-radius:18px
}
.num{
    font-size:2rem;
    color:var(--olive);
    font-weight:800
}
.faq{
    max-width:850px;
    margin:auto
}
.faq details{
    background:#fff;
    border-radius:14px;
    padding:18px 22px;
    margin:10px 0
}
.faq summary{
    font-weight:700;
    cursor:pointer
}
footer{
    background:#26331b;
    color:#fff;
    padding:45px 0
}
.footergrid{
    display:flex;
    justify-content:space-between;
    gap:30px
}
.small{
    font-size:.85rem;
    color:#d9e0d0
}
.admin{
    background:#f0eadf
}
.adminbox{
    max-width:1100px;
    margin:auto
}
.admin-controls{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:18px
}
.reservations{
    overflow:auto
}
.reservations table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:15px;
    overflow:hidden
}
.reservations th,.reservations td{
    padding:12px;
    text-align:left;
    border-bottom:1px solid #eee;
    font-size:.9rem
}
.empty{
    text-align:center;
    padding:30px;
    background:#fff;
    border-radius:15px
}
@media(max-width:800px){
    nav .links{
        display:none
    }
    .hero{
        min-height:650px
    }
    .grid,.steps{
        grid-template-columns:1fr
    }
    .card.featured{
        transform:none
    }
    .formgrid{
        grid-template-columns:1fr
    }
    .field.full{
        grid-column:auto
    }
    .slots{
        grid-template-columns:1fr 1fr
    }
    .footergrid{
        flex-direction:column
    }
}
