/* ════════════════════════════════
   BASE — 변수, 리셋, 전역 스타일
   ════════════════════════════════ */

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

:root {
  --rose:    #f4a0b0;
  --rose-dk: #e07a96;
  --blush:   #fde8ed;
  --cream:   #fff8f5;
  --gold:    #d4a96a;
  --gold-lt: #f0d9b5;
  --text:    #3a2a32;
  --muted:   #9b7b8a;
  --white:   #ffffff;
  --radius:  24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
