@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-latin-v20.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/playfair-display-latin-v40.woff2') format('woff2');
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple:    #4A2E84;
  --orange:    #F5921C;
  --green:     #2A5C1A;
  --cream:     #FAF8F2;
  --cream-dk:  #F0EDE3;
  --text:      #1C1C1E;
  --text-mid:  #4A4A4A;
  --text-lt:   #767676;
  --white:     #FFFFFF;
}
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; }
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: var(--purple);
}
.nav-brand { text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: #fff; }
.nav-back { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.02em; }
.nav-back:hover { color: #fff; }
main { max-width: 720px; margin: 0 auto; padding: 5rem 2.5rem 6rem; }
.page-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 700; color: var(--purple); line-height: 1.2; margin-bottom: 0.5rem; }
.updated { font-size: 0.8rem; color: var(--text-lt); margin-bottom: 3rem; }
h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--purple); margin: 2.5rem 0 0.75rem; }
p { font-size: 1rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.85; }
a { color: var(--purple); }
a:hover { text-decoration: underline; }
.divider { border: none; border-top: 1px solid var(--cream-dk); margin: 3rem 0; }
footer { background: var(--purple); padding: 2rem 2.5rem; text-align: center; }
footer small { font-size: 0.78rem; color: rgba(255,255,255,0.78); }
footer a { color: rgba(255,255,255,0.86); text-decoration: none; }
footer a:hover { color: #fff; }
@media (max-width: 600px) { main { padding: 3rem 1.5rem 4rem; } nav { padding: 1rem 1.5rem; } }

body.message-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  text-align: center;
}
.message-wrap { max-width: 640px; }
.message-page h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
.message-page p { margin-bottom: 1.5rem; }

