:root {
  /* 🎨 Colors */
  --bg: #2b2323;
  --bg-warm: #321f1f;
  --line: rgba(220, 160, 160, 0.25);

  --pink-deep: #e0a3a3;
  --pink-muted: #c58f8f;

  --text: #f5e6e6;
  --text-dim: #d2bcbc;

  /* 🔤 Fonts */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-accent: 'Great Vibes', cursive;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* tiny hover (optional but cute) */
.icon:hover {
  transform: scale(1.1);
}

/* Body */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  min-height: 100vh;
}

/* Vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 55%,
    rgba(10, 5, 5, 0.22) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Grain (safe version) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(#n)' opacity='0.05'/></svg>");
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

/* Container */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 4.5rem 2rem 7rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

header h1 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--pink-deep);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

header p.tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--pink-muted);
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* Entries */
.entries {
  display: flex;
  flex-direction: column;
}

/* Entry */
.entry {
  opacity: 0;
  transform: translateY(10px);
  animation: fadein 0.7s ease forwards;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--line);
}

.entry:nth-child(1) { animation-delay: 0.1s; }
.entry:nth-child(2) { animation-delay: 0.25s; }
.entry:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadein {
  to { opacity: 1; transform: translateY(0); }
}

/* Date */
.entry-date {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--pink-muted);
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* Title */
.entry h2 {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--pink-deep);
  margin-bottom: 0.6rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(224, 163, 163, 0.25);
}

.entry h2 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.entry h2 a:hover {
  opacity: 0.8;
  text-shadow: 0 0 14px rgba(224, 163, 163, 0.45);
}

/* Text */
.entry p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-dim);
  opacity: 0.9;
}

/* Footer */
footer {
  margin-top: 4rem;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--pink-muted);
  opacity: 0.75;
}

footer a {
  color: inherit;
  text-decoration: none;
}