:root {
    --bone: #F5F3ED;
    --wood: #654321;
    --dark-wood: #2c1a0e;
    --text: #333333;
    --serif: 'Playfair Display', serif;
    --sans: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { background: var(--bone); color: var(--text); font-family: var(--sans); }

.nav-minimal { padding: 2.5rem 5%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--serif); font-size: 2.5rem; color: var(--dark-wood); }
.menu a { margin-left: 2rem; color: var(--text); text-decoration: none; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

.hero-split { display: flex; height: 85vh; padding: 0 5%; align-items: center; gap: 4rem; }
.h-text { flex: 1; }
.h-text h2 { font-family: var(--serif); font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--dark-wood); }
.h-text p { font-size: 1.3rem; margin-bottom: 3rem; opacity: 0.8; line-height: 1.6; }
.h-img { flex: 1; height: 100%; border-radius: 20px 20px 0 0; overflow: hidden; }
.h-img img { width: 100%; height: 100%; object-fit: cover; }

.btn { display: inline-block; padding: 1.2rem 3rem; background: var(--wood); color: white; border: none; font-family: var(--sans); text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; text-decoration: none; }
.btn:hover { background: var(--dark-wood); }

.gallery { padding: 8rem 5%; }
.section-title { text-align: center; margin-bottom: 5rem; }
.section-title h2 { font-family: var(--serif); font-size: 3.5rem; color: var(--wood); }

.masonry { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.item { position: relative; overflow: hidden; border-radius: 10px; }
.item img { width: 100%; height: 600px; object-fit: cover; transition: transform 0.6s; }
.item:hover img { transform: scale(1.05); }
.item-overlay { position: absolute; bottom: 0; width: 100%; padding: 3rem 2rem; background: linear-gradient(transparent, rgba(44,26,14,0.9)); color: white; }
.item-overlay h3 { font-family: var(--serif); font-size: 2rem; }

.workshop { position: relative; padding: 8rem 0; background: var(--dark-wood); color: var(--bone); overflow: hidden; }
.w-img { position: absolute; right: 0; top: 0; height: 100%; width: 50%; object-fit: cover; opacity: 0.4; }
.w-content { padding: 0 5%; width: 50%; position: relative; z-index: 1; }
.w-content h2 { font-family: var(--serif); font-size: 4rem; margin-bottom: 2rem; }
.w-content p { font-size: 1.2rem; line-height: 2; opacity: 0.9; }

.contact { padding: 8rem 5%; background: white; }
.c-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.c-wrap h2 { font-family: var(--serif); font-size: 3.5rem; margin-bottom: 1rem; color: var(--wood); }
form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
input, textarea { padding: 1.5rem; border: 1px solid #ddd; background: var(--bone); font-family: var(--sans); font-size: 1rem; outline: none; transition: border-color 0.3s; }
input:focus, textarea:focus { border-color: var(--wood); }

.footer { padding: 6rem 5%; background: var(--dark-wood); color: var(--bone); }
.f-cont { display: flex; justify-content: space-between; }
.f-cont h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 1rem; }
.f-cont a { display: block; color: #aaa; text-decoration: none; margin-bottom: 0.5rem; }
.f-cont a:hover { color: white; }

.cookie-banner { position: fixed; bottom: 0; width: 100%; background: var(--wood); color: white; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner button { background: var(--bone); color: var(--wood); border: none; padding: 8px 15px; cursor: pointer; font-weight: bold; }

.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .hero-split { flex-direction: column; height: auto; padding-top: 4rem; }
    .w-img { display: none; }
    .w-content { width: 100%; }
    .menu { display: none; }
}
