:root {
  --spot-red: #ff1313;
  --spot-red-deep: #d80d0d;
  --spot-gold: #ffcd52;
  --spot-cream: #fff8ef;
  --spot-ink: #231815;
  --spot-muted: #6b5b57;
  --spot-border: rgba(35, 24, 21, 0.12);
  --spot-shadow: 0 18px 40px rgba(35, 24, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: linear-gradient(180deg, #fff 0%, #fff6e9 100%);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--spot-ink);
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 82, 0.24), transparent 34%),
    radial-gradient(circle at left 20%, rgba(255, 19, 19, 0.08), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 8px 24px rgba(255, 19, 19, 0.12);
  padding: 4px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--spot-muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--spot-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav-link {
  color: var(--spot-ink);
  background: rgba(255, 255, 255, 0.82);
}

.nav-link:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(35, 24, 21, 0.08);
}

.hero {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 19, 19, 0.12);
  border-radius: 28px;
  box-shadow: var(--spot-shadow);
  overflow: hidden;
}

.hero-banner {
  background: var(--spot-gold);
  color: #543c00;
  font-weight: 800;
  text-align: center;
  padding: 14px 18px;
}

.hero-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 36px;
}

.kicker {
  color: var(--spot-red);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

h1,
.h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 0.95;
}

.subtitle {
  margin: 0 0 20px;
  font-size: 1.2rem;
  color: var(--spot-muted);
}

.lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
}

.button {
  background: var(--spot-red);
  border-color: var(--spot-red);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--spot-red);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preview-card,
.note-card,
.artifact-card {
  background: white;
  border: 1px solid var(--spot-border);
  border-radius: 22px;
  box-shadow: var(--spot-shadow);
}

.preview-card {
  padding: 18px;
}

.preview-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 19, 19, 0.12);
}

.preview-card figcaption,
.artifact-caption {
  margin-top: 12px;
  color: var(--spot-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.section {
  margin-top: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.note-card {
  padding: 20px;
}

.note-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.note-copy {
  margin: 0;
  color: var(--spot-muted);
  line-height: 1.6;
}

.memorial-head {
  text-align: center;
  margin: 8px auto 24px;
  max-width: 760px;
}

.memorial-head .subtitle {
  margin-bottom: 10px;
}

.artifact-card {
  padding: 20px;
}

.artifact-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 19, 19, 0.16);
  background: #fff;
}

.artifact-frame img {
  width: 100%;
  height: auto;
}

.memorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 205, 82, 0.2);
  color: #6a4c00;
  font-weight: 700;
}

.footer {
  margin-top: 36px;
  text-align: center;
  color: var(--spot-muted);
  font-size: 0.95rem;
}

.footer-link {
  color: var(--spot-red);
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero-body,
  .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
