:root {
  --bg: #f6f4ef;
  --paper: #ffffff;
  --ink: #19202a;
  --accent: #5d4c3c;
  --accent-2: #a67b5b;
  --line: #ddd6ce;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header, .site-footer { background: var(--paper); border-bottom: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 3rem; padding: 1.5rem 0; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.brand { font-size: 1.25rem; font-weight: 700; }
.hero { background: linear-gradient(135deg, #ebe3d9, #f9f7f1); padding: 3rem; border-radius: 18px; margin: 2rem 0; }
.hero h1 { margin-top: 0; font-size: 2.3rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.button { display: inline-block; padding: 0.8rem 1.2rem; border-radius: 10px; background: var(--accent); color: white; border: none; cursor: pointer; }
.button.secondary { background: var(--accent-2); }
.grid { display: grid; gap: 1rem; }
.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
.narrow { max-width: 700px; margin: 2rem auto; }
.image-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; padding: 0.75rem; margin-top: 0.25rem; margin-bottom: 1rem; border-radius: 10px; border: 1px solid var(--line); }
.alert { background: #eaf6ed; border: 1px solid #b8dcc1; padding: 0.9rem; border-radius: 10px; margin-top: 1rem; }
.muted { color: #666; }
.page-detail { margin-top: 2rem; }
@media (max-width: 768px) { .nav-wrap { flex-direction: column; align-items: flex-start; } .hero { padding: 2rem; } }
