:root {
    --gold: #b7923c;
    --dark: #4a3411;
    --bg: #fdfcf9;
    --white: #ffffff;
}

/* ===== BASE ===== */
body { margin: 0; font-family: 'Inter', sans-serif; background: var(--bg); color: #333; line-height: 1.6; }
.container { width: 95%; max-width: 1100px; margin: auto; }
.section { padding: 60px 0; }
.section-alt { background: #f4f1ea; }
h1, h2, h3 { font-family: 'Lora', serif; color: var(--dark); }
.section-title { color: var(--gold); border-bottom: 2px solid var(--gold); display: inline-block; margin-bottom: 30px; }
.justified-text { text-align: justify; hyphens: auto; }

/* ===== NAV ===== */
.site-nav { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
.nav-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.lang-btn { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 5px 12px; border-radius: 4px; cursor: pointer; }
.lang-btn.active { background: var(--gold); color: white; }
.nav-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }

/* ===== HERO ===== */
.hero img { width: 100%; height: 450px; object-fit: cover; }

/* ===== CARD ===== */
.card { background: var(--white); padding: 25px; border-radius: 12px; border: 1px solid #e0d5ba; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

/* ===== GRID ===== */
.grid { display: grid; gap: 25px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.align-center { align-items: center; }

/* ===== IMAGES ===== */
.img-wrapper img { width: 100%; height: auto; border-radius: 8px; max-height: 300px; object-fit: cover; }
.gallery-card { padding: 0; overflow: hidden; text-align: center; }
.gallery-card img { width: 100%; height: 220px; object-fit: cover; display: block; border-bottom: 1px solid #eee; }
.gallery-card p { padding: 15px; margin: 0; font-style: italic; font-weight: 600; }

/* ===== BUTTONS ===== */
.btn { padding: 12px 20px; background: var(--gold); color: white; text-decoration: none; border-radius: 6px; border: none; cursor: pointer; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn:hover { background: var(--dark); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: white; }
.btn-full { width: 100%; margin-top: 15px; }

/* ===== RESOURCES ===== */
.resource-card { display: block; background: var(--white); padding: 20px; border-radius: 10px; text-decoration: none; color: var(--dark); font-weight: 600; text-align: center; border: 1px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s; }
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); background: #faf7f0; }

/* ===== FORM ===== */
input, textarea { width: 100%; padding: 12px; margin-top: 15px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-family: inherit; }

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero img { height: 300px; }
}