:root {
  color-scheme: dark;
  --night: #0d0b08;
  --deep-night: #0a0806;
  --ink: #e8dfc8;
  --muted: #b8ad91;
  --gold: #d9bc7a;
  --gold-bright: #f0dca4;
  --line: rgba(217, 188, 122, .3);
  --panel: rgba(22, 18, 13, .92);
}

* { box-sizing: border-box; }

html { background: var(--night); }

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
}

a { color: var(--gold); }
a:hover { color: var(--gold-bright); }
::selection { background: rgba(217, 188, 122, .3); }

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 22%, rgba(101, 74, 32, .12), transparent 34rem),
    var(--night);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 188, 122, 0.35);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,11,8,0.55) 0%, rgba(13,11,8,0.35) 45%, rgba(13,11,8,0.92) 100%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 88px 24px 72px;
  text-align: center;
}

.hero-logo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 0 3px rgba(217,188,122,0.5);
}

h1 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 700;
  letter-spacing: .06em;
  text-shadow: 0 2px 18px rgba(0,0,0,.9);
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #cbbd97;
  font-size: 20px;
  font-style: italic;
  letter-spacing: .04em;
}

.hero-subtitle::before,
.hero-subtitle::after {
  display: block;
  width: 64px;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(217,188,122,.8));
}

.hero-subtitle::after {
  background: linear-gradient(270deg, transparent, rgba(217,188,122,.8));
}

main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.news-panel {
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(0,0,0,.38);
}

.news-archive__heading {
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #0b0907;
  text-align: center;
}

.news-archive__heading h2 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: .055em;
}

.news-archive__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-style: italic;
}

.news-loading-label {
  grid-column: 1 / -1;
  margin: 0 0 -4px;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.news-feed--archive {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(9, 7, 5, .72);
}

footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--deep-night);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #9b8f72;
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.footer-inner img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(217,188,122,.5), 0 4px 16px rgba(0,0,0,.6);
}

@media (max-width: 760px) {
  main { padding: 32px 14px 52px; }
  .news-panel { padding: 6px; }
  .news-archive__heading { padding: 20px 14px 18px; }
  .news-feed--archive { padding: 12px; }
  .footer-inner { flex-direction: column; padding: 26px 20px; }
}
