/* --- VARIABLES & RESET --- */
:root {
    --bg-color: #f7f7f5; /* Light stone color for architecture */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent-color: #8c6b45; /* Bronze / earthy tone */
    --bg-dark: #121212;
    --transition-fast: 0.4s ease;
    
    --font-primary: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background-color: var(--bg-color); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 1rem; }
p { color: var(--text-secondary); font-size: 1.1rem; font-weight: 300; }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; padding: 1.5rem 0; z-index: 100; transition: var(--transition-fast); }
.navbar.scrolled { background: rgba(247, 247, 245, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); padding: 1rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; font-family: var(--font-serif); letter-spacing: 2px; }
.logo span { font-family: var(--font-primary); font-size: 1rem; font-weight: 300; color: var(--accent-color); text-transform: uppercase; letter-spacing: 2px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-fast); }
.nav-links a:hover { color: var(--accent-color); }

/* HERO */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background-color: var(--bg-dark); color: #fff; overflow: hidden; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(18,18,18,0.7), rgba(18,18,18,0.9)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDMiLz4KPC9zdmc+') repeat; z-index: 0; }
.hero-content { z-index: 1; max-width: 900px; padding: 0 2rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 span { font-style: italic; color: var(--accent-color); }
.hero p { margin-bottom: 2.5rem; font-size: 1.25rem; color: #ccc; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }

.btn { padding: 1rem 2.5rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; cursor: pointer; transition: var(--transition-fast); border-radius: 0; }
.btn-primary { background-color: var(--accent-color); color: #fff; border: 1px solid var(--accent-color); }
.btn-primary:hover { background-color: transparent; color: var(--accent-color); }
.btn-outline { background-color: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { border-color: #fff; }

/* PHILOSOPHY */
.section-header { margin-bottom: 4rem; }
.subtitle { color: var(--accent-color); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 1rem; font-family: var(--font-primary); font-weight: 500;}
.line { width: 60px; height: 1px; background: var(--accent-color); margin-top: 1rem; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.phil-text h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.phil-text p { margin-bottom: 1.5rem; }
.phil-image { position: relative; width: 100%; padding-bottom: 120%; background: #e0e0e0; }
.img-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(45deg, #eee, #ddd); color: #aaa; font-family: var(--font-serif); font-size: 2rem; }

/* FOOTER */
footer { background: var(--bg-dark); color: #fff; padding: 4rem 0 2rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 0.5rem; }
.footer-brand span { font-family: var(--font-primary); color: var(--accent-color); font-weight: 300; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #888; }
.link-group h4 { color: var(--accent-color); margin-bottom: 1.5rem; font-family: var(--font-primary); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 1s ease-out, transform 1s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 992px) { .philosophy-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
}
