/* --- Background & Texture --- */
body {
  background-color: var(--color-parchment);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  overflow-x: hidden;
}

.bg-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.hero__decoration {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.hero__decoration--bottom {
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.hero__flourish {
  width: min(80%, 400px);
  height: auto;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  color: var(--color-ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero__subtitle {
  font-family: var(--font-handwritten);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-ink-light);
  margin-top: var(--space-xs);
  letter-spacing: 0.03em;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.footer__stars {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.footer__stars svg {
  width: 120px;
  height: 30px;
}

.footer__text {
  font-family: var(--font-handwritten);
  font-size: var(--fs-date);
  color: var(--color-ink-light);
  opacity: 0.7;
}
