:root {
    --bg-cream: #fbfaf8;
    --text-dark: #3a3835;
    --acc-brown: #a87d5d;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Lato', sans-serif;
}

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

body { background: var(--bg-cream); color: var(--text-dark); font-family: var(--sans); }

.topbar { padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.logo { font-family: var(--serif); font-size: 2rem; color: var(--acc-brown); }
.links a { margin-left: 2rem; color: var(--text-dark); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }

.hero { height: 80vh; background: url('assets/images/hero.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; position: relative; }
/* Frosted glass block naturally blends warmly */
.hero .reveal { background: rgba(255,255,255,0.85); padding: 4rem; border-radius: 5px; max-width: 600px; backdrop-filter: blur(10px); }
.hero h2 { font-family: var(--serif); font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--text-dark); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

.cta-button { display: inline-block; padding: 1rem 3rem; background: var(--acc-brown); color: white; text-decoration: none; letter-spacing: 2px; font-size: 0.9rem; transition: 0.3s; border: none; cursor: pointer; }
.cta-button:hover { background: var(--text-dark); }

.process { padding: 8rem 10%; background: white; text-align: center; }
.title { font-family: var(--serif); font-size: 3rem; margin-bottom: 4rem; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; }
.step h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 1rem; color: var(--acc-brown); }

.gallery { padding: 0; display: flex; flex-wrap: wrap; }
.g-text { flex: 1; min-width: 400px; padding: 8rem 5%; display: flex; flex-direction: column; justify-content: center; }
.g-text h2 { font-family: var(--serif); font-size: 3rem; margin-bottom: 1rem; color: var(--acc-brown); }
.g-grid { flex: 2; display: flex; }
.g-grid img { width: 33.33%; height: 500px; object-fit: cover; }

.founder { padding: 8rem 10%; display: flex; align-items: center; gap: 5rem; background: white; }
.founder img { width: 400px; height: 500px; object-fit: cover; border-radius: 100rem 100rem 0 0; }
.f-text h2 { font-family: var(--serif); font-size: 3rem; margin-bottom: 1.5rem; }
.f-text p { font-size: 1.1rem; line-height: 2; }

.contact-block { padding: 8rem 10%; text-align: center; background: var(--bg-cream); }
.contact-block h2 { font-family: var(--serif); font-size: 3rem; margin-bottom: 1rem; color: var(--acc-brown); }
form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row input { flex: 1; }
input, textarea { padding: 1rem; border: 1px solid #ccc; font-family: var(--sans); background: transparent; outline: none; }
input:focus, textarea:focus { border-color: var(--acc-brown); }

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

.cookie-banner { position: fixed; bottom: 0; width: 100%; background: white; border-top: 1px solid #eee; padding: 20px; text-align: center; z-index: 1000; box-shadow: 0 -5px 20px rgba(0,0,0,0.05); }
.cookie-banner a { color: var(--acc-brown); }
.cookie-banner button { padding: 10px 20px; background: var(--acc-brown); color: white; border: none; margin-left: 20px; cursor: pointer; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 800px) {
    .g-grid { flex-direction: column; }
    .g-grid img { width: 100%; }
    .founder { flex-direction: column; }
    .form-row { flex-direction: column; }
}
