:root {
    --bg: #F9F7F2;
    --text: #2C3E50;
    --accent: #D4C5B9;
    --white: #FFFFFF;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.8;
}

nav {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(249, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}

.logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; border-bottom: 1px solid var(--accent); }

.hero {
    height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    margin-top: 80px;
    background: var(--white);
}

.hero-text { padding: 0 8%; }
.hero-text h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
}

.hero-image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.article-wrap {
    max-width: 850px;
    margin: 80px auto;
    padding: 0 5%;
}

.section-title {
    font-family: var(--serif);
    font-size: 2.2rem;
    margin: 4rem 0 1.5rem;
    color: var(--text);
    border-top: 1px solid var(--accent);
    padding-top: 2rem;
}

p { font-size: 1.1rem; margin-bottom: 1.8rem; color: #4a5a6a; text-align: justify; }

.content-img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    margin: 4rem 0;
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    margin-top: 80px;
}

.contact-form { padding: 10%; background: var(--white); }
input, textarea {
    width: 100%; padding: 1rem 0; margin-bottom: 2rem;
    border: none; border-bottom: 1px solid var(--accent);
    background: transparent; font-family: var(--sans);
}

.submit-btn {
    padding: 1rem 3rem; background: var(--text); color: var(--white);
    border: none; text-transform: uppercase; cursor: pointer; transition: 0.3s;
}

.submit-btn:hover { background: var(--accent); color: var(--text); }

footer { padding: 4rem; text-align: center; font-size: 0.7rem; border-top: 1px solid #eee; }

@media (max-width: 768px) { .hero, .contact-container { grid-template-columns: 1fr; } .hero-image { height: 300px; } }