:root {
  --bg: #1a1510;
  --card: #2a2218;
  --accent: #c9a227;
  --text: #f9f4e8;
  --muted: #b8a88a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero {
  background: linear-gradient(180deg, #2a2218 0%, var(--bg) 100%);
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
}

.hero .logo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 20px;
}

.hero .logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.hero-art {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 1.25rem auto 0;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
}

.hero-art .art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-art .art-a {
  animation: hero-art-fade-a 10s ease-in-out infinite;
}

.hero-art .art-b {
  animation: hero-art-fade-b 10s ease-in-out infinite;
}

@keyframes hero-art-fade-a {
  0%,
  42% {
    opacity: 0.92;
  }
  50%,
  92% {
    opacity: 0;
  }
  100% {
    opacity: 0.92;
  }
}

@keyframes hero-art-fade-b {
  0%,
  42% {
    opacity: 0;
  }
  50%,
  92% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art .art-b {
    display: none;
  }

  .hero-art .art-a {
    position: relative;
    animation: none;
    opacity: 0.92;
  }
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.125rem;
  margin: 1rem 0 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0.75rem 0 0.25rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--accent);
}

h3 {
  font-size: 1.05rem;
  margin: 1rem 0 0.35rem;
}

ul,
ol {
  padding-left: 1.25rem;
  color: var(--muted);
}

ul li,
ol li {
  margin: 0.35rem 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  margin: 0.35rem 0.5rem 0.35rem 0;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #1a1510;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cta-row {
  margin: 1.5rem 0;
}

.site-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.pillars {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}
