:root {
  --sage: #8ba888;
  --sage-light: #c8dcc4;
  --sage-dark: #52704f;
  --blush: #e8a4b8;
  --blush-light: #f6d3de;
  --blush-pale: #fdeff0;
  --cream: #f7f5ef;
  --white: #fff;
  --text-dark: #2d3b2d;
  --text-muted: #6b7d6b;
  --gold: #c2a878;
  --gold-light: #ddc99a;
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

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

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-serif);
  color: var(--text-dark);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.demo-page {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: clamp(0.85rem, 3vw, 1.25rem) clamp(0.75rem, 3vw, 1rem) clamp(1.25rem, 4vw, 2rem);
}

.demo-badge {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 10;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sage-light);
  color: var(--text-muted);
  backdrop-filter: blur(4px);
}

@media (max-width: 380px) {
  .demo-page {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
