:root {
  --bg: #14100d;
  --bg-alt: #1d1712;
  --card: #241c15;
  --gold: #c9973f;
  --gold-light: #e6c37a;
  --red: #8a2d2d;
  --text: #ece4d6;
  --text-muted: #b3a690;
  --border: #3a2e21;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

header {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.site-title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin: 0;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

nav ul {
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}

nav a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 {
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

h2 {
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-top: 2.2rem;
  border-left: 3px solid var(--red);
  padding-left: 0.7rem;
}

h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

p { color: var(--text); }

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.3rem 1.5rem;
  margin: 1.2rem 0;
}

.card h3 { margin-top: 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--text);
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}

.btn:hover { background: #a13a3a; }

.note {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border);
  margin-top: 2rem;
  padding-top: 0.8rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  text-align: left;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
}

th { color: var(--gold-light); font-weight: normal; }

form {
  margin-top: 1.5rem;
}

label {
  display: block;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
}

footer {
  border-top: 2px solid var(--gold);
  background: var(--bg-alt);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer a { color: var(--gold-light); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.gallery figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.gallery img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.5rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery .full-width {
  grid-column: 1 / -1;
}

.gallery .full-width img {
  height: auto;
}
