:root {
    --bg: #fdf8f5;
    --text: #2c1e16;
    --accent: #8b3a33;
    --font-head: 'Merriweather', serif;
    --font-body: 'Lato', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; color: var(--text); }
a { text-decoration: none; color: inherit; }

.navbar { position: absolute; top: 0; width: 100%; padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; color: #fff; }
.logo { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; }
.hamburger { width: 30px; cursor: pointer; }
.hamburger span { display: block; width: 100%; height: 2px; background: #fff; margin-bottom: 6px; transition: 0.3s; }

.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.slide { width: 100%; height: 120%; background-size: cover; background-position: center; transition: transform 0.1s linear; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(44, 30, 22, 0.4), rgba(44, 30, 22, 0.7)); z-index: -1; }
.est { font-family: var(--font-head); font-style: italic; letter-spacing: 2px; margin-bottom: 1.5rem; display: block; font-size: 1.1rem; color: #e8dcc4; }
.hero-content h1 { font-size: 5.5rem; line-height: 1.1; margin-bottom: 2.5rem; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.btn-solid { background: var(--accent); color: #fff; padding: 1.2rem 3rem; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; transition: background 0.3s, transform 0.3s; display: inline-block; font-weight: 600; border-radius: 2px; }
.btn-solid:hover { background: #6a2a24; transform: translateY(-3px); }

.story-section { padding: 10rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-img img { width: 100%; height: 700px; object-fit: cover; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.story-text h2 { font-size: 3rem; margin-bottom: 1.5rem; color: var(--text); }
.divider { width: 80px; height: 4px; background: var(--accent); margin-bottom: 2.5rem; }
.story-text p { font-size: 1.15rem; line-height: 1.9; color: #555; margin-bottom: 2.5rem; }
.secondary-img { width: 80%; height: 350px; object-fit: cover; margin-top: 2rem; margin-left: auto; display: block; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); line-height: 0; }
.gallery-item { height: 450px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease-out, filter 0.8s; filter: sepia(0.4) brightness(0.9); }
.gallery-item:hover img { transform: scale(1.08); filter: sepia(0) brightness(1.1); }

.footer { padding: 8rem 5%; text-align: center; background: #1a120d; color: #fff; }
.footer h2 { color: #fff; margin-bottom: 1.5rem; letter-spacing: 3px; font-size: 2rem; text-transform: uppercase; }
.footer p { color: #aaa; font-size: 1.1rem; }

/* Animations */
.reveal { opacity: 0; transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translate(0, 0) scale(1); }
.fade-up { transform: translateY(40px); }
.fade-right { transform: translateX(-50px); }
.fade-left { transform: translateX(50px); }
.zoom-in { transform: scale(0.9); }

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 4rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 4rem; }
    .story-img img { height: 500px; }
}
@media (max-width: 500px) {
    .gallery { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
}
