:root {
  --color-walnut: #3d2b1f;
  --color-cream: #f2ead9;
  --color-sage: #8a9a5b;
  --color-brass: #b08d57;
  --color-brass-dark: #7a5c2e;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-walnut);
  line-height: 1.6;
}

main { flex: 1 0 auto; }

h1, h2, h3 { font-family: var(--font-heading); color: var(--color-walnut); }

a { color: var(--color-brass-dark); text-decoration: underline; }

.container { max-width: 960px; margin: 0 auto; padding: 0 1rem; }

.site-header {
  background: var(--color-walnut);
  color: var(--color-cream);
  border-bottom: 4px solid var(--color-brass);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .5rem; color: var(--color-cream); font-family: var(--font-heading); font-size: 1.25rem; }
.brand-logo { height: 40px; }
.site-nav { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.site-nav a { color: var(--color-cream); }
.lang-switch { margin-left: 1rem; font-size: .85rem; opacity: .85; }

.hero {
  background-color: var(--color-cream);
  background-image:
    linear-gradient(45deg, rgba(138, 154, 91, 0.18) 25%, transparent 25%, transparent 75%, rgba(138, 154, 91, 0.18) 75%),
    linear-gradient(45deg, rgba(138, 154, 91, 0.18) 25%, transparent 25%, transparent 75%, rgba(138, 154, 91, 0.18) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  padding: 3rem 1rem;
  text-align: center;
}
.hero-logo { height: 80px; }
.tagline { font-size: 1.15rem; }

.page, .home-content { padding-top: 2rem; padding-bottom: 2rem; }

.news-list { list-style: none; padding: 0; }
.news-list li { margin-bottom: 1.5rem; }
.news-list .meta { color: var(--color-brass-dark); font-size: .85rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem; list-style: none; padding: 0; }
.gallery-grid li { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

.table-scroll { overflow-x: auto; margin: 1rem 0; }
table.results { width: 100%; border-collapse: collapse; margin: 0; }
table.results th, table.results td { border: 1px solid var(--color-brass); padding: .5rem; text-align: left; }

.site-footer { background: var(--color-walnut); color: var(--color-cream); text-align: center; padding: 1rem; margin-top: 2rem; }
