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

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;500;600&family=Raleway:wght@300;400;500&display=swap');

:root {
  --rose-50:  #F5EFE6;
  --rose-100: #EDE4D6;
  --rose-200: #E0D3BF;
  --rose-300: #E8A84E;
  --rose-400: #D9963A;
  --rose-500: #C4706A;
  --rose-600: #C8883A;
  --rose-700: #1A3048;
  --red-800:  #0D1B2A;
  --cream:    #F5EFE6;
  --text:     #0D1B2A;
  --muted:    #6B7A8D;
  --error:    #dc2626;
  --success:  #16a34a;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Cinzel', Georgia, serif;
  --font-body:     'Raleway', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
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.5;
}