@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --black: #0D2421;
  --white: #F8F3EC;
  --beige: #F8F3EC;
  --pure-white: #ffffff;
  --accent-orange: #D15F50;
  --accent-blue: #6C94C6;
  --accent-teal: #3C9E9A;
  --gray-100: #EFEAE2;
  --gray-200: #E5DEC6;
  --gray-400: #A8A090;
  --gray-600: #7A7264;
  --gray-800: #4B453A;
  --gray-900: #2C2820;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Pretendard', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --neo-border: 2px solid #0D2421;
  --neo-shadow: 4px 4px 0px #0D2421;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow: hidden; height: 100%; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--black);
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ?�?� Scroll Container ?�?� */
#scroll-container { height: 100vh; overflow: hidden; position: relative; }

