:root {
  --honey:       #D4860A;
  --honey-light: #F5C842;
  --honey-dark:  #8B5A00;
  --cream:       #FDF6E3;
  --bark:        #3D2B1F;
  --bark-light:  #6B4226;
  --wax:         #F2E0A0;
  --shadow:      rgba(61,43,31,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--bark);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.divider {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--honey);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  opacity: 0.5;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--bark-light);
  font-size: 0.85rem;
}

footer a { color: var(--honey); text-decoration: none; }
