:root {
  --bg: #961F47;
  --bg-deep: #6f1633;
  --page-bg: #ffffff;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.12);
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.68);
  --accent: #ff6b00;
  --radius: 16px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand__title {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.header .brand__title {
  color: #ffffff;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(0, 0, 0, 0.04);
}

.hero {
  padding: 54px 0 26px;
}

.hero__inner h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  background: var(--bg);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.btn__icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--primary {
  background: var(--bg);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
}

.btn--primary:active {
  transform: translateY(0px) scale(0.99);
}

.btn--ghost {
  background: var(--bg);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
}

.btn--ghost:active {
  transform: translateY(0px) scale(0.99);
}

.section {
  padding: 32px 0 44px;
}

.section--alt {
  border-top: 1px solid var(--border);
  background: var(--page-bg);
}

h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.muted { color: var(--muted); }

.card {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.dates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.dates li {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.date {
  font-weight: 800;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.card__footer {
  margin-top: 14px;
}

.link {
  text-underline-offset: 3px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: var(--page-bg);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .header__row {
    align-items: flex-start;
    flex-direction: column;
  }
}
