:root {
  --primary: #1a3c6e;
  --accent: #d9822b;
  --bg: #f7f7f8;
  --text: #222;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.site-header {
  background: var(--primary);
  color: #fff;
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.brand {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
}
nav a:hover { text-decoration: underline; }
.cta {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  background: #fff;
}
main h1 { color: var(--primary); }
main h2 { color: var(--primary); margin-top: 2rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}
.site-footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}
.site-footer a { color: #ffd9a0; }
