:root {
  --bg: #faf7f4;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6b5d52;
  --accent: #ff4d6d;
  --accent-soft: #fff0f3;
  --border: #efe6dc;
  --shadow: rgba(26, 26, 26, 0.08);
  --glow: rgba(255, 77, 109, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--glow), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(255, 200, 180, 0.2), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(34, 168, 101, 0.08), transparent 50%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: 3rem;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: opacity 0.2s;
}

.back:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.logo-link.brand {
  margin-bottom: 2rem;
}

.mascot {
  height: clamp(4.25rem, 10vw, 6rem);
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 2rem;
}

.brand .logo {
  margin-bottom: 0;
}

.logo em {
  font-style: normal;
  color: var(--accent);
}

.page-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.prose {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.prose p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.prose p strong,
.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.prose ul {
  margin: 0.5rem 0 1rem 1.25rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}
